/*
  Warnings:

  - You are about to drop the column `cmyk` on the `ink` table. All the data in the column will be lost.
  - You are about to drop the column `hex` on the `ink` table. All the data in the column will be lost.
  - You are about to drop the column `pantone` on the `ink` table. All the data in the column will be lost.
  - You are about to drop the column `rgb` on the `ink` table. All the data in the column will be lost.

*/
-- AlterTable
ALTER TABLE `ink` DROP COLUMN `cmyk`,
    DROP COLUMN `hex`,
    DROP COLUMN `pantone`,
    DROP COLUMN `rgb`,
    ADD COLUMN `colorModel` VARCHAR(191) NOT NULL DEFAULT '';
