/*
  Warnings:

  - You are about to drop the column `scr_reply` on the `site_contact_reply` table. All the data in the column will be lost.
  - Added the required column `scr_message` to the `site_contact_reply` table without a default value. This is not possible if the table is not empty.
  - Added the required column `scr_subject` to the `site_contact_reply` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `site_contact_reply` DROP COLUMN `scr_reply`,
    ADD COLUMN `scr_message` MEDIUMTEXT NOT NULL,
    ADD COLUMN `scr_subject` VARCHAR(255) NOT NULL;
