Trading card city builder game?

dont dump sqlx test schema

eldridge.cam fb290cd4 0b4c75c3

verified
+1 -46
+1 -1
.gmrc
··· 5 5 "afterAllMigrations": [ 6 6 { 7 7 "_": "command", 8 - "command": "if [ -z $CI ]; then docker compose exec postgres pg_dump --no-sync --restrict-key='aa4b4bc410c5cacbd97fc326d0f62806' --schema-only --no-owner --exclude-schema=graphile_migrate --file /generated/schema.sql -U \"$GM_DBUSER\" \"$GM_DBNAME\"; fi" 8 + "command": "if [ -z $CI ]; then docker compose exec postgres pg_dump --no-sync --restrict-key='aa4b4bc410c5cacbd97fc326d0f62806' --schema-only --no-owner --exclude-schema=graphile_migrate --exclude-schema=_sqlx_test --file /generated/schema.sql -U \"$GM_DBUSER\" \"$GM_DBNAME\"; fi" 9 9 } 10 10 ], 11 11 "afterCurrent": [],
-45
generated/schema.sql
··· 20 20 SET row_security = off; 21 21 22 22 -- 23 - -- Name: _sqlx_test; Type: SCHEMA; Schema: -; Owner: - 24 - -- 25 - 26 - CREATE SCHEMA _sqlx_test; 27 - 28 - 29 - -- 30 23 -- Name: citext; Type: EXTENSION; Schema: -; Owner: - 31 24 -- 32 25 ··· 64 57 ); 65 58 66 59 67 - -- 68 - -- Name: database_ids; Type: SEQUENCE; Schema: _sqlx_test; Owner: - 69 - -- 70 - 71 - CREATE SEQUENCE _sqlx_test.database_ids 72 - START WITH 1 73 - INCREMENT BY 1 74 - NO MINVALUE 75 - NO MAXVALUE 76 - CACHE 1; 77 - 78 - 79 60 SET default_tablespace = ''; 80 61 81 62 SET default_table_access_method = heap; 82 - 83 - -- 84 - -- Name: databases; Type: TABLE; Schema: _sqlx_test; Owner: - 85 - -- 86 - 87 - CREATE TABLE _sqlx_test.databases ( 88 - db_name text NOT NULL, 89 - test_path text NOT NULL, 90 - created_at timestamp with time zone DEFAULT now() NOT NULL 91 - ); 92 - 93 63 94 64 -- 95 65 -- Name: accounts; Type: TABLE; Schema: public; Owner: - ··· 524 494 525 495 526 496 -- 527 - -- Name: databases databases_pkey; Type: CONSTRAINT; Schema: _sqlx_test; Owner: - 528 - -- 529 - 530 - ALTER TABLE ONLY _sqlx_test.databases 531 - ADD CONSTRAINT databases_pkey PRIMARY KEY (db_name); 532 - 533 - 534 - -- 535 497 -- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: - 536 498 -- 537 499 ··· 721 683 722 684 ALTER TABLE ONLY public.tiles 723 685 ADD CONSTRAINT tiles_pkey PRIMARY KEY (id); 724 - 725 - 726 - -- 727 - -- Name: databases_created_at; Type: INDEX; Schema: _sqlx_test; Owner: - 728 - -- 729 - 730 - CREATE INDEX databases_created_at ON _sqlx_test.databases USING btree (created_at); 731 686 732 687 733 688 --