mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
8 lines
284 B
SQL
8 lines
284 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to alter the column `ip` on the `session` table. The data in that column could be lost. The data in that column will be cast from `VarChar(255)` to `VarChar(100)`.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "session" ALTER COLUMN "ip" SET DATA TYPE VARCHAR(100);
|