diff options
Diffstat (limited to 'sqitch')
-rw-r--r-- | sqitch/pg/deploy/add_builds_end_time.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/revert/add_builds_end_time.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/verify/add_builds_end_time.sql | 7 | ||||
-rw-r--r-- | sqitch/sqitch.plan | 1 | ||||
-rw-r--r-- | sqitch/sqlite/deploy/add_builds_end_time.sql | 7 | ||||
-rw-r--r-- | sqitch/sqlite/revert/add_builds_end_time.sql | 7 | ||||
-rw-r--r-- | sqitch/sqlite/verify/add_builds_end_time.sql | 7 |
7 files changed, 43 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/add_builds_end_time.sql b/sqitch/pg/deploy/add_builds_end_time.sql new file mode 100644 index 0000000..4fe125a --- /dev/null +++ b/sqitch/pg/deploy/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:add_builds_end_time to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/revert/add_builds_end_time.sql b/sqitch/pg/revert/add_builds_end_time.sql new file mode 100644 index 0000000..78fdb86 --- /dev/null +++ b/sqitch/pg/revert/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:add_builds_end_time from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/verify/add_builds_end_time.sql b/sqitch/pg/verify/add_builds_end_time.sql new file mode 100644 index 0000000..68b2224 --- /dev/null +++ b/sqitch/pg/verify/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Verify guix-build-coordinator:add_builds_end_time on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan index e0712ce..213f01c 100644 --- a/sqitch/sqitch.plan +++ b/sqitch/sqitch.plan @@ -18,3 +18,4 @@ more_indexes_on_builds_and_derivation_inputs 2020-05-11T08:38:28Z Christopher Ba build_tags 2020-05-31T13:54:41Z Christopher Baines <mail@cbaines.net> # Support tagging builds builds_created_at 2020-06-27T18:30:32Z Christopher Baines <mail@cbaines.net> # Add builds.created_at build_starts 2020-06-27T20:23:38Z Christopher Baines <mail@cbaines.net> # Add build_starts table +add_builds_end_time 2020-06-27T20:58:01Z Christopher Baines <mail@cbaines.net> # Add builds.end_time field diff --git a/sqitch/sqlite/deploy/add_builds_end_time.sql b/sqitch/sqlite/deploy/add_builds_end_time.sql new file mode 100644 index 0000000..c7e4619 --- /dev/null +++ b/sqitch/sqlite/deploy/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:add_builds_end_time to sqlite + +BEGIN; + +ALTER TABLE builds ADD COLUMN end_time TEXT; + +COMMIT; diff --git a/sqitch/sqlite/revert/add_builds_end_time.sql b/sqitch/sqlite/revert/add_builds_end_time.sql new file mode 100644 index 0000000..216ac9a --- /dev/null +++ b/sqitch/sqlite/revert/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:add_builds_end_time from sqlite + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/sqlite/verify/add_builds_end_time.sql b/sqitch/sqlite/verify/add_builds_end_time.sql new file mode 100644 index 0000000..4cc73db --- /dev/null +++ b/sqitch/sqlite/verify/add_builds_end_time.sql @@ -0,0 +1,7 @@ +-- Verify guix-build-coordinator:add_builds_end_time on sqlite + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |