summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-01-24 19:47:43 +0000
committerChristopher Baines <mail@cbaines.net>2020-01-25 22:22:39 +0000
commitfa412cdb5985ec4199f89510d8d8cde9b7664e2d (patch)
treed4650e78333873df4837840a11560e60ab83928c /Makefile.am
parent9eb96d1b197d674d34daf4de8c75fa9ee337f583 (diff)
downloadcuirass-fa412cdb5985ec4199f89510d8d8cde9b7664e2d.tar
cuirass-fa412cdb5985ec4199f89510d8d8cde9b7664e2d.tar.gz
Alter the Builds table to have an id fieldimprove-handling-of-rowids
The internal rowid's are used for builds as you can request builds by using the rowid in the URL. The motivation here is to enable running VACUUM operations in SQLite, without risking the rowid's for Builds changing. It would be bad if they change, as they're used in the URL's for builds. * src/schema.sql (Builds): Add id column. * src/curiass/dataabse.scm (db-add-build): Change PRIMARYKEY constraint to UNIQUE constraint. * src/sql/upgrade-6.sql: New file. * Makefile.am (dist_sql_DATA): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 5448420..bc0e90c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -70,7 +70,8 @@ dist_sql_DATA = \
src/sql/upgrade-2.sql \
src/sql/upgrade-3.sql \
src/sql/upgrade-4.sql \
- src/sql/upgrade-5.sql
+ src/sql/upgrade-5.sql \
+ src/sql/upgrade-6.sql
dist_css_DATA = \
src/static/css/bootstrap.css \