first commit

This commit is contained in:
2025-09-07 22:57:43 +00:00
commit 3bd542adbf
122 changed files with 45056 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
-- CreateTable
CREATE TABLE `Post` (
`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) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;