8 lines
254 B
SQL
8 lines
254 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `contactName` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "CustomerBranch" ADD COLUMN "contactName" TEXT NOT NULL;
|