From 769d5ee969ca8554c6daa52e46f25acb2396a094 Mon Sep 17 00:00:00 2001 From: jacob Date: Fri, 5 Nov 2010 17:48:19 +0000 Subject: [PATCH] A quick fix. The award_awards_table had the conferences_id set to 0 where the year was -1. Modified it to match. --- db/db.code.version.txt | 2 +- db/db.update.219.sql | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 db/db.update.219.sql diff --git a/db/db.code.version.txt b/db/db.code.version.txt index dc6f4a8..037ba97 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -218 +219 diff --git a/db/db.update.219.sql b/db/db.update.219.sql new file mode 100644 index 0000000..64f8fb8 --- /dev/null +++ b/db/db.update.219.sql @@ -0,0 +1 @@ +UPDATE `award_types` SET `conferences_id` = -1 WHERE `year` = -1;