mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 09:11:21 +10:00
11 lines
372 B
SQL
11 lines
372 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `mBannerIndex` on the `Game` table. All the data in the column will be lost.
|
|
- Added the required column `mBannerId` to the `Game` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Game" DROP COLUMN "mBannerIndex",
|
|
ADD COLUMN "mBannerId" TEXT NOT NULL;
|