/*
  Warnings:

  - You are about to alter the column `smq_status` on the `subscriber_mail_queue` table. The data in that column could be lost. The data in that column will be cast from `VarChar(191)` to `Int`.
  - You are about to alter the column `smr_status` on the `subscriber_mail_recipient` table. The data in that column could be lost. The data in that column will be cast from `VarChar(191)` to `Int`.

*/
-- AlterTable
ALTER TABLE `subscriber_mail_queue` MODIFY `smq_subject` VARCHAR(255) NOT NULL,
    MODIFY `smq_content` LONGTEXT NOT NULL,
    MODIFY `smq_status` INTEGER NOT NULL DEFAULT 0;

-- AlterTable
ALTER TABLE `subscriber_mail_recipient` MODIFY `smr_status` INTEGER NOT NULL DEFAULT 0;
