12 lines
312 B
MySQL
12 lines
312 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- Added the required column `code` to the `CustomerBranch` table without a default value. This is not possible if the table is not empty.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "CustomerBranch" ADD COLUMN "code" TEXT NOT NULL;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Product" ADD COLUMN "attributes" JSONB;
|