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
4 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
"afterAllMigrations": [
6
{
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"
9
}
10
],
11
"afterCurrent": [],
···
5
"afterAllMigrations": [
6
{
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 --exclude-schema=_sqlx_test --file /generated/schema.sql -U \"$GM_DBUSER\" \"$GM_DBNAME\"; fi"
9
}
10
],
11
"afterCurrent": [],
-45
generated/schema.sql
···
20
SET row_security = off;
21
22
--
23
-
-- Name: _sqlx_test; Type: SCHEMA; Schema: -; Owner: -
24
-
--
25
-
26
-
CREATE SCHEMA _sqlx_test;
27
-
28
-
29
-
--
30
-- Name: citext; Type: EXTENSION; Schema: -; Owner: -
31
--
32
···
64
);
65
66
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
SET default_tablespace = '';
80
81
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
94
--
95
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
···
524
525
526
--
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
-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
536
--
537
···
721
722
ALTER TABLE ONLY public.tiles
723
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
732
733
--
···
20
SET row_security = off;
21
22
--
0
0
0
0
0
0
0
23
-- Name: citext; Type: EXTENSION; Schema: -; Owner: -
24
--
25
···
57
);
58
59
0
0
0
0
0
0
0
0
0
0
0
0
60
SET default_tablespace = '';
61
62
SET default_table_access_method = heap;
0
0
0
0
0
0
0
0
0
0
0
63
64
--
65
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
···
494
495
496
--
0
0
0
0
0
0
0
0
497
-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
498
--
499
···
683
684
ALTER TABLE ONLY public.tiles
685
ADD CONSTRAINT tiles_pkey PRIMARY KEY (id);
0
0
0
0
0
0
0
686
687
688
--