-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from dfpc-coe/outgoing
Outgoing Layers
- Loading branch information
Showing
8 changed files
with
2,599 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE "layers_outgoing" ( | ||
"layer" integer PRIMARY KEY NOT NULL, | ||
"created" timestamp with time zone DEFAULT Now() NOT NULL, | ||
"updated" timestamp with time zone DEFAULT Now() NOT NULL, | ||
"environment" json DEFAULT '{}'::json NOT NULL, | ||
"ephemeral" json DEFAULT '{}'::json NOT NULL | ||
); | ||
--> statement-breakpoint | ||
ALTER TABLE "layers_outgoing" ADD CONSTRAINT "layers_outgoing_layer_layers_id_fk" FOREIGN KEY ("layer") REFERENCES "public"."layers"("id") ON DELETE no action ON UPDATE no action; |
Oops, something went wrong.