diff options
author | Christopher Baines <mail@cbaines.net> | 2019-04-13 12:22:14 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-04-13 12:22:14 +0100 |
commit | 5621d52e97a7835f3ca66c13b9772e4b2baa8981 (patch) | |
tree | 4b8d1eea32bdefe5cbfb4db9dbb8caa218f47486 | |
parent | dbec23692854ab7686ed83c7cf43c39ddcc6c3a4 (diff) | |
download | data-service-5621d52e97a7835f3ca66c13b9772e4b2baa8981.tar data-service-5621d52e97a7835f3ca66c13b9772e4b2baa8981.tar.gz |
Initialise Sqitch
It's a tool for managing the database schema.
-rw-r--r-- | sqitch.conf | 8 | ||||
-rw-r--r-- | sqitch.plan | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sqitch.conf b/sqitch.conf new file mode 100644 index 0000000..3447459 --- /dev/null +++ b/sqitch.conf @@ -0,0 +1,8 @@ +[core] + engine = pg + # plan_file = sqitch.plan + # top_dir = . +# [engine "pg"] + # target = db:pg: + # registry = sqitch + # client = psql diff --git a/sqitch.plan b/sqitch.plan new file mode 100644 index 0000000..4e50000 --- /dev/null +++ b/sqitch.plan @@ -0,0 +1,4 @@ +%syntax-version=1.0.0 +%project=guix-data-service +%uri=https://git.cbaines.net/guix/data-service/ + |