forked from brmlab/brmbar-github
SQL schema versioning #1
Labels
No labels
No milestone
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: brmlab/brmbar#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Make Schema versionable for v1
See
-- intoduce implementation schemaCREATE SCHEMA IF NOT EXISTS brmbar_implementation;-- version table (with initialization)CREATE TABLE IF NOT EXISTS brmbar_implementation.brmbar_schema (ver INTEGER NOT NULL);DO $$DECLARE v INTEGER;BEGINSELECT ver FROM brmbar_implementation.brmbar_schema INTO v;IF v IS NULL THENINSERT INTO brmbar_implementation.brmbar_schema (ver) VALUES (1);END IF;END;$$;