You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# droptestdb: drops test db inside docker container
105
-
droptestdb:
106
-
@docker exec ark-pg-test dropdb ark-db-test
107
-
@docker exec ark-pg-test dropdb ark-event-db-test
108
-
109
-
# recreatetestdb: drops and creates test db
110
-
recreatetestdb: droptestdb createtestdb
111
-
112
89
# psql: connects to postgres terminal running inside docker container
113
90
psql:
114
-
@docker exec -it ark-pg psql -U root -d ark-db -c "SELECT tablename FROM pg_catalog.pg_tables WHERE schemaname NOT IN ('pg_catalog', 'information_schema');"\
115
-
&& docker exec -it ark-pg psql -U root -d ark-db
91
+
@docker exec -it ark-pg psql -U root -d event -c "SELECT tablename FROM pg_catalog.pg_tables WHERE schemaname NOT IN ('pg_catalog', 'information_schema');"\
0 commit comments