This commit is contained in:
2025-09-08 18:30:34 +00:00
parent c116a85ead
commit a93493fb62
15 changed files with 134 additions and 182 deletions

View File

@@ -0,0 +1,18 @@
/*
Warnings:
- You are about to drop the column `premiumViews` on the `content` table. All the data in the column will be lost.
- You are about to drop the column `validViews` on the `content` table. All the data in the column will be lost.
- You are about to drop the column `views` on the `content` table. All the data in the column will be lost.
- You are about to drop the column `watchTime` on the `content` table. All the data in the column will be lost.
- You are about to drop the `costPerView` table. If the table is not empty, all the data it contains will be lost.
*/
-- AlterTable
ALTER TABLE `content` DROP COLUMN `premiumViews`,
DROP COLUMN `validViews`,
DROP COLUMN `views`,
DROP COLUMN `watchTime`;
-- DropTable
DROP TABLE `costPerView`;