From 19436c2ebd410a5c3128c52ea979825f92305846 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Fri, 24 Dec 2010 11:22:23 -0700 Subject: [PATCH] Changed table name and user_id is now owner_id, as it should be. --- 3.1/modules/bitly/helpers/bitly_installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3.1/modules/bitly/helpers/bitly_installer.php b/3.1/modules/bitly/helpers/bitly_installer.php index c847ec7c..c55fbb66 100644 --- a/3.1/modules/bitly/helpers/bitly_installer.php +++ b/3.1/modules/bitly/helpers/bitly_installer.php @@ -21,11 +21,11 @@ class bitly_installer { static function install() { Database::instance() - ->query("CREATE TABLE {bitly_urls} ( + ->query("CREATE TABLE {bitly_links} ( `id` int(9) NOT NULL AUTO_INCREMENT, `item_id` int(9) NOT NULL, `hash` char(6) NOT NULL, - `user_id` int(9) NOT NULL, + `owner_id` int(9) NOT NULL, PRIMARY KEY (`id`)) DEFAULT CHARSET=utf8;"); module::set_version("bitly", 1);