summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_db_maintenance.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-08 14:42:44 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-08 14:43:57 +0200
commit751f99df27303a61a84686a8f0f2e47482024bcf (patch)
tree6a86a53b57bf40eb5997b8ac97ed486cc75af750 /bin/reproducible_db_maintenance.py
parent4d14b4c6941fe64cafce8e34ae91155c8d0c6bb8 (diff)
downloadjenkins.debian.net-751f99df27303a61a84686a8f0f2e47482024bcf.tar.xz
reproducible: db: fix syntax
Diffstat (limited to 'bin/reproducible_db_maintenance.py')
-rwxr-xr-xbin/reproducible_db_maintenance.py6
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 + '")'],
}