aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/sqlite
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 21:00:02 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 21:00:02 +0200
commite6baf9c084aaabbbd9a1beaa832d9a0a9298078a (patch)
treeb4313265b610a9a82cc57ab714424ba36a975aa2 /src/sqlite
parentstorage: mark completed runs as such (diff)
downloadcimple-e6baf9c084aaabbbd9a1beaa832d9a0a9298078a.tar.gz
cimple-e6baf9c084aaabbbd9a1beaa832d9a0a9298078a.zip
sqlite: rename a column
Diffstat (limited to 'src/sqlite')
-rw-r--r--src/sqlite/v01.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite/v01.sql b/src/sqlite/v01.sql
index 44c5116..454c19e 100644
--- a/src/sqlite/v01.sql
+++ b/src/sqlite/v01.sql
@@ -18,7 +18,7 @@ INSERT INTO cimple_run_status(id, label) VALUES (2, 'finished');
CREATE TABLE cimple_runs (
id INTEGER PRIMARY KEY,
status INTEGER NOT NULL,
- result INTEGER NOT NULL,
+ ec INTEGER NOT NULL,
output BLOB NOT NULL,
repo_id INTEGER NOT NULL,
rev TEXT NOT NULL,