Database auth is fully fixed and functional except for outbound firebase.

This commit is contained in:
Patrick Fic
2019-12-06 12:05:33 -08:00
parent ab1e4d5424
commit 78c43fa1e5
58 changed files with 8435 additions and 140 deletions

View File

@@ -0,0 +1,3 @@
- args:
sql: DROP TABLE "public"."bodyshops"
type: run_sql

View File

@@ -0,0 +1,11 @@
- args:
sql: CREATE EXTENSION IF NOT EXISTS pgcrypto;
type: run_sql
- args:
sql: CREATE TABLE "public"."bodyshops"("id" uuid NOT NULL DEFAULT gen_random_uuid(),
"shopname" text NOT NULL, PRIMARY KEY ("id") );
type: run_sql
- args:
name: bodyshops
schema: public
type: add_existing_table_or_view