| | # ************************************************************ |
| | # Sequel Pro SQL dump |
| | # Version 4468 |
| | # |
| | # http://www.sequelpro.com/ |
| | # https://github.com/sequelpro/sequelpro |
| | # |
| | # Host: 127.0.0.1 (MySQL 5.7.19) |
| | # Database: godmin |
| | # Generation Time: 2019-09-12 04:16:47 +0000 |
| | # ************************************************************ |
| |
|
| |
|
| | ; |
| | ; |
| | ; |
| | ; |
| | ; |
| | ; |
| | ; |
| |
|
| |
|
| | # Dump of table goadmin_menu |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_menu`; |
| |
|
| | CREATE TABLE `goadmin_menu` ( |
| | `id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| | `parent_id` int(11) unsigned NOT NULL DEFAULT '0', |
| | `type` tinyint(4) unsigned NOT NULL DEFAULT '0', |
| | `order` int(11) unsigned NOT NULL DEFAULT '0', |
| | `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `icon` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `uri` varchar(3000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
| | `header` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `plugin_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
| | `uuid` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_menu` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_menu` (`id`, `parent_id`, `type`, `order`, `title`, `icon`, `uri`, `plugin_name`, `header`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,0,1,2,'Admin','fa-tasks','','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,1,1,2,'Users','fa-users','/info/manager','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (3,1,1,3,'Roles','fa-user','/info/roles','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (4,1,1,4,'Permission','fa-ban','/info/permission','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (5,1,1,5,'Menu','fa-bars','/menu','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (6,1,1,6,'Operation log','fa-history','/info/op','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (7,0,1,1,'Dashboard','fa-bar-chart','/','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_operation_log |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_operation_log`; |
| |
|
| | CREATE TABLE `goadmin_operation_log` ( |
| | `id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| | `user_id` int(11) unsigned NOT NULL, |
| | `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `method` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `ip` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `input` text COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`), |
| | KEY `admin_operation_log_user_id_index` (`user_id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| |
|
| | # Dump of table goadmin_site |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_site`; |
| |
|
| | CREATE TABLE `goadmin_site` ( |
| | `id` int(11) unsigned NOT NULL AUTO_INCREMENT, |
| | `key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `value` longtext COLLATE utf8mb4_unicode_ci, |
| | `description` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `state` tinyint(3) unsigned NOT NULL DEFAULT '0', |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| |
|
| | # Dump of table goadmin_permissions |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_permissions`; |
| |
|
| | CREATE TABLE `goadmin_permissions` ( |
| | `id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| | `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `slug` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `http_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `http_path` text COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `admin_permissions_name_unique` (`name`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_permissions` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_permissions` (`id`, `name`, `slug`, `http_method`, `http_path`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,'All permission','*','','*','2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,'Dashboard','dashboard','GET,PUT,POST,DELETE','/','2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_role_menu |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_role_menu`; |
| |
|
| | CREATE TABLE `goadmin_role_menu` ( |
| | `role_id` int(11) unsigned NOT NULL, |
| | `menu_id` int(11) unsigned NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | KEY `admin_role_menu_role_id_menu_id_index` (`role_id`,`menu_id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_role_menu` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_role_menu` (`role_id`, `menu_id`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,1,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (1,7,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,7,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (1,8,'2019-09-11 10:20:55','2019-09-11 10:20:55'), |
| | (2,8,'2019-09-11 10:20:55','2019-09-11 10:20:55'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_role_permissions |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_role_permissions`; |
| |
|
| | CREATE TABLE `goadmin_role_permissions` ( |
| | `role_id` int(11) unsigned NOT NULL, |
| | `permission_id` int(11) unsigned NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | UNIQUE KEY `admin_role_permissions` (`role_id`,`permission_id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_role_permissions` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_role_permissions` (`role_id`, `permission_id`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,1,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (1,2,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,2,'2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_role_users |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_role_users`; |
| |
|
| | CREATE TABLE `goadmin_role_users` ( |
| | `role_id` int(11) unsigned NOT NULL, |
| | `user_id` int(11) unsigned NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | UNIQUE KEY `admin_user_roles` (`role_id`,`user_id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_role_users` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_role_users` (`role_id`, `user_id`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,1,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,2,'2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_roles |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_roles`; |
| |
|
| | CREATE TABLE `goadmin_roles` ( |
| | `id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| | `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `slug` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `admin_roles_name_unique` (`name`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_roles` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_roles` (`id`, `name`, `slug`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,'Administrator','administrator','2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,'Operator','operator','2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_session |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_session`; |
| |
|
| | CREATE TABLE `goadmin_session` ( |
| | `id` int(11) unsigned NOT NULL AUTO_INCREMENT, |
| | `sid` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
| | `values` varchar(3000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
| |
|
| |
|
| |
|
| | # Dump of table goadmin_user_permissions |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_user_permissions`; |
| |
|
| | CREATE TABLE `goadmin_user_permissions` ( |
| | `user_id` int(11) unsigned NOT NULL, |
| | `permission_id` int(11) unsigned NOT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | UNIQUE KEY `admin_user_permissions` (`user_id`,`permission_id`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_user_permissions` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_user_permissions` (`user_id`, `permission_id`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,1,'2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,2,'2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| | # Dump of table goadmin_users |
| | # |
| |
|
| | DROP TABLE IF EXISTS `goadmin_users`; |
| |
|
| | CREATE TABLE `goadmin_users` ( |
| | `id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| | `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
| | `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, |
| | `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| | `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `admin_users_username_unique` (`username`) |
| | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| |
|
| | LOCK TABLES `goadmin_users` WRITE; |
| | ; |
| |
|
| | INSERT INTO `goadmin_users` (`id`, `username`, `password`, `name`, `avatar`, `remember_token`, `created_at`, `updated_at`) |
| | VALUES |
| | (1,'admin','$2a$10$U3F/NSaf2kaVbyXTBp7ppOn0jZFyRqXRnYXB.AMioCjXl3Ciaj4oy','admin','','tlNcBVK9AvfYH7WEnwB1RKvocJu8FfRy4um3DJtwdHuJy0dwFsLOgAc0xUfh','2019-09-10 00:00:00','2019-09-10 00:00:00'), |
| | (2,'operator','$2a$10$rVqkOzHjN2MdlEprRflb1eGP0oZXuSrbJLOmJagFsCd81YZm0bsh.','Operator','',NULL,'2019-09-10 00:00:00','2019-09-10 00:00:00'); |
| |
|
| | ; |
| | UNLOCK TABLES; |
| |
|
| |
|
| |
|
| | ; |
| | ; |
| | ; |
| | ; |
| | ; |
| | ; |
| |
|