Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
130
storage/backup/db.sql
Normal file
130
storage/backup/db.sql
Normal file
@@ -0,0 +1,130 @@
|
||||
DROP TABLE IF EXISTS `app_usergroups`;
|
||||
|
||||
#
|
||||
# Table structure for table 'groups'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_usergroups` (
|
||||
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(20) NOT NULL,
|
||||
`description` varchar(100) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
#
|
||||
# Dumping data for table 'groups'
|
||||
#
|
||||
|
||||
INSERT INTO `app_usergroups` (`id`, `name`, `description`) VALUES
|
||||
(1,'admin','Administrator'),
|
||||
(2,'members','General User');
|
||||
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `app_users`;
|
||||
|
||||
#
|
||||
# Table structure for table 'users'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_users` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`ip_address` varchar(45) NOT NULL,
|
||||
`username` varchar(100) NULL,
|
||||
`password` varchar(255) NOT NULL,
|
||||
`salt` varchar(255) DEFAULT NULL,
|
||||
`email` varchar(254) NOT NULL,
|
||||
`activation_code` varchar(40) DEFAULT NULL,
|
||||
`forgotten_password_code` varchar(40) DEFAULT NULL,
|
||||
`forgotten_password_time` int(11) unsigned DEFAULT NULL,
|
||||
`remember_code` varchar(40) DEFAULT NULL,
|
||||
`created_on` int(11) unsigned NOT NULL,
|
||||
`last_login` int(11) unsigned DEFAULT NULL,
|
||||
`active` tinyint(1) unsigned DEFAULT NULL,
|
||||
`first_name` varchar(50) DEFAULT NULL,
|
||||
`last_name` varchar(50) DEFAULT NULL,
|
||||
`company` varchar(100) DEFAULT NULL,
|
||||
`phone` varchar(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
#
|
||||
# Dumping data for table 'users'
|
||||
#
|
||||
|
||||
INSERT INTO `app_users` (`id`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`) VALUES
|
||||
('1','127.0.0.1','administrator','$2a$07$SeBknntpZror9uyftVopmu61qg0ms8Qv1yV6FG.kQOSM.9QhmTo36','','admin@admin.com','',NULL,'1268889823','1268889823','1', 'Admin','istrator','ADMIN','0');
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `app_users_groups`;
|
||||
|
||||
#
|
||||
# Table structure for table 'users_groups'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_users_groups` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`user_id` int(11) unsigned NOT NULL,
|
||||
`group_id` mediumint(8) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `fk_users_groups_users1_idx` (`user_id`),
|
||||
KEY `fk_users_groups_groups1_idx` (`group_id`),
|
||||
CONSTRAINT `uc_users_groups` UNIQUE (`user_id`, `group_id`),
|
||||
CONSTRAINT `fk_users_groups_users1` FOREIGN KEY (`user_id`) REFERENCES `app_users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
|
||||
CONSTRAINT `fk_users_groups_groups1` FOREIGN KEY (`group_id`) REFERENCES `app_usergroups` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO `app_users_groups` (`id`, `user_id`, `group_id`) VALUES
|
||||
(1,1,1),
|
||||
(2,1,2);
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `app_login_attempts`;
|
||||
|
||||
#
|
||||
# Table structure for table 'login_attempts'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_login_attempts` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`ip_address` varchar(45) NOT NULL,
|
||||
`login` varchar(100) NOT NULL,
|
||||
`time` int(11) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
DROP TABLE IF EXISTS `app_keys`;
|
||||
|
||||
#
|
||||
# Table structure for table 'app_keys'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_keys` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
username varchar(45) not null,
|
||||
`key` varchar(40) NOT NULL,
|
||||
`level` int(2) NOT NULL,
|
||||
`ignore_limits` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`date_created` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `app_logs`;
|
||||
|
||||
#
|
||||
# Table structure for table 'app_logs'
|
||||
#
|
||||
|
||||
CREATE TABLE `app_logs` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`uri` varchar(255) NOT NULL,
|
||||
`method` varchar(6) NOT NULL,
|
||||
`params` text NOT NULL,
|
||||
`api_key` varchar(40) NOT NULL,
|
||||
`ip_address` varchar(15) NOT NULL,
|
||||
`time` int(11) NOT NULL,
|
||||
`authorized` tinyint(1) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user