Skip to content

Commit

Permalink
removed aauth_system_variables from SQL files
Browse files Browse the repository at this point in the history
removed config var `system_variables`
  • Loading branch information
REJack committed May 18, 2016
1 parent 51d03fa commit 61f9907
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 32 deletions.
2 changes: 0 additions & 2 deletions application/config/aauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
| ['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
Expand Down Expand Up @@ -93,7 +92,6 @@
'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',
Expand Down
15 changes: 0 additions & 15 deletions sql/Aauth_v2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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`
-- ----------------------------
Expand Down
15 changes: 0 additions & 15 deletions sql/Aauth_v2_BCrypt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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`
-- ----------------------------
Expand Down

0 comments on commit 61f9907

Please sign in to comment.