From 25b8193191c7c5da5d354dce002645da4a26fc02 Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 7 Feb 2012 19:20:58 +0000 Subject: [PATCH] db_version starts at 10 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 89d6e50c..139bc4c5 100755 --- a/install.php +++ b/install.php @@ -340,7 +340,7 @@ function create_tables() { // {{{ CONSTRAINT foreign_image_tags_image_id FOREIGN KEY (image_id) REFERENCES images(id) ON DELETE CASCADE, CONSTRAINT foreign_image_tags_tag_id FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADE "); - $db->execute("INSERT INTO config(name, value) VALUES('db_version', 8)"); + $db->execute("INSERT INTO config(name, value) VALUES('db_version', 10)"); } catch (PDOException $e) {