9 lines
234 B
SQL
9 lines
234 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `storageKey` on the `Session` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Session" DROP COLUMN "storageKey",
|
|
ADD COLUMN "storageSecret" TEXT;
|