This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
backend/prisma/migrations
20251018131623_added_entrance Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ Warnings:
3+
4+ - Added the required column `entranceX` to the `Store` table without a default value. This is not possible if the table is not empty.
5+ - Added the required column `entranceY` to the `Store` table without a default value. This is not possible if the table is not empty.
6+ - Added the required column `exitX` to the `Store` table without a default value. This is not possible if the table is not empty.
7+ - Added the required column `exitY` to the `Store` table without a default value. This is not possible if the table is not empty.
8+
9+ */
10+ -- AlterTable
11+
12+ ALTER TABLE " Store" ADD COLUMN " entranceX" INTEGER NOT NULL DEFAULT 0 ,
13+ ADD COLUMN " entranceY" INTEGER NOT NULL DEFAULT 0 ,
14+ ADD COLUMN " exitX" INTEGER NOT NULL DEFAULT 0 ,
15+ ADD COLUMN " exitY" INTEGER NOT NULL DEFAULT 0 ;
Original file line number Diff line number Diff line change 1+ -- AlterTable
2+ ALTER TABLE " Store" ALTER COLUMN " entranceX" DROP DEFAULT,
3+ ALTER COLUMN " entranceY" DROP DEFAULT,
4+ ALTER COLUMN " exitX" DROP DEFAULT,
5+ ALTER COLUMN " exitY" DROP DEFAULT;
You can’t perform that action at this time.
0 commit comments