12 lines
519 B
SQL
12 lines
519 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The primary key for the `Session` table will be changed. If it partially fails, the table could be left without primary key constraint.
|
|
- The required column `se_id` was added to the `Session` table with a prisma-level default value. This is not possible if the table is not empty. Please add this column as optional, then populate it before making it required.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Session` DROP PRIMARY KEY,
|
|
ADD COLUMN `se_id` VARCHAR(191) NOT NULL,
|
|
ADD PRIMARY KEY (`se_id`);
|