9 lines
276 B
SQL
9 lines
276 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `personName` to the `Customer` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Customer" ADD COLUMN "personName" TEXT NOT NULL,
|
|
ADD COLUMN "personNameEN" TEXT;
|