24 lines
659 B
PL/PgSQL
24 lines
659 B
PL/PgSQL
-- Convert schema 'share/ddl/_source/deploy/24/001-auto.yml' to 'share/ddl/_source/deploy/25/001-auto.yml':;
|
|
|
|
;
|
|
BEGIN;
|
|
|
|
;
|
|
CREATE TABLE "transactions_meta" (
|
|
"id" serial NOT NULL,
|
|
"transaction_id" integer NOT NULL,
|
|
"net_value" numeric(100,0) NOT NULL,
|
|
"sales_tax_value" numeric(100,0) NOT NULL,
|
|
"gross_value" numeric(100,0) NOT NULL,
|
|
PRIMARY KEY ("id")
|
|
);
|
|
CREATE INDEX "transactions_meta_idx_transaction_id" on "transactions_meta" ("transaction_id");
|
|
|
|
;
|
|
ALTER TABLE "transactions_meta" ADD CONSTRAINT "transactions_meta_fk_transaction_id" FOREIGN KEY ("transaction_id")
|
|
REFERENCES "transactions" ("id") ON DELETE CASCADE DEFERRABLE;
|
|
|
|
;
|
|
|
|
COMMIT;
|
|
|