Skip to content

Commit

Permalink
add table
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Dec 19, 2024
1 parent 6f0a2c7 commit 5c6bfb0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2464,6 +2464,9 @@
- subdomain
filter: {}
comment: ""
- table:
name: temp_data_migrations_audit
schema: public
- table:
name: uniform_applications
schema: public
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP TABLE "public"."temp_data_migrations_audit";
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CREATE TABLE "public"."temp_data_migrations_audit" (
"flow_id" uuid NOT NULL,
"team_id" integer NOT NULL,
"updated" boolean NOT NULL DEFAULT false,
"updated_at" timestamptz NOT NULL DEFAULT now(),
PRIMARY KEY ("flow_id")
);
COMMENT ON TABLE "public"."temp_data_migrations_audit" IS E'Basic table structure that we can use to track status of data migrations. Contents of this table are ephemeral and may be truncated between migrations';

0 comments on commit 5c6bfb0

Please sign in to comment.