]> git.decadent.org.uk Git - dak.git/commitdiff
update87: Insert a default use_extfiles value to the config table too
authorGergely Nagy <algernon@madhouse-project.org>
Mon, 17 Sep 2012 12:50:27 +0000 (12:50 +0000)
committerGergely Nagy <algernon@madhouse-project.org>
Mon, 17 Sep 2012 12:50:27 +0000 (12:50 +0000)
Signed-off-by: Gergely Nagy <algernon@debian.org>
dak/dakdb/update87.py

index 8d73dcb0ce240a21782bae680cd4edee80c50b82..18e2509ae3c45ecb5bf982a3aa2e08197f7b48ad 100644 (file)
@@ -43,6 +43,9 @@ CREATE TABLE external_files (
     modified timestamp with time zone DEFAULT now() NOT NULL
 );
 """,
+"""
+INSERT INTO config(name, value) VALUES ('use_extfiles', 0);
+"""
 ]
 
 ################################################################################