18 lines
607 B
SQL
18 lines
607 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `ocmBattle` on the `GhostTrail` table. All the data in the column will be lost.
|
|
- You are about to drop the column `ocmMainDay` on the `GhostTrail` table. All the data in the column will be lost.
|
|
- You are about to drop the column `ocmBattle` on the `OCMGhostTrail` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Car" ALTER COLUMN "stLoseBits" SET DEFAULT 0;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "GhostTrail" DROP COLUMN "ocmBattle",
|
|
DROP COLUMN "ocmMainDay";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "OCMGhostTrail" DROP COLUMN "ocmBattle";
|