From bc1f7023c6cd6c654700b040aab421607f8fd9f9 Mon Sep 17 00:00:00 2001 From: drainx Date: Mon, 6 Jan 2014 18:17:13 -0600 Subject: [PATCH] Update 000_base_structure.sql Small hiccup with a new installation, importing the SQL. --- sql/000_base_structure.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/000_base_structure.sql b/sql/000_base_structure.sql index c9bb2190..d2fce966 100644 --- a/sql/000_base_structure.sql +++ b/sql/000_base_structure.sql @@ -99,8 +99,6 @@ CREATE TABLE IF NOT EXISTS `notification_settings` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.1'); - CREATE TABLE IF NOT EXISTS `payouts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `account_id` int(11) NOT NULL, @@ -130,6 +128,8 @@ CREATE TABLE IF NOT EXISTS `settings` ( UNIQUE KEY `setting` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; +INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.1'); + CREATE TABLE IF NOT EXISTS `shares` ( `id` bigint(30) NOT NULL AUTO_INCREMENT, `rem_host` varchar(255) NOT NULL,