tangled
alpha
login
or
join now
eldridge.cam
/
cartography
0
fork
atom
Trading card city builder game?
0
fork
atom
overview
issues
pulls
pipelines
dont dump sqlx test schema
eldridge.cam
3 weeks ago
fb290cd4
0b4c75c3
verified
This commit was signed with the committer's
known signature
.
eldridge.cam
SSH Key Fingerprint:
SHA256:MAgO4sya2MgvdgUjSGKAO0lQ9X2HQp1Jb+x/Tpeeims=
+1
-46
2 changed files
expand all
collapse all
unified
split
.gmrc
generated
schema.sql
+1
-1
.gmrc
···
5
5
"afterAllMigrations": [
6
6
{
7
7
"_": "command",
8
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
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
23
-
-- Name: _sqlx_test; Type: SCHEMA; Schema: -; Owner: -
24
24
-
--
25
25
-
26
26
-
CREATE SCHEMA _sqlx_test;
27
27
-
28
28
-
29
29
-
--
30
23
-- Name: citext; Type: EXTENSION; Schema: -; Owner: -
31
24
--
32
25
···
64
57
);
65
58
66
59
67
67
-
--
68
68
-
-- Name: database_ids; Type: SEQUENCE; Schema: _sqlx_test; Owner: -
69
69
-
--
70
70
-
71
71
-
CREATE SEQUENCE _sqlx_test.database_ids
72
72
-
START WITH 1
73
73
-
INCREMENT BY 1
74
74
-
NO MINVALUE
75
75
-
NO MAXVALUE
76
76
-
CACHE 1;
77
77
-
78
78
-
79
60
SET default_tablespace = '';
80
61
81
62
SET default_table_access_method = heap;
82
82
-
83
83
-
--
84
84
-
-- Name: databases; Type: TABLE; Schema: _sqlx_test; Owner: -
85
85
-
--
86
86
-
87
87
-
CREATE TABLE _sqlx_test.databases (
88
88
-
db_name text NOT NULL,
89
89
-
test_path text NOT NULL,
90
90
-
created_at timestamp with time zone DEFAULT now() NOT NULL
91
91
-
);
92
92
-
93
63
94
64
--
95
65
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
···
524
494
525
495
526
496
--
527
527
-
-- Name: databases databases_pkey; Type: CONSTRAINT; Schema: _sqlx_test; Owner: -
528
528
-
--
529
529
-
530
530
-
ALTER TABLE ONLY _sqlx_test.databases
531
531
-
ADD CONSTRAINT databases_pkey PRIMARY KEY (db_name);
532
532
-
533
533
-
534
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
724
-
725
725
-
726
726
-
--
727
727
-
-- Name: databases_created_at; Type: INDEX; Schema: _sqlx_test; Owner: -
728
728
-
--
729
729
-
730
730
-
CREATE INDEX databases_created_at ON _sqlx_test.databases USING btree (created_at);
731
686
732
687
733
688
--