diff --git a/application/config/aauth.php b/application/config/aauth.php index 7de3da2..7b86738 100644 --- a/application/config/aauth.php +++ b/application/config/aauth.php @@ -30,7 +30,6 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ['perm_to_group'] The table which contains permissions for groups | ['perm_to_user'] The table which contains permissions for users | ['pms'] The table which contains private messages -| ['system_variables'] The table which contains Aauth system variables | ['user_variables'] The table which contains users variables | | ['remember'] Remember time elapsed after connecting and automatic LogOut @@ -93,7 +92,6 @@ $config_aauth["default"] = array( 'perm_to_group' => 'aauth_perm_to_group', 'perm_to_user' => 'aauth_perm_to_user', 'pms' => 'aauth_pms', - 'system_variables' => 'aauth_system_variables', 'user_variables' => 'aauth_user_variables', 'remember' => ' +3 days', diff --git a/sql/Aauth_v2.sql b/sql/Aauth_v2.sql index 4a260cd..e7735b2 100644 --- a/sql/Aauth_v2.sql +++ b/sql/Aauth_v2.sql @@ -85,21 +85,6 @@ CREATE TABLE `aauth_pms` ( -- Records of aauth_pms -- ---------------------------- --- ---------------------------- --- Table structure for `aauth_system_variables` --- ---------------------------- -DROP TABLE IF EXISTS `aauth_system_variables`; -CREATE TABLE `aauth_system_variables` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `data_key` varchar(100) NOT NULL, - `value` text, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- ---------------------------- --- Records of aauth_system_variables --- ---------------------------- - -- ---------------------------- -- Table structure for `aauth_users` -- ---------------------------- diff --git a/sql/Aauth_v2_BCrypt.sql b/sql/Aauth_v2_BCrypt.sql index 2cae89c..76c7a7c 100644 --- a/sql/Aauth_v2_BCrypt.sql +++ b/sql/Aauth_v2_BCrypt.sql @@ -85,21 +85,6 @@ CREATE TABLE `aauth_pms` ( -- Records of aauth_pms -- ---------------------------- --- ---------------------------- --- Table structure for `aauth_system_variables` --- ---------------------------- -DROP TABLE IF EXISTS `aauth_system_variables`; -CREATE TABLE `aauth_system_variables` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `data_key` varchar(100) NOT NULL, - `value` text, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- ---------------------------- --- Records of aauth_system_variables --- ---------------------------- - -- ---------------------------- -- Table structure for `aauth_users` -- ----------------------------