diff options
author | Christopher Baines <mail@cbaines.net> | 2020-06-27 19:47:30 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-07-01 17:35:22 +0100 |
commit | ab51128ee62b22971ea8b52d550e09d1c38f8ecd (patch) | |
tree | 8a343c19864f378f0afd1136f85b5447464605a9 /sqitch/sqlite/deploy | |
parent | 677d2b8821d9bbb1ab2fb1a05cddd35b3786afa3 (diff) | |
download | build-coordinator-ab51128ee62b22971ea8b52d550e09d1c38f8ecd.tar build-coordinator-ab51128ee62b22971ea8b52d550e09d1c38f8ecd.tar.gz |
Support storing when builds are created
Diffstat (limited to 'sqitch/sqlite/deploy')
-rw-r--r-- | sqitch/sqlite/deploy/builds_created_at.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/builds_created_at.sql b/sqitch/sqlite/deploy/builds_created_at.sql new file mode 100644 index 0000000..378fb70 --- /dev/null +++ b/sqitch/sqlite/deploy/builds_created_at.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:builds_created_at to sqlite + +BEGIN; + +ALTER TABLE builds ADD COLUMN created_at TEXT; + +COMMIT; |