11 lines
368 B
SQL
11 lines
368 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `ut_id` on the `Session` table. All the data in the column will be lost.
|
|
- Added the required column `se_ut_id` to the `Session` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Session` DROP COLUMN `ut_id`,
|
|
ADD COLUMN `se_ut_id` INTEGER NOT NULL;
|