Browse Source

removed `aauth_system_variables` from SQL files

removed config var `system_variables`
develop
REJack 9 years ago
parent
commit
61f9907498
  1. 2
      application/config/aauth.php
  2. 15
      sql/Aauth_v2.sql
  3. 15
      sql/Aauth_v2_BCrypt.sql

2
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_group'] The table which contains permissions for groups
| ['perm_to_user'] The table which contains permissions for users | ['perm_to_user'] The table which contains permissions for users
| ['pms'] The table which contains private messages | ['pms'] The table which contains private messages
| ['system_variables'] The table which contains Aauth system variables
| ['user_variables'] The table which contains users variables | ['user_variables'] The table which contains users variables
| |
| ['remember'] Remember time elapsed after connecting and automatic LogOut | ['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_group' => 'aauth_perm_to_group',
'perm_to_user' => 'aauth_perm_to_user', 'perm_to_user' => 'aauth_perm_to_user',
'pms' => 'aauth_pms', 'pms' => 'aauth_pms',
'system_variables' => 'aauth_system_variables',
'user_variables' => 'aauth_user_variables', 'user_variables' => 'aauth_user_variables',
'remember' => ' +3 days', 'remember' => ' +3 days',

15
sql/Aauth_v2.sql

@ -85,21 +85,6 @@ CREATE TABLE `aauth_pms` (
-- Records of 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` -- Table structure for `aauth_users`
-- ---------------------------- -- ----------------------------

15
sql/Aauth_v2_BCrypt.sql

@ -85,21 +85,6 @@ CREATE TABLE `aauth_pms` (
-- Records of 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` -- Table structure for `aauth_users`
-- ---------------------------- -- ----------------------------

Loading…
Cancel
Save