diff options
Diffstat (limited to 'sqitch/sqlite')
-rw-r--r-- | sqitch/sqlite/deploy/schema.sql | 7 | ||||
-rw-r--r-- | sqitch/sqlite/revert/schema.sql | 7 | ||||
-rw-r--r-- | sqitch/sqlite/verify/schema.sql | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/schema.sql b/sqitch/sqlite/deploy/schema.sql new file mode 100644 index 0000000..48d6292 --- /dev/null +++ b/sqitch/sqlite/deploy/schema.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:schema to sqlite + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/sqlite/revert/schema.sql b/sqitch/sqlite/revert/schema.sql new file mode 100644 index 0000000..ddc8186 --- /dev/null +++ b/sqitch/sqlite/revert/schema.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:schema from sqlite + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/sqlite/verify/schema.sql b/sqitch/sqlite/verify/schema.sql new file mode 100644 index 0000000..2c3c3a4 --- /dev/null +++ b/sqitch/sqlite/verify/schema.sql @@ -0,0 +1,7 @@ +-- Verify guix-build-coordinator:schema on sqlite + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |