File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -72,18 +72,13 @@ non-transactional statements include:
7272
7373``` sql
7474ALTER SYSTEM
75- CLUSTER
7675CREATE DATABASE
7776CREATE EXTENSION
7877CREATE ROLE
7978CREATE TABLESPACE
80- DISCARD ALL
8179DROP DATABASE
8280DROP EXTENSION
8381DROP TABLE SPACE
84- LOAD
85- REINDEX
86- VACUUM
8782```
8883
8984## Environment Variables
@@ -103,10 +98,7 @@ create role authenticator noinherit login password :'pgrst_authenticator_pass';
10398
10499## Suggested File Layout
105100
106- SuperStack doesn’t enforce any particular migration file names or layout —
107- you’re free to organise them however you like.
108-
109- Here’s a simple structure you might adopt during development (before
101+ SuperStack doesn’t enforce any particular migration file names or layout, but here’s a simple structure you might adopt during development (before
110102production):
111103
112104```
@@ -121,7 +113,8 @@ While developing, you can reset and rebuild the database from scratch as often
121113as needed:
122114
123115``` sh
124- docker compose down --volumes; docker compose up -d
116+ docker compose down --volumes
117+ docker compose up -d
125118```
126119
127120Once you’ve deployed to production (or another persistent environment), avoid
@@ -134,7 +127,7 @@ recreating the database. Instead:
134127bin/postgres migrate
135128```
136129
137- In other environments where ` bin/postgres ` isn't available:
130+ Or in other environments where ` bin/postgres ` isn't available:
138131
139132``` sh
140133docker compose exec postgres migrate
You can’t perform that action at this time.
0 commit comments