/*
  Warnings:

  - Added the required column `ss_name` to the `site_subscriber` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `site_subscriber` ADD COLUMN `ss_name` VARCHAR(255) NOT NULL;

-- CreateTable
CREATE TABLE `site_contact` (
    `sc_id` INTEGER NOT NULL AUTO_INCREMENT,
    `sc_fname` VARCHAR(255) NOT NULL,
    `sc_lname` VARCHAR(255) NOT NULL,
    `sc_email` VARCHAR(255) NOT NULL,
    `sc_mobile` VARCHAR(255) NOT NULL,
    `sc_company` VARCHAR(255) NOT NULL,
    `sc_message` VARCHAR(255) NOT NULL,
    `sc_date` INTEGER NULL DEFAULT 0,

    PRIMARY KEY (`sc_id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
