/* Warnings: - You are about to drop the `Post` table. If the table is not empty, all the data it contains will be lost. */ -- DropTable DROP TABLE `Post`; -- CreateTable CREATE TABLE `content` ( `id` VARCHAR(191) NOT NULL, `subject` VARCHAR(191) NOT NULL, `pubDate` DATETIME(3) NOT NULL, `views` INTEGER NOT NULL, `validViews` INTEGER NOT NULL, `premiumViews` INTEGER NOT NULL, `watchTime` INTEGER NOT NULL, `publisher` VARCHAR(191) NULL, PRIMARY KEY (`id`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;