9 lines
226 B
MySQL
9 lines
226 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- Made the column `expireAt` on table `Session` required. This step will fail if there are existing NULL values in that column.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE `Session` MODIFY `expireAt` DATETIME(3) NOT NULL;
|