11 lines
312 B
SQL
11 lines
312 B
SQL
/*
|
|
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;
|