5 lines
154 B
SQL
5 lines
154 B
SQL
-- AlterEnum
|
|
ALTER TYPE "QuotationStatus" ADD VALUE 'Issued';
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Quotation" ALTER COLUMN "quotationStatus" SET DEFAULT 'Issued';
|