-- AlterTable
ALTER TABLE `client` ALTER COLUMN `notes` DROP DEFAULT;

-- AlterTable
ALTER TABLE `expenses` ALTER COLUMN `description` DROP DEFAULT;

-- AlterTable
ALTER TABLE `fees` ALTER COLUMN `description` DROP DEFAULT;

-- AlterTable
ALTER TABLE `job` ALTER COLUMN `description` DROP DEFAULT,
    ALTER COLUMN `productionNotes` DROP DEFAULT,
    ALTER COLUMN `shippingNotes` DROP DEFAULT;

-- AlterTable
ALTER TABLE `product` ALTER COLUMN `description` DROP DEFAULT;

-- AlterTable
ALTER TABLE `report` ALTER COLUMN `description` DROP DEFAULT,
    ALTER COLUMN `body` DROP DEFAULT;
