From: Gergely Nagy Date: Mon, 17 Sep 2012 12:50:27 +0000 (+0000) Subject: update87: Insert a default use_extfiles value to the config table too X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=f0aecfc41de9927d255402dafcae4eeb6a9fd5f8 update87: Insert a default use_extfiles value to the config table too Signed-off-by: Gergely Nagy --- diff --git a/dak/dakdb/update87.py b/dak/dakdb/update87.py index 8d73dcb0..18e2509a 100644 --- a/dak/dakdb/update87.py +++ b/dak/dakdb/update87.py @@ -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); +""" ] ################################################################################