| Current Path : /var/www/html/dynaweb.blunetdev.com/backend/modules/installer/migrations/ |
| Current File : /var/www/html/dynaweb.blunetdev.com/backend/modules/installer/migrations/auth_item.sql |
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.7.21 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 11.0.0.5919
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table selfinstaller.auth_item
CREATE TABLE IF NOT EXISTS `auth_item` (
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`type` smallint(6) NOT NULL,
`description` text COLLATE utf8_unicode_ci,
`rule_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`data` blob,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`),
KEY `rule_name` (`rule_name`),
KEY `idx-auth_item-type` (`type`),
CONSTRAINT `auth_item_ibfk_1` FOREIGN KEY (`rule_name`) REFERENCES `auth_rule` (`name`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Dumping data for table selfinstaller.auth_item: ~32 rows (approximately)
/*!40000 ALTER TABLE `auth_item` DISABLE KEYS */;
INSERT IGNORE INTO `auth_item` (`name`, `type`, `description`, `rule_name`, `data`, `created_at`, `updated_at`) VALUES
('', 2, NULL, NULL, NULL, 1592140225, 1592140225),
('*', 2, NULL, NULL, NULL, 1592059469, 1592059469),
('/admin/*', 2, NULL, NULL, NULL, 1592047887, 1592047887),
('/admin/default/*', 2, NULL, NULL, NULL, 1592047892, 1592047892),
('/admin/default/index', 2, NULL, NULL, NULL, 1592047896, 1592047896),
('/dashboard/dashboard/*', 2, NULL, NULL, NULL, 1592049351, 1592049351),
('/dashboard/dashboard/index', 2, NULL, NULL, NULL, 1592049247, 1592049247),
('/frontend/frontend-content/*', 2, NULL, NULL, NULL, 1607525201, 1607525201),
('/frontend/frontend-content/index', 2, NULL, NULL, NULL, 1607524952, 1607524952),
('/frontend/frontend-site/*', 2, NULL, NULL, NULL, 1592523307, 1592523307),
('/frontend/frontend-site/index', 2, NULL, NULL, NULL, 1592522730, 1592522730),
('/frontend/frontend-site/set-default-site', 2, NULL, NULL, NULL, 1610003124, 1610003124),
('/i18n/dmg-i18n/index', 2, NULL, NULL, NULL, 1605704155, 1605704155),
('/imgslider/main/index', 2, NULL, NULL, NULL, 1605704156, 1605704156),
('/menu/backend/*', 2, NULL, NULL, NULL, 1592119666, 1592119666),
('/menu/frontend/*', 2, NULL, NULL, NULL, 1596633846, 1596633846),
('/mimin/*', 2, NULL, NULL, NULL, 1605704448, 1605704448),
('/mimin/role/*', 2, NULL, NULL, NULL, 1592561228, 1592561228),
('/mimin/role/create', 2, NULL, NULL, NULL, 1592561235, 1592561235),
('/mimin/role/delete', 2, NULL, NULL, NULL, 1592561237, 1592561237),
('/mimin/role/index', 2, NULL, NULL, NULL, 1592561238, 1592561238),
('/mimin/route/*', 2, NULL, NULL, NULL, 1605704160, 1605704160),
('/mimin/user/*', 2, NULL, NULL, NULL, 1605704160, 1605704160),
('/site/*', 2, NULL, NULL, NULL, 1593262854, 1593262854),
('/site/index', 2, NULL, NULL, NULL, 1592063174, 1592063174),
('/site/login', 2, NULL, NULL, NULL, 1592062198, 1592062198),
('/site/logout', 2, NULL, NULL, NULL, 1592062311, 1592062311),
('/site/stub', 2, NULL, NULL, NULL, 1592063707, 1592063707),
('/theme/theme-setting/create', 2, NULL, NULL, NULL, 1605704866, 1605704866),
('/theme/theme-setting/index', 2, NULL, NULL, NULL, 1605704150, 1605704150),
('admin', 1, NULL, NULL, NULL, 1607494930, 1607494952),
('super-admin', 1, NULL, NULL, NULL, 1592049124, 1610003178);
/*!40000 ALTER TABLE `auth_item` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;