diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-08 14:42:44 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-08 14:43:57 +0200 |
commit | 751f99df27303a61a84686a8f0f2e47482024bcf (patch) | |
tree | 6a86a53b57bf40eb5997b8ac97ed486cc75af750 | |
parent | 4d14b4c6941fe64cafce8e34ae91155c8d0c6bb8 (diff) | |
download | jenkins.debian.net-751f99df27303a61a84686a8f0f2e47482024bcf.tar.xz |
reproducible: db: fix syntax
-rwxr-xr-x | bin/reproducible_db_maintenance.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_db_maintenance.py b/bin/reproducible_db_maintenance.py index 0e4bef24..b3aa9385 100755 --- a/bin/reproducible_db_maintenance.py +++ b/bin/reproducible_db_maintenance.py @@ -370,9 +370,9 @@ schema_updates = { id INTEGER PRIMARY KEY, package_id INTEGER NOT NULL, requester TEXT NOT NULL, - date_request INTEGER) NOT NULL''' - 'ALTER TABLE schedule ADD COLUMN scheduler TEXT' - 'INSERT INTO rb_schema VALUES ("12", "' + now + '")'], + date_request INTEGER NOT NULL)''', + 'ALTER TABLE schedule ADD COLUMN scheduler TEXT', + 'INSERT INTO rb_schema VALUES ("13", "' + now + '")'], } |