10 lines
276 B
MySQL
10 lines
276 B
MySQL
|
|
/*
|
||
|
|
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;
|