mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-12 07:42:40 +10:00
11 lines
262 B
SQL
11 lines
262 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `data` on the `SaveSlot` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "SaveSlot" DROP COLUMN "data",
|
|
ADD COLUMN "history" TEXT[],
|
|
ADD COLUMN "historyChecksums" TEXT[];
|