19 lines
781 B
MySQL
19 lines
781 B
MySQL
|
|
/*
|
||
|
|
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`;
|