Jobs, Vehicles, Owners database migrations.

This commit is contained in:
Patrick Fic
2019-12-10 14:23:41 -08:00
parent 65cd317b95
commit 5d64d18f46
84 changed files with 5925 additions and 2 deletions

View File

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

View File

@@ -0,0 +1,22 @@
- args:
sql: CREATE EXTENSION IF NOT EXISTS pgcrypto;
type: run_sql
- args:
sql: "CREATE TABLE \"public\".\"vehicles\"(\"id\" uuid NOT NULL DEFAULT gen_random_uuid(),
\"created_at\" timestamptz NOT NULL DEFAULT now(), \"updated_at\" timestamptz
NOT NULL DEFAULT now(), \"v_vin\" text NOT NULL, \"v_make_desc\" text, \"v_model_desc\"
text, \"v_model_yr\" text, \"v_color\" text, \"v_paint_codes\" jsonb, \"v_bstyle\"
text, \"v_engine\" text, \"plate_no\" text, \"shopid\" uuid NOT NULL, PRIMARY
KEY (\"id\") , FOREIGN KEY (\"shopid\") REFERENCES \"public\".\"bodyshops\"(\"id\")
ON UPDATE restrict ON DELETE cascade, UNIQUE (\"v_vin\", \"shopid\"));\nCREATE
OR REPLACE FUNCTION \"public\".\"set_current_timestamp_updated_at\"()\nRETURNS
TRIGGER AS $$\nDECLARE\n _new record;\nBEGIN\n _new := NEW;\n _new.\"updated_at\"
= NOW();\n RETURN _new;\nEND;\n$$ LANGUAGE plpgsql;\nCREATE TRIGGER \"set_public_vehicles_updated_at\"\nBEFORE
UPDATE ON \"public\".\"vehicles\"\nFOR EACH ROW\nEXECUTE PROCEDURE \"public\".\"set_current_timestamp_updated_at\"();\nCOMMENT
ON TRIGGER \"set_public_vehicles_updated_at\" ON \"public\".\"vehicles\" \nIS
'trigger to set value of column \"updated_at\" to current timestamp on row update';\n"
type: run_sql
- args:
name: vehicles
schema: public
type: add_existing_table_or_view