first commit
This commit is contained in:
22
prisma/migrations/20250809040702_init/migration.sql
Normal file
22
prisma/migrations/20250809040702_init/migration.sql
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
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;
|
||||
Reference in New Issue
Block a user