new table for settings and store blocked date there;
non admins can't enter avs before the blocked date new table for survey
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE `message` ADD COLUMN `answer` VARCHAR(191) NULL,
|
||||
ADD COLUMN `answerDate` DATETIME(3) NULL,
|
||||
ADD COLUMN `shownDate` DATETIME(3) NULL,
|
||||
ADD COLUMN `surveyId` INTEGER NULL;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `Survey` (
|
||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||
`content` VARCHAR(191) NOT NULL,
|
||||
`answers` JSON NULL,
|
||||
`publicFrom` DATETIME(3) NULL,
|
||||
`publicUntil` DATETIME(3) NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- AddForeignKey
|
||||
ALTER TABLE `Message` ADD CONSTRAINT `Message_surveyId_fkey` FOREIGN KEY (`surveyId`) REFERENCES `Survey`(`id`) ON DELETE SET NULL ON UPDATE CASCADE;
|
Reference in New Issue
Block a user