sql
stringlengths
6
1.05M
<filename>phalconcms.sql #语言表 DROP TABLE IF EXISTS `ph_language`; CREATE TABLE `ph_language` ( `id` tinyint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(100) UNIQUE NOT NULL COMMENT '各语言名称', `zh_name` varchar(100) UNIQUE NOT NULL COMMENT '中文名称', `lang` varchar(20) UNIQUE NOT NULL COMMENT '英文简称,标识', `theme` varchar(20) NOT NULL COMMENT '前台视图主题', `admin_theme` varchar(20) NOT NULL COMMENT '后台视图主题', `domain` varchar(50) NOT NULL DEFAULT '' COMMENT '域名,唯一', `status` tinyint NOT NULL DEFAULT '0' COMMENT '是否启用,0:禁用,1:启用', PRIMARY KEY (`id`), KEY `domain`(`domain`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='语言表'; TRUNCATE `ph_language`; INSERT INTO `ph_language` VALUES (1, '中文', '中文', 'zh', 'zh', 'zh', '', 1), (2, 'English', '英文', 'en', 'en', 'zh', '', 0), (3, '日本語', '日文', 'ja', 'ja', 'zh', '', 0); #翻译表 DROP TABLE IF EXISTS `ph_translate`; CREATE TABLE `ph_translate` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `sign` char(32) UNIQUE NOT NULL COMMENT '原文+"to"+language表标识(lang)后md5', `source_text` varchar(255) NOT NULL COMMENT '原文', `source_language_id` tinyint UNSIGNED NOT NULL DEFAULT 1 COMMENT '原文language表 id', `translated_text` varchar(255) NOT NULL COMMENT '译文', `translated_language_id` tinyint UNSIGNED NOT NULL COMMENT '译文language表 id', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='翻译表'; #翻译驱动表 DROP TABLE IF EXISTS `ph_translate_driver`; CREATE TABLE `ph_translate_driver` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(100) UNIQUE NOT NULL COMMENT '驱动名称', `class_name` varchar(100) NOT NULL COMMENT '类名(包含命名空间)', `config` varchar(2000) NOT NULL default '' COMMENT '配置', `status` tinyint NOT NULL DEFAULT '0' COMMENT '是否启用,0:禁用,1:启用', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='翻译驱动表'; #权限表 DROP TABLE IF EXISTS `ph_admin_auth`; CREATE TABLE `ph_admin_auth` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL COMMENT '权限名称', `pid` smallint UNSIGNED NOT NULL COMMENT '父id', `controller` varchar(30) NOT NULL DEFAULT '' COMMENT '控制器', `action` varchar(30) NOT NULL DEFAULT '' COMMENT '操作方法', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序,越小越排在前面', `note` varchar(50) NOT NULL DEFAULT '' COMMENT '备注', `icon` varchar(50) NOT NULL DEFAULT '' COMMENT '图标', `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0:隐藏,1:显示', PRIMARY KEY (`id`), KEY `pid` (`pid`, `status`), KEY `auth_ca` (`controller`,`action`, `status`), KEY `sequence` (`sequence`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='权限表'; TRUNCATE `ph_admin_auth`; INSERT INTO `ph_admin_auth` VALUES (1, '首页', 0, 'Index', 'manage', 0, '首页操作', '', 1), (2, '栏目', 0, 'Category', 'manage', 5, '栏目操作', '', 1), (3, '内容', 0, 'Categorycontent', 'manage', 10, '内容操作', '', 1), (4, '扩展', 0, 'Expand', 'manage', 15, '扩展操作', '', 1), (5, '表单', 0, 'Form', 'manage', 20, '表单操作', '', 1), (6, '用户', 0, 'Admin', 'manage', 25, '用户操作', '', 1), (100, '后台首页', 1, 'Index', 'home', 100, '后台首页浏览', '', 1), (101, '系统设置', 1, 'Systemset', 'index', 105, '系统设置浏览', '', 1), (102, '模型管理', 1, 'Categorymodel', 'index', 110, '模型管理浏览', '', 1), (103, '插件管理', 1, 'Plugin', 'index', 115, '插件管理浏览', '', 0), (104, '语言管理', 1, 'Language', 'index', 120, '语言管理浏览', '', 1), (105, '翻译管理', 1, 'Translate', 'index', 125, '翻译管理浏览', '', 1), (106, '翻译驱动管理', 1, 'Translatedriver', 'index', 130, '翻译驱动浏览', '', 1), (107, '管理组管理', 6, 'Admingroup', 'index', 135, '管理组浏览', '', 1), (108, '管理员管理', 6, 'Admin', 'index', 140, '管理员浏览', '', 1), (109, '后台登录记录', 6, 'Adminlog', 'index', 145, '后台登录记录浏览', '', 1), (110, '表单设置', 5, 'Form', 'index', 150, '多用表单浏览', '', 1), (111, '扩展模型', 4, 'Expand', 'index', 155, '扩展模型浏览', '', 1), (112, '自定义变量', 4, 'Fragment', 'index', 160, '自定义变量浏览', '', 1), (113, '内容替换', 4, 'Replace', 'index', 165, '内容替换浏览', '', 1), (114, 'TAG管理', 4, 'tags', 'index', 170, 'TAG管理浏览', '', 1), (115, '推荐位管理', 4, 'Position', 'index', 175, '推荐位管理浏览', '', 1), (116, '附件管理', 4, 'Upload', 'index', 180, '附件管理浏览', '', 1), (117, '栏目管理', 2, 'Category', 'index', 185, '栏目浏览', '', 1), (118, '内容首页', 3, 'Categorycontent', 'list', 190, '内容首页浏览', '', 1), (1000, '保存', 101, 'Systemset', 'save', 1000, '系统设置保存', '', 1), (1001, '添加语言', 104, 'Language', 'add', 1005, '语言管理添加', '', 1), (1002, '查看', 104, 'Language', 'info', 1010, '语言管理查看', '', 1), (1003, '修改', 104, 'Language', 'edit', 1015, '语言管理修改', '', 1), (1004, '查看', 105, 'Translate', 'info', 1025, '翻译查看', '', 1), (1005, '修改', 105, 'Translate', 'edit', 1030, '翻译修改', '', 1), (1006, '添加翻译驱动', 106, 'Translatedriver', 'add', 1035, '翻译驱动添加', '', 1), (1007, '查看', 106, 'Translatedriver', 'info', 1040, '翻译驱动查看', '', 1), (1008, '修改', 106, 'Translatedriver', 'edit', 1045, '翻译驱动修改', '', 1), (1009, '添加管理组', 107, 'Admingroup', 'add', 1050, '管理组添加', '', 1), (1010, '查看', 107, 'Admingroup', 'info', 1055, '管理组查看', '', 1), (1011, '修改', 107, 'Admingroup', 'edit', 1060, '管理组修改', '', 1), (1012, '删除', 107, 'Admingroup', 'delete', 1065, '管理组删除', '', 1), (1013, '添加管理员', 108, 'Admin', 'add', 1050, '管理员添加', '', 1), (1014, '查看', 108, 'Admin', 'info', 1055, '管理员查看', '', 1), (1015, '设置', 108, 'Admin', 'edit', 1060, '管理员设置', '', 1), (1016, '修改资料', 108, 'Admin', 'editInfo', 1065, '管理员修改资料', '', 1), (1017, '删除', 108, 'Admin', 'delete', 1070, '管理员删除', '', 1), (1018, '添加表单', 110, 'Form', 'add', 1075, '表单添加', '', 1), (1019, '查看', 110, 'Form', 'info', 1080, '表单查看', '', 1), (1020, '修改', 110, 'Form', 'edit', 1085, '表单修改', '', 1), (1021, '删除', 110, 'Form', 'delete', 1090, '表单删除', '', 1), (1022, '字段管理', 110, 'Formfield', 'index', 1095, '表单字段管理', '', 1), (1023, '表单数据管理', 110, 'Formdata', 'index', 1100, '浏览用户创建的表单', '', 1), (1024, '添加模型', 111, 'Expand', 'add', 1105, '模型添加', '', 1), (1025, '查看', 111, 'Expand', 'info', 1110, '模型查看', '', 1), (1026, '修改', 111, 'Expand', 'edit', 1115, '模型修改', '', 1), (1027, '删除', 111, 'Expand', 'delete', 1120, '模型删除', '', 1), (1028, '字段管理', 111, 'Expandfield', 'index', 1125, '模型字段管理', '', 1), (1029, '添加自定义变量', 112, 'Fragment', 'add', 1130, '添加自定义变量', '', 1), (1030, '查看', 112, 'Fragment', 'info', 1135, '自定义变量查看', '', 1), (1031, '修改', 112, 'Fragment', 'edit', 1140, '自定义变量修改', '', 1), (1032, '删除', 112, 'Fragment', 'delete', 1145, '自定义变量删除', '', 1), (1033, '添加内容替换', 113, 'Replace', 'add', 1150, '添加内容替换', '', 1), (1034, '查看', 113, 'Replace', 'info', 1155, '内容替换查看', '', 1), (1035, '修改', 113, 'Replace', 'edit', 1160, '内容替换修改', '', 1), (1036, '删除', 113, 'Replace', 'delete', 1175, '内容替换删除', '', 1), (1037, '添加TAG', 114, 'tags', 'add', 1180, '添加tag标签', '', 1), (1038, '分组', 114, 'tags', 'grouping', 1185, 'tag标签分组', '', 1), (1039, '删除', 114, 'tags', 'delete', 1190, 'tag标签删除', '', 1), (1040, 'TAG分组管理', 114, 'tagsgroup', 'index', 1195, 'tag标签分组管理', '', 1), (1041, '添加推荐位', 115, 'Position', 'add', 1200, '添加推荐位', '', 1), (1042, '查看', 115, 'Position', 'info', 1205, '推荐位查看', '', 1), (1043, '修改', 115, 'Position', 'edit', 1210, '推荐位修改', '', 1), (1044, '删除', 115, 'Position', 'delete', 1215, '推荐位删除', '', 1), (1045, '删除', 116, 'Upload', 'delete', 1220, '附件删除', '', 1), (1046, '栏目排序', 117, 'Category', 'sequence', 1225, '栏目排序', '', 1), (1047, '添加新闻栏目', 117, 'categorynews', 'add', 1230, '添加新闻栏目', '', 1), (1048, '查看新闻栏目', 117, 'categorynews', 'info', 1230, '查看新闻栏目', '', 1), (1049, '修改新闻栏目', 117, 'categorynews', 'edit', 1230, '修改新闻栏目', '', 1), (1050, '删除新闻栏目', 117, 'categorynews', 'delete', 1230, '删除新闻栏目', '', 1), (1051, '添加页面栏目', 117, 'categorypage', 'add', 1230, '添加页面栏目', '', 1), (1052, '查看页面栏目', 117, 'categorypage', 'info', 1230, '查看页面栏目', '', 1), (1053, '修改页面栏目', 117, 'categorypage', 'edit', 1230, '修改页面栏目', '', 1), (1054, '删除页面栏目', 117, 'categorypage', 'delete', 1230, '删除页面栏目', '', 1), (1055, '添加跳转栏目', 117, 'categoryjump', 'add', 1230, '添加跳转栏目', '', 1), (1056, '查看跳转栏目', 117, 'categoryjump', 'info', 1230, '查看跳转栏目', '', 1), (1057, '修改跳转栏目', 117, 'categoryjump', 'edit', 1230, '修改跳转栏目', '', 1), (1058, '删除跳转栏目', 117, 'categoryjump', 'delete', 1230, '删除跳转栏目', '', 1), (1059, '审核', 118, 'Categorycontent', 'audit', 1235, '审核内容', '', 1), (1060, '添加内容', 118, 'Categorycontent', 'add', 1240, '添加内容', '', 1), (1061, '查看内容', 118, 'Categorycontent', 'info', 1245, '查看内容', '', 1), (1062, '修改内容', 118, 'Categorycontent', 'edit', 1250, '修改内容', '', 1), (1063, '删除内容', 118, 'Categorycontent', 'delete', 1255, '删除内容', '', 1), (1064, '移动', 118, 'Categorycontent', 'move', 1260, '移动内容到某栏目', '', 1), (1065, '内容管理', 118, 'Categorycontent', 'index', 1234, '浏览某个栏目的内容', '', 1), (1066, '快速编辑', 118, 'Categorycontent', 'quickEdit', 1251, '快速编辑内容', '', 1), (1067, '查看', 102, 'Categorymodel', 'info', 1060, '模型查看', '', 1), (1068, '修改', 102, 'Categorymodel', 'edit', 1065, '模型配置', '', 1), (10000, '添加', 1022, 'Formfield', 'add', 10000, '添加表单字段', '', 1), (10001, '查看', 1022, 'Formfield', 'info', 10005, '查看表单字段', '', 1), (10002, '修改', 1022, 'Formfield', 'edit', 10010, '修改表单字段', '', 1), (10003, '删除', 1022, 'Formfield', 'delete', 10015, '删除表单字段', '', 1), (10004, '添加', 1023, 'Formdata', 'add', 10020, '添加表单数据', '', 1), (10005, '查看', 1023, 'Formdata', 'info', 10025, '查看表单数据', '', 1), (10006, '修改', 1023, 'Formdata', 'edit', 10030, '修改表单数据', '', 1), (10007, '删除', 1023, 'Formdata', 'delete', 10035, '删除表单数据', '', 1), (10008, '添加', 1028, 'Expandfield', 'add', 10040, '添加模型字段', '', 1), (10009, '查看', 1028, 'Expandfield', 'info', 10045, '查看模型字段', '', 1), (10010, '修改', 1028, 'Expandfield', 'edit', 10050, '修改模型字段', '', 1), (10011, '删除', 1028, 'Expandfield', 'delete', 10055, '删除模型字段', '', 1), (10012, '添加', 1040, 'tagsgroup', 'add', 10060, '添加tag标签分组', '', 1), (10013, '查看', 1040, 'tagsgroup', 'info', 10065, '查看tag标签分组', '', 1), (10014, '修改', 1040, 'tagsgroup', 'edit', 10070, '修改tag标签分组', '', 1), (10015, '删除', 1040, 'tagsgroup', 'delete', 10085, '删除tag标签分组', '', 1); #用户组表 DROP TABLE IF EXISTS `ph_admin_group`; CREATE TABLE `ph_admin_group` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) UNIQUE NOT NULL COMMENT '角色名称', `admin_auth_ids` varchar(3000) NOT NULL DEFAULT '' COMMENT '操作权限ids,1,2,5', `category_ids` varchar(5000) NOT NULL DEFAULT '' COMMENT '栏目权限', `form_ids` varchar(5000) NOT NULL DEFAULT '' COMMENT '表单权限', `grade` tinyint NOT NULL DEFAULT '1' COMMENT '等级', `keep` tinyint NOT NULL DEFAULT '0' COMMENT '是否校验权限(允许组合),0:全部校验,1:不校验表单权限,2:不校验栏目权限,4:不校验功能权限,7:全部不校验', `group_power` tinyint UNSIGNED NOT NULL DEFAULT '0' COMMENT '管理组列表权限(只允许增删改下级管理组)(允许组合),1:显示本组,2:显示同级别组,4:显示低级别组', `admin_power` tinyint UNSIGNED NOT NULL DEFAULT '0' COMMENT '管理员列表权限(只允许增删改下级管理员(修改资料除外))(允许组合)(这里的修改只针对资料),1:显示管理员本人,2:显示同级别组管理员,4:显示低级别组管理员,8:修改管理员本人,16:修改同级别组管理员,32:修改低级别组管理员', `language_power` tinyint NOT NULL DEFAULT '1' COMMENT '是否受语言限制(不受限制可以浏览添加修改他国语言管理组、管理员),1:受限制,0:不受限制', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表 id', PRIMARY KEY (`id`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='用户组表'; TRUNCATE `ph_admin_group`; INSERT INTO `ph_admin_group` VALUES (1, '超级管理组', '', '', '', 1, 7, 7, 63, 0, 1), (2, '管理员组', '1,100,101,1000,102,103,104,1001,1002,1003,105,1004,1005,106,1006,1007,1008,2,117,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,3,4,111,1024,1025,1026,1027,1028,10008,10009,10010,10011,112,1029,1030,1031,1032,113,1033,1034,1035,1036,114,1037,1038,1039,1040,10012,10013,10014,10015,115,1041,1042,1043,1044,116,1045,5,110,1018,1019,1020,1021,1022,10000,10001,10002,10003,1023,10004,10005,10006,10007,6,107,1009,1010,1011,1012,108,1013,1014,1015,1016,1017,109', '', '', 10, 3, 7, 63, 0, 1); #管理员表 DROP TABLE IF EXISTS `ph_admin`; CREATE TABLE `ph_admin` ( `id` mediumint UNSIGNED NOT NULL AUTO_INCREMENT, `username` varchar(20) UNIQUE NOT NULL COMMENT '用户名', `password` varchar(32) NOT NULL COMMENT '密码', `nicename` varchar(20) NOT NULL DEFAULT '' COMMENT '昵称', `regtime` datetime NOT NULL COMMENT '注册时间', `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:1:正常,0:禁用', `admin_group_id` smallint UNSIGNED NOT NULL COMMENT 'admin_group表 id', PRIMARY KEY (`id`), KEY `admin_group_id` (`admin_group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='管理员表'; TRUNCATE `ph_admin`; INSERT INTO `ph_admin` VALUES (1, 'admin', '<PASSWORD>', '超级管理员', '2018-07-01 00:00:00', 1, 1), (2, 'phalcon', '<PASSWORD>', '管理员', '2018-07-14 00:00:00', 1, 2); #管理员登录记录表 DROP TABLE IF EXISTS `ph_admin_log`; CREATE TABLE `ph_admin_log` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `admin_id` mediumint UNSIGNED NOT NULL COMMENT '表admin id', `logintime` datetime NOT NULL COMMENT '登录时间', `ip` varchar(64) NOT NULL DEFAULT '' COMMENT 'ip地址', PRIMARY KEY (`id`), KEY `admin_id` (`admin_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='管理员登录记录表'; TRUNCATE `ph_admin_log`; #系统配置 DROP TABLE IF EXISTS `ph_system_config`; CREATE TABLE `ph_system_config` ( `id` tinyint UNSIGNED NOT NULL AUTO_INCREMENT, `config` varchar(5000) NOT NULL COMMENT '配置', `language_id` tinyint UNSIGNED UNIQUE NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='系统设置'; #多功能表单表 DROP TABLE IF EXISTS `ph_form`; CREATE TABLE `ph_form` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) UNIQUE NOT NULL DEFAULT '' COMMENT '表单名称', `no` char(32) UNIQUE NOT NULL COMMENT '表单编号', `table` varchar(20) UNIQUE NOT NULL DEFAULT '' COMMENT '表单名', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '表单排序,越小越排在前面', `sort` varchar(20) NOT NULL DEFAULT 'id DESC' COMMENT '内容排序', `display` tinyint NOT NULL DEFAULT '0' COMMENT '是否在前台显示此表单的分页列表内容,0:否,1:是', `page` smallint NOT NULL DEFAULT '10' COMMENT '前台分页数', `alone_tpl` tinyint NOT NULL DEFAULT '0' COMMENT '是否使用独立模板,0:否,1:是', `tpl` varchar(255) NOT NULL DEFAULT '' COMMENT '前台模板', `where` varchar(255) NOT NULL DEFAULT '' COMMENT '前台分页条件', `return_type` tinyint NOT NULL DEFAULT '0' COMMENT '提交表单返回类型,0:JS消息框,1:json', `return_msg` varchar(255) NOT NULL DEFAULT '提交成功' COMMENT '提交成功后返回的提示信息', `return_url` varchar(255) NOT NULL DEFAULT '' COMMENT '提交成功后跳转的地址', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', `is_captcha` tinyint NOT NULL DEFAULT '0' COMMENT '是否使用图片验证码,0:否,1:是', PRIMARY KEY (`id`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='多功能表单表'; #多功能表单字段表 DROP TABLE IF EXISTS `ph_form_field`; CREATE TABLE `ph_form_field` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `form_id` int UNSIGNED NOT NULL COMMENT 'form表id', `name` varchar(50) NOT NULL COMMENT '字段描述', `field` varchar(50) NOT NULL COMMENT '字段名', `type` tinyint NOT NULL DEFAULT '1' COMMENT '字段类型,1:文本框;2:多行文本;3:编辑器,4:文件上传;5:单图片上传;6:组图上传;7:下拉菜单;8:单选;9:多选', `property` tinyint NOT NULL DEFAULT '1' COMMENT '字段属性,1:varchar;2:int;3:text;4:datetime;5:decimal;', `len` smallint NOT NULL DEFAULT '0' COMMENT '字段长度', `decimal` tinyint UNSIGNED NOT NULL DEFAULT '0' COMMENT '小数点位数', `default` varchar(255) NOT NULL DEFAULT '' COMMENT '默认值', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序,越小越排在前面', `tip` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示', `config` varchar(255) NOT NULL DEFAULT '' COMMENT '字段配置', `is_must` tinyint NOT NULL DEFAULT '0' COMMENT '是否必填,0:否,1:是', `is_unique` tinyint NOT NULL DEFAULT '0' COMMENT '是否唯一,0:否,1:是', `admin_display` tinyint NOT NULL DEFAULT '0' COMMENT '是否后台显示,0:否,1:是', `admin_display_len` smallint NOT NULL DEFAULT '0' COMMENT '后台列表显示长度', PRIMARY KEY (`id`), UNIQUE KEY `form_id_name` (`form_id`, `name`), UNIQUE KEY `form_id_field` (`form_id`, `field`), KEY `sequence` (`sequence`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='多功能表单字段表'; #上传文件表 DROP TABLE IF EXISTS `ph_upload`; CREATE TABLE `ph_upload` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `file` varchar(255) NOT NULL COMMENT '文件', `folder` varchar(255) NOT NULL DEFAULT '' COMMENT '文件路径', `title` varchar(255) NOT NULL COMMENT '文件名', `ext` varchar(20) NOT NULL DEFAULT '' COMMENT '文件扩展名', `size` int UNSIGNED NOT NULL DEFAULT '0' COMMENT '文件大小', `type` varchar(255) NOT NULL DEFAULT '' COMMENT '文件类型', `time` datetime NOT NULL COMMENT '上传时间', `module` tinyint NOT NULL DEFAULT '-1' COMMENT '所属模块,-1:未绑定模块;1:栏目模块,2:内容模块,3:扩展模块,4:表单模块', PRIMARY KEY (`id`), KEY `title` (`title`), KEY `ext` (`ext`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='上传文件表'; #扩展模型表 DROP TABLE IF EXISTS `ph_expand`; CREATE TABLE `ph_expand` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `table` varchar(50) UNIQUE NOT NULL DEFAULT '' COMMENT '模型表名称', `name` varchar(50) UNIQUE NOT NULL DEFAULT '' COMMENT '模型名称', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='扩展模型表'; #扩展模型字段表 DROP TABLE IF EXISTS `ph_expand_field`; CREATE TABLE `ph_expand_field` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `expand_id` smallint UNSIGNED NOT NULL COMMENT 'expand表id', `name` varchar(50) NOT NULL COMMENT '字段描述', `field` varchar(50) NOT NULL COMMENT '字段名', `type` tinyint NOT NULL DEFAULT '1' COMMENT '字段类型,1:文本框;2:多行文本;3:编辑器,4:文件上传;5:单图片上传;6:组图上传;7:下拉菜单;8:单选;9:多选', `property` tinyint NOT NULL DEFAULT '1' COMMENT '字段属性,1:varchar;2:int;3:text;4:datetime;5:decimal;', `len` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT '长度', `decimal` tinyint UNSIGNED NOT NULL DEFAULT '0' COMMENT '小数点位数', `default` varchar(255) NOT NULL DEFAULT '' COMMENT '默认值', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序,越小越排在前面', `tip` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示', `config` varchar(255) NOT NULL DEFAULT '' COMMENT '其他配置', `is_must` tinyint NOT NULL DEFAULT '0' COMMENT '是否必填,0:否,1:是', PRIMARY KEY (`id`), UNIQUE KEY `expand_id_name` (`expand_id`, `name`), UNIQUE KEY `expand_id_field` (`expand_id`, `field`), KEY `sequence` (`sequence`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='扩展模型字段'; #自定义变量表 DROP TABLE IF EXISTS `ph_fragment`; CREATE TABLE `ph_fragment` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `sign` varchar(100) NOT NULL DEFAULT '' COMMENT '标识', `title` varchar(100) NOT NULL DEFAULT '' COMMENT '描述', `content` text COMMENT '内容', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `sign` (`sign`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='自定义变量表'; #内容替换表 DROP TABLE IF EXISTS `ph_replace`; CREATE TABLE `ph_replace` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `key` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字', `content` varchar(1000) NOT NULL DEFAULT '' COMMENT '要替换的内容', `num` smallint NOT NULL DEFAULT '0' COMMENT '替换次数,0:不限制', `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态,0:禁用,1:启用', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `language_id` (`language_id`, `status`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='内容替换表'; #标签组表 DROP TABLE IF EXISTS `ph_tags_group`; CREATE TABLE `ph_tags_group` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '' COMMENT '标签组名', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='标签组表'; #标签表 DROP TABLE IF EXISTS `ph_tags`; CREATE TABLE `ph_tags` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `tags_group_id` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT 'tags_group表id', `name` varchar(100) NOT NULL DEFAULT '' COMMENT '标签名', `click` int UNSIGNED NOT NULL DEFAULT '0' COMMENT '点击次数', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `tags_group_id` (`tags_group_id`), KEY `name` (`name`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='标签表'; #内容标签关系表 DROP TABLE IF EXISTS `ph_tags_relation`; CREATE TABLE `ph_tags_relation` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `category_content_id` int UNSIGNED NOT NULL COMMENT 'category_content表id', `tags_id` int UNSIGNED NOT NULL DEFAULT '0' COMMENT 'tags表id', PRIMARY KEY (`id`), KEY `category_content_id` (`category_content_id`), KEY `tags_id` (`tags_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='内容标签关系表'; #推荐位表 DROP TABLE IF EXISTS `ph_position`; CREATE TABLE `ph_position` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序,升序', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', PRIMARY KEY (`id`), KEY `name` (`name`), KEY `sequence` (`sequence`), KEY `language_id` (`language_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='推荐位表'; #推荐位与内容关系表 DROP TABLE IF EXISTS `ph_category_content_position`; CREATE TABLE `ph_category_content_position` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `category_content_id` int UNSIGNED NOT NULL COMMENT 'category_content表id', `position_id` int UNSIGNED NOT NULL COMMENT 'position表id', PRIMARY KEY (`id`), KEY `category_content_id` (`category_content_id`), KEY `position_id` (`position_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='推荐位与内容关系表'; #模型表 DROP TABLE IF EXISTS `ph_category_model`; CREATE TABLE `ph_category_model` ( `id` tinyint UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL COMMENT '模型名称', `category` varchar(50) NOT NULL DEFAULT '' COMMENT '栏目控制器名', `content` varchar(50) NOT NULL DEFAULT '' COMMENT '内容控制器名', `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态,0:禁用,1:开启', `befrom` varchar(255) NOT NULL DEFAULT '' COMMENT '来源', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='模型表'; TRUNCATE `ph_category_model`; INSERT INTO `ph_category_model` VALUES (1, '新闻', 'categorynews', 'categorycontent', 1, 'phalconcms'), (2, '页面', 'categorypage', '', 1, ''), (3, '跳转', 'categoryjump', '', 1, ''); #栏目表 DROP TABLE IF EXISTS `ph_category`; CREATE TABLE `ph_category` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `pid` int UNSIGNED NOT NULL DEFAULT '0' COMMENT '上级栏目id', `category_model_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'category_model表id', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序,越小越排在前面', `is_show` tinyint NOT NULL DEFAULT '1' COMMENT '是否显示,1:显示,0:隐藏', `type` tinyint NOT NULL DEFAULT '1' COMMENT '栏目类型,1:频道页,2:列表页', `name` varchar(255) NOT NULL COMMENT '栏目名称', `urlname` varchar(255) UNIQUE NOT NULL COMMENT '栏目url优化', `subname` varchar(100) NOT NULL DEFAULT '' COMMENT '副栏目名称', `image` varchar(255) NOT NULL DEFAULT '' COMMENT '栏目形象图', `category_tpl` varchar(255) NOT NULL DEFAULT '' COMMENT '栏目模板', `content_tpl` varchar(255) NOT NULL DEFAULT '' COMMENT '内容模板', `page` tinyint UNSIGNED NOT NULL DEFAULT '10' COMMENT '内容分页数', `keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键词,","分割', `description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述', `seo_content` varchar(255) NOT NULL DEFAULT '' COMMENT 'SEO内容', `content_order` varchar(255) NOT NULL DEFAULT '' COMMENT '内容排序,"updatetime DESC":更新时间 新旧,"updatetime ASC":更新时间 旧新,"inputtime DESC":发布时间 新旧,"inputtime ASC":发布时间 旧新,"sequence DESC":自定义顺序 大小,"sequence ASC":自定义顺序 小大', `language_id` tinyint UNSIGNED NOT NULL DEFAULT '1' COMMENT 'language表id', `expand_id` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT '扩展表id', PRIMARY KEY (`id`), KEY `pid` (`pid`), KEY `category_model_id` (`category_model_id`), KEY `name` (`name`), KEY `urlname2` (`urlname`, `is_show`), KEY `sequence` (`sequence`), KEY `language_id` (`language_id`), KEY `expand_id` (`expand_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='栏目表'; #栏目内容表 DROP TABLE IF EXISTS `ph_category_content`; CREATE TABLE `ph_category_content` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `category_id` int UNSIGNED NOT NULL DEFAULT '0' COMMENT 'category表id', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '标题', `urltitle` varchar(100) NOT NULL DEFAULT '' COMMENT 'URL路径', `subtitle` varchar(100) NOT NULL DEFAULT '' COMMENT '短标题', `font_color` char(7) NOT NULL DEFAULT '' COMMENT '颜色(16进制RGB值)', `font_bold` tinyint NOT NULL DEFAULT '0' COMMENT '加粗,0:不加粗,1:加粗', `keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键词', `description` varchar(255) NOT NULL DEFAULT '' COMMENT '描述', `updatetime` datetime NOT NULL COMMENT '更新时间', `inputtime` datetime DEFAULT NULL COMMENT '发布时间', `image` varchar(255) NOT NULL DEFAULT '' COMMENT '封面图', `jump_url` varchar(255) NOT NULL DEFAULT '' COMMENT '跳转', `sequence` smallint NOT NULL DEFAULT '0' COMMENT '排序', `tpl` varchar(255) NOT NULL DEFAULT '' COMMENT '模板', `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态,0:草稿,1:发布', `copyfrom` varchar(255) NOT NULL DEFAULT '' COMMENT '来源', `views` int NOT NULL DEFAULT '0' COMMENT '浏览数', `position` varchar(255) NOT NULL DEFAULT '0' COMMENT '推荐ids', `taglink` tinyint NOT NULL DEFAULT '0' COMMENT '是否内容自动TAG', `admin_id` mediumint UNSIGNED NOT NULL DEFAULT '0' COMMENT 'admin表id,创作者', `admin_nicename` varchar(20) NOT NULL DEFAULT '' COMMENT '昵称', PRIMARY KEY (`id`), KEY `category_id` (`category_id`, `status`), KEY `title` (`title`), KEY `urltitle` (`urltitle`, `status`), KEY `updatetime` (`updatetime`), KEY `inputtime` (`inputtime`), KEY `views` (`views`), KEY `admin_id` (`admin_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='内容表'; #内容数据表 DROP TABLE IF EXISTS `ph_category_content_data`; CREATE TABLE `ph_category_content_data` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `category_content_id` int UNSIGNED NOT NULL DEFAULT '0' COMMENT 'category_content表id', `content` text, PRIMARY KEY (`id`), KEY `category_content_id` (`category_content_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='内容数据表'; #跳转栏目附加表 DROP TABLE IF EXISTS `ph_category_jump`; CREATE TABLE `ph_category_jump` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `category_id` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT 'category表id', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '跳转地址', PRIMARY KEY (`id`), KEY `category_id` (`category_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='跳转栏目附加表'; #页面栏目附加表 DROP TABLE IF EXISTS `ph_category_page`; CREATE TABLE `ph_category_page` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `category_id` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT 'category表id', `content` text COMMENT '内容', PRIMARY KEY (`id`), KEY `category_id` (`category_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='页面栏目附加表'; #地区 DROP TABLE IF EXISTS `ph_area`; CREATE TABLE `ph_area` ( `id` smallint UNSIGNED NOT NULL AUTO_INCREMENT, `pid` smallint UNSIGNED NOT NULL DEFAULT '0' COMMENT '父id', `code` mediumint UNSIGNED NOT NULL DEFAULT '0' COMMENT '省市代码', `name` varchar(50) DEFAULT NULL COMMENT '名称', `short_name` varchar(50) DEFAULT NULL COMMENT '短名称', `region_level` tinyint DEFAULT '0' COMMENT '区域层面', PRIMARY KEY (`id`), KEY `pid` (`pid`), KEY `code` (`code`), KEY `short_name` (`short_name`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='简单省市表'; INSERT INTO `ph_area` (`id`, `pid`, `code`, `name`, `short_name`, `region_level`) VALUES (1, 0, 110000, '北京市', '北京', 1), (2, 1, 110100, '北京市', '北京', 2), (3, 2, 110101, '东城区', '东城', 3), (4, 2, 110102, '西城区', '西城', 3), (5, 2, 110105, '朝阳区', '朝阳', 3), (6, 2, 110106, '丰台区', '丰台', 3), (7, 2, 110107, '石景山区', '石景山', 3), (8, 2, 110108, '海淀区', '海淀', 3), (9, 2, 110109, '门头沟区', '门头沟', 3), (10, 2, 110111, '房山区', '房山', 3), (11, 2, 110112, '通州区', '通州', 3), (12, 2, 110113, '顺义区', '顺义', 3), (13, 2, 110114, '昌平区', '昌平', 3), (14, 2, 110115, '大兴区', '大兴', 3), (15, 2, 110116, '怀柔区', '怀柔', 3), (16, 2, 110117, '平谷区', '平谷', 3), (17, 2, 110118, '密云区', '密云', 3), (18, 2, 110119, '延庆区', '延庆', 3), (19, 0, 120000, '天津市', '天津', 1), (20, 19, 120100, '天津市', '天津', 2), (21, 20, 120101, '和平区', '和平', 3), (22, 20, 120102, '河东区', '河东', 3), (23, 20, 120103, '河西区', '河西', 3), (24, 20, 120104, '南开区', '南开', 3), (25, 20, 120105, '河北区', '河北', 3), (26, 20, 120106, '红桥区', '红桥', 3), (27, 20, 120110, '东丽区', '东丽', 3), (28, 20, 120111, '西青区', '西青', 3), (29, 20, 120112, '津南区', '津南', 3), (30, 20, 120113, '北辰区', '北辰', 3), (31, 20, 120114, '武清区', '武清', 3), (32, 20, 120115, '宝坻区', '宝坻', 3), (33, 20, 120116, '滨海新区', '滨海', 3), (34, 20, 120117, '宁河区', '宁河', 3), (35, 20, 120118, '静海区', '静海', 3), (36, 20, 120119, '蓟州区', '蓟州', 3), (37, 0, 130000, '河北省', '河北', 1), (38, 37, 130100, '石家庄市', '石家庄', 2), (39, 38, 130102, '长安区', '长安', 3), (40, 38, 130104, '桥西区', '桥西', 3), (41, 38, 130105, '新华区', '新华', 3), (42, 38, 130107, '井陉矿区', '井陉矿', 3), (43, 38, 130108, '裕华区', '裕华', 3), (44, 38, 130109, '藁城区', '藁城', 3), (45, 38, 130110, '鹿泉区', '鹿泉', 3), (46, 38, 130111, '栾城区', '栾城', 3), (47, 38, 130121, '井陉县', '井陉', 3), (48, 38, 130123, '正定县', '正定', 3), (49, 38, 130125, '行唐县', '行唐', 3), (50, 38, 130126, '灵寿县', '灵寿', 3), (51, 38, 130127, '高邑县', '高邑', 3), (52, 38, 130128, '深泽县', '深泽', 3), (53, 38, 130129, '赞皇县', '赞皇', 3), (54, 38, 130130, '无极县', '无极', 3), (55, 38, 130131, '平山县', '平山', 3), (56, 38, 130132, '元氏县', '元氏', 3), (57, 38, 130133, '赵县', '赵县', 3), (58, 38, 130181, '辛集市', '辛集', 3), (59, 38, 130183, '晋州市', '晋州', 3), (60, 38, 130184, '新乐市', '新乐', 3), (61, 37, 130200, '唐山市', '唐山', 2), (62, 61, 130202, '路南区', '路南', 3), (63, 61, 130203, '路北区', '路北', 3), (64, 61, 130204, '古冶区', '古冶', 3), (65, 61, 130205, '开平区', '开平', 3), (66, 61, 130207, '丰南区', '丰南', 3), (67, 61, 130208, '丰润区', '丰润', 3), (68, 61, 130209, '曹妃甸区', '曹妃甸', 3), (69, 61, 130223, '滦县', '滦县', 3), (70, 61, 130224, '滦南县', '滦南', 3), (71, 61, 130225, '乐亭县', '乐亭', 3), (72, 61, 130227, '迁西县', '迁西', 3), (73, 61, 130229, '玉田县', '玉田', 3), (74, 61, 130281, '遵化市', '遵化', 3), (75, 61, 130283, '迁安市', '迁安', 3), (76, 37, 130300, '秦皇岛市', '秦皇岛', 2), (77, 76, 130302, '海港区', '海港', 3), (78, 76, 130303, '山海关区', '山海关', 3), (79, 76, 130304, '北戴河区', '北戴河', 3), (80, 76, 130306, '抚宁区', '抚宁', 3), (81, 76, 130321, '青龙满族自治县', '青龙', 3), (82, 76, 130322, '昌黎县', '昌黎', 3), (83, 76, 130324, '卢龙县', '卢龙', 3), (84, 37, 130400, '邯郸市', '邯郸', 2), (85, 84, 130402, '邯山区', '邯山', 3), (86, 84, 130403, '丛台区', '丛台', 3), (87, 84, 130404, '复兴区', '复兴', 3), (88, 84, 130406, '峰峰矿区', '峰峰矿', 3), (89, 84, 130407, '肥乡区', '肥乡', 3), (90, 84, 130408, '永年区', '永年', 3), (91, 84, 130423, '临漳县', '临漳', 3), (92, 84, 130424, '成安县', '成安', 3), (93, 84, 130425, '大名县', '大名', 3), (94, 84, 130426, '涉县', '涉县', 3), (95, 84, 130427, '磁县', '磁县', 3), (96, 84, 130430, '邱县', '邱县', 3), (97, 84, 130431, '鸡泽县', '鸡泽', 3), (98, 84, 130432, '广平县', '广平', 3), (99, 84, 130433, '馆陶县', '馆陶', 3), (100, 84, 130434, '魏县', '魏县', 3), (101, 84, 130435, '曲周县', '曲周', 3), (102, 84, 130481, '武安市', '武安', 3), (103, 37, 130500, '邢台市', '邢台', 2), (104, 103, 130502, '桥东区', '桥东', 3), (105, 103, 130503, '桥西区', '桥西', 3), (106, 103, 130521, '邢台县', '邢台', 3), (107, 103, 130522, '临城县', '临城', 3), (108, 103, 130523, '内丘县', '内丘', 3), (109, 103, 130524, '柏乡县', '柏乡', 3), (110, 103, 130525, '隆尧县', '隆尧', 3), (111, 103, 130526, '任县', '任县', 3), (112, 103, 130527, '南和县', '南和', 3), (113, 103, 130528, '宁晋县', '宁晋', 3), (114, 103, 130529, '巨鹿县', '巨鹿', 3), (115, 103, 130530, '新河县', '新河', 3), (116, 103, 130531, '广宗县', '广宗', 3), (117, 103, 130532, '平乡县', '平乡', 3), (118, 103, 130533, '威县', '威县', 3), (119, 103, 130534, '清河县', '清河', 3), (120, 103, 130535, '临西县', '临西', 3), (121, 103, 130581, '南宫市', '南宫', 3), (122, 103, 130582, '沙河市', '沙河', 3), (123, 37, 130600, '保定市', '保定', 2), (124, 123, 130602, '竞秀区', '竞秀', 3), (125, 123, 130606, '莲池区', '莲池', 3), (126, 123, 130607, '满城区', '满城', 3), (127, 123, 130608, '清苑区', '清苑', 3), (128, 123, 130609, '徐水区', '徐水', 3), (129, 123, 130623, '涞水县', '涞水', 3), (130, 123, 130624, '阜平县', '阜平', 3), (131, 123, 130626, '定兴县', '定兴', 3), (132, 123, 130627, '唐县', '唐县', 3), (133, 123, 130628, '高阳县', '高阳', 3), (134, 123, 130629, '容城县', '容城', 3), (135, 123, 130630, '涞源县', '涞源', 3), (136, 123, 130631, '望都县', '望都', 3), (137, 123, 130632, '安新县', '安新', 3), (138, 123, 130633, '易县', '易县', 3), (139, 123, 130634, '曲阳县', '曲阳', 3), (140, 123, 130635, '蠡县', '蠡县', 3), (141, 123, 130636, '顺平县', '顺平', 3), (142, 123, 130637, '博野县', '博野', 3), (143, 123, 130638, '雄县', '雄县', 3), (144, 123, 130681, '涿州市', '涿州', 3), (145, 123, 130682, '定州市', '定州', 3), (146, 123, 130683, '安国市', '安国', 3), (147, 123, 130684, '高碑店市', '高碑店', 3), (148, 37, 130700, '张家口市', '张家口', 2), (149, 148, 130702, '桥东区', '桥东', 3), (150, 148, 130703, '桥西区', '桥西', 3), (151, 148, 130705, '宣化区', '宣化', 3), (152, 148, 130706, '下花园区', '下花园', 3), (153, 148, 130708, '万全区', '万全', 3), (154, 148, 130709, '崇礼区', '崇礼', 3), (155, 148, 130722, '张北县', '张北', 3), (156, 148, 130723, '康保县', '康保', 3), (157, 148, 130724, '沽源县', '沽源', 3), (158, 148, 130725, '尚义县', '尚义', 3), (159, 148, 130726, '蔚县', '蔚县', 3), (160, 148, 130727, '阳原县', '阳原', 3), (161, 148, 130728, '怀安县', '怀安', 3), (162, 148, 130730, '怀来县', '怀来', 3), (163, 148, 130731, '涿鹿县', '涿鹿', 3), (164, 148, 130732, '赤城县', '赤城', 3), (165, 37, 130800, '承德市', '承德', 2), (166, 165, 130802, '双桥区', '双桥', 3), (167, 165, 130803, '双滦区', '双滦', 3), (168, 165, 130804, '鹰手营子矿区', '鹰手营子矿', 3), (169, 165, 130821, '承德县', '承德', 3), (170, 165, 130822, '兴隆县', '兴隆', 3), (171, 165, 130824, '滦平县', '滦平', 3), (172, 165, 130825, '隆化县', '隆化', 3), (173, 165, 130826, '丰宁满族自治县', '丰宁', 3), (174, 165, 130827, '宽城满族自治县', '宽城', 3), (175, 165, 130828, '围场满族蒙古族自治县', '围场', 3), (176, 165, 130881, '平泉市', '平泉', 3), (177, 37, 130900, '沧州市', '沧州', 2), (178, 177, 130902, '新华区', '新华', 3), (179, 177, 130903, '运河区', '运河', 3), (180, 177, 130921, '沧县', '沧县', 3), (181, 177, 130922, '青县', '青县', 3), (182, 177, 130923, '东光县', '东光', 3), (183, 177, 130924, '海兴县', '海兴', 3), (184, 177, 130925, '盐山县', '盐山', 3), (185, 177, 130926, '肃宁县', '肃宁', 3), (186, 177, 130927, '南皮县', '南皮', 3), (187, 177, 130928, '吴桥县', '吴桥', 3), (188, 177, 130929, '献县', '献县', 3), (189, 177, 130930, '孟村回族自治县', '孟村', 3), (190, 177, 130981, '泊头市', '泊头', 3), (191, 177, 130982, '任丘市', '任丘', 3), (192, 177, 130983, '黄骅市', '黄骅', 3), (193, 177, 130984, '河间市', '河间', 3), (194, 37, 131000, '廊坊市', '廊坊', 2), (195, 194, 131002, '安次区', '安次', 3), (196, 194, 131003, '广阳区', '广阳', 3), (197, 194, 131022, '固安县', '固安', 3), (198, 194, 131023, '永清县', '永清', 3), (199, 194, 131024, '香河县', '香河', 3), (200, 194, 131025, '大城县', '大城', 3), (201, 194, 131026, '文安县', '文安', 3), (202, 194, 131028, '大厂回族自治县', '大厂', 3), (203, 194, 131081, '霸州市', '霸州', 3), (204, 194, 131082, '三河市', '三河', 3), (205, 37, 131100, '衡水市', '衡水', 2), (206, 205, 131102, '桃城区', '桃城', 3), (207, 205, 131103, '冀州区', '冀州', 3), (208, 205, 131121, '枣强县', '枣强', 3), (209, 205, 131122, '武邑县', '武邑', 3), (210, 205, 131123, '武强县', '武强', 3), (211, 205, 131124, '饶阳县', '饶阳', 3), (212, 205, 131125, '安平县', '安平', 3), (213, 205, 131126, '故城县', '故城', 3), (214, 205, 131127, '景县', '景县', 3), (215, 205, 131128, '阜城县', '阜城', 3), (216, 205, 131182, '深州市', '深州', 3), (217, 0, 140000, '山西省', '山西', 1), (218, 217, 140100, '太原市', '太原', 2), (219, 218, 140105, '小店区', '小店', 3), (220, 218, 140106, '迎泽区', '迎泽', 3), (221, 218, 140107, '杏花岭区', '杏花岭', 3), (222, 218, 140108, '尖草坪区', '尖草坪', 3), (223, 218, 140109, '万柏林区', '万柏', 3), (224, 218, 140110, '晋源区', '晋源', 3), (225, 218, 140121, '清徐县', '清徐', 3), (226, 218, 140122, '阳曲县', '阳曲', 3), (227, 218, 140123, '娄烦县', '娄烦', 3), (228, 218, 140181, '古交市', '古交', 3), (229, 217, 140200, '大同市', '大同', 2), (230, 229, 140202, '城区', '城区', 3), (231, 229, 140203, '矿区', '矿区', 3), (232, 229, 140211, '南郊区', '南郊', 3), (233, 229, 140212, '新荣区', '新荣', 3), (234, 229, 140221, '阳高县', '阳高', 3), (235, 229, 140222, '天镇县', '天镇', 3), (236, 229, 140223, '广灵县', '广灵', 3), (237, 229, 140224, '灵丘县', '灵丘', 3), (238, 229, 140225, '浑源县', '浑源', 3), (239, 229, 140226, '左云县', '左云', 3), (240, 229, 140227, '大同县', '大同', 3), (241, 217, 140300, '阳泉市', '阳泉', 2), (242, 241, 140302, '城区', '城区', 3), (243, 241, 140303, '矿区', '矿区', 3), (244, 241, 140311, '郊区', '郊区', 3), (245, 241, 140321, '平定县', '平定', 3), (246, 241, 140322, '盂县', '盂县', 3), (247, 217, 140400, '长治市', '长治', 2), (248, 247, 140402, '城区', '城区', 3), (249, 247, 140411, '郊区', '郊区', 3), (250, 247, 140421, '长治县', '长治', 3), (251, 247, 140423, '襄垣县', '襄垣', 3), (252, 247, 140424, '屯留县', '屯留', 3), (253, 247, 140425, '平顺县', '平顺', 3), (254, 247, 140426, '黎城县', '黎城', 3), (255, 247, 140427, '壶关县', '壶关', 3), (256, 247, 140428, '长子县', '长子', 3), (257, 247, 140429, '武乡县', '武乡', 3), (258, 247, 140430, '沁县', '沁县', 3), (259, 247, 140431, '沁源县', '沁源', 3), (260, 247, 140481, '潞城市', '潞城', 3), (261, 217, 140500, '晋城市', '晋城', 2), (262, 261, 140502, '城区', '城区', 3), (263, 261, 140521, '沁水县', '沁水', 3), (264, 261, 140522, '阳城县', '阳城', 3), (265, 261, 140524, '陵川县', '陵川', 3), (266, 261, 140525, '泽州县', '泽州', 3), (267, 261, 140581, '高平市', '高平', 3), (268, 217, 140600, '朔州市', '朔州', 2), (269, 268, 140602, '朔城区', '朔城', 3), (270, 268, 140603, '平鲁区', '平鲁', 3), (271, 268, 140621, '山阴县', '山阴', 3), (272, 268, 140622, '应县', '应县', 3), (273, 268, 140623, '右玉县', '右玉', 3), (274, 268, 140624, '怀仁县', '怀仁', 3), (275, 217, 140700, '晋中市', '晋中', 2), (276, 275, 140702, '榆次区', '榆次', 3), (277, 275, 140721, '榆社县', '榆社', 3), (278, 275, 140722, '左权县', '左权', 3), (279, 275, 140723, '和顺县', '和顺', 3), (280, 275, 140724, '昔阳县', '昔阳', 3), (281, 275, 140725, '寿阳县', '寿阳', 3), (282, 275, 140726, '太谷县', '太谷', 3), (283, 275, 140727, '祁县', '祁县', 3), (284, 275, 140728, '平遥县', '平遥', 3), (285, 275, 140729, '灵石县', '灵石', 3), (286, 275, 140781, '介休市', '介休', 3), (287, 217, 140800, '运城市', '运城', 2), (288, 287, 140802, '盐湖区', '盐湖', 3), (289, 287, 140821, '临猗县', '临猗', 3), (290, 287, 140822, '万荣县', '万荣', 3), (291, 287, 140823, '闻喜县', '闻喜', 3), (292, 287, 140824, '稷山县', '稷山', 3), (293, 287, 140825, '新绛县', '新绛', 3), (294, 287, 140826, '绛县', '绛县', 3), (295, 287, 140827, '垣曲县', '垣曲', 3), (296, 287, 140828, '夏县', '夏县', 3), (297, 287, 140829, '平陆县', '平陆', 3), (298, 287, 140830, '芮城县', '芮城', 3), (299, 287, 140881, '永济市', '永济', 3), (300, 287, 140882, '河津市', '河津', 3), (301, 217, 140900, '忻州市', '忻州', 2), (302, 301, 140902, '忻府区', '忻府', 3), (303, 301, 140921, '定襄县', '定襄', 3), (304, 301, 140922, '五台县', '五台', 3), (305, 301, 140923, '代县', '代县', 3), (306, 301, 140924, '繁峙县', '繁峙', 3), (307, 301, 140925, '宁武县', '宁武', 3), (308, 301, 140926, '静乐县', '静乐', 3), (309, 301, 140927, '神池县', '神池', 3), (310, 301, 140928, '五寨县', '五寨', 3), (311, 301, 140929, '岢岚县', '岢岚', 3), (312, 301, 140930, '河曲县', '河曲', 3), (313, 301, 140931, '保德县', '保德', 3), (314, 301, 140932, '偏关县', '偏关', 3), (315, 301, 140981, '原平市', '原平', 3), (316, 217, 141000, '临汾市', '临汾', 2), (317, 316, 141002, '尧都区', '尧都', 3), (318, 316, 141021, '曲沃县', '曲沃', 3), (319, 316, 141022, '翼城县', '翼城', 3), (320, 316, 141023, '襄汾县', '襄汾', 3), (321, 316, 141024, '洪洞县', '洪洞', 3), (322, 316, 141025, '古县', '古县', 3), (323, 316, 141026, '安泽县', '安泽', 3), (324, 316, 141027, '浮山县', '浮山', 3), (325, 316, 141028, '吉县', '吉县', 3), (326, 316, 141029, '乡宁县', '乡宁', 3), (327, 316, 141030, '大宁县', '大宁', 3), (328, 316, 141031, '隰县', '隰县', 3), (329, 316, 141032, '永和县', '永和', 3), (330, 316, 141033, '蒲县', '蒲县', 3), (331, 316, 141034, '汾西县', '汾西', 3), (332, 316, 141081, '侯马市', '侯马', 3), (333, 316, 141082, '霍州市', '霍州', 3), (334, 217, 141100, '吕梁市', '吕梁', 2), (335, 334, 141102, '离石区', '离石', 3), (336, 334, 141121, '文水县', '文水', 3), (337, 334, 141122, '交城县', '交城', 3), (338, 334, 141123, '兴县', '兴县', 3), (339, 334, 141124, '临县', '临县', 3), (340, 334, 141125, '柳林县', '柳林', 3), (341, 334, 141126, '石楼县', '石楼', 3), (342, 334, 141127, '岚县', '岚县', 3), (343, 334, 141128, '方山县', '方山', 3), (344, 334, 141129, '中阳县', '中阳', 3), (345, 334, 141130, '交口县', '交口', 3), (346, 334, 141181, '孝义市', '孝义', 3), (347, 334, 141182, '汾阳市', '汾阳', 3), (348, 0, 150000, '内蒙古自治区', '内蒙古', 1), (349, 348, 150100, '呼和浩特市', '呼和浩特', 2), (350, 349, 150102, '新城区', '新城', 3), (351, 349, 150103, '回民区', '回民', 3), (352, 349, 150104, '玉泉区', '玉泉', 3), (353, 349, 150105, '赛罕区', '赛罕', 3), (354, 349, 150121, '土默特左旗', '土默特左', 3), (355, 349, 150122, '托克托县', '托克托', 3), (356, 349, 150123, '和林格尔县', '和林格尔', 3), (357, 349, 150124, '清水河县', '清水河', 3), (358, 349, 150125, '武川县', '武川', 3), (359, 348, 150200, '包头市', '包头', 2), (360, 359, 150202, '东河区', '东河', 3), (361, 359, 150203, '昆都仑区', '昆都仑', 3), (362, 359, 150204, '青山区', '青山', 3), (363, 359, 150205, '石拐区', '石拐', 3), (364, 359, 150206, '白云鄂博矿区', '白云鄂博矿', 3), (365, 359, 150207, '九原区', '九原', 3), (366, 359, 150221, '土默特右旗', '土默特右', 3), (367, 359, 150222, '固阳县', '固阳', 3), (368, 359, 150223, '达尔罕茂明安联合旗', '达尔罕茂明安联合', 3), (369, 348, 150300, '乌海市', '乌海', 2), (370, 369, 150302, '海勃湾区', '海勃湾', 3), (371, 369, 150303, '海南区', '海南', 3), (372, 369, 150304, '乌达区', '乌达', 3), (373, 348, 150400, '赤峰市', '赤峰', 2), (374, 373, 150402, '红山区', '红山', 3), (375, 373, 150403, '元宝山区', '元宝山', 3), (376, 373, 150404, '松山区', '松山', 3), (377, 373, 150421, '阿鲁科尔沁旗', '阿鲁科尔沁', 3), (378, 373, 150422, '巴林左旗', '巴林左', 3), (379, 373, 150423, '巴林右旗', '巴林右', 3), (380, 373, 150424, '林西县', '林西', 3), (381, 373, 150425, '克什克腾旗', '克什克腾', 3), (382, 373, 150426, '翁牛特旗', '翁牛特', 3), (383, 373, 150428, '喀喇沁旗', '喀喇沁', 3), (384, 373, 150429, '宁城县', '宁城', 3), (385, 373, 150430, '敖汉旗', '敖汉', 3), (386, 348, 150500, '通辽市', '通辽', 2), (387, 386, 150502, '科尔沁区', '科尔沁', 3), (388, 386, 150521, '科尔沁左翼中旗', '科尔沁左翼中', 3), (389, 386, 150522, '科尔沁左翼后旗', '科尔沁左翼后', 3), (390, 386, 150523, '开鲁县', '开鲁', 3), (391, 386, 150524, '库伦旗', '库伦', 3), (392, 386, 150525, '奈曼旗', '奈曼', 3), (393, 386, 150526, '扎鲁特旗', '扎鲁特', 3), (394, 386, 150581, '霍林郭勒市', '霍林郭勒', 3), (395, 348, 150600, '鄂尔多斯市', '鄂尔多斯', 2), (396, 395, 150602, '东胜区', '东胜', 3), (397, 395, 150603, '康巴什区', '康巴什', 3), (398, 395, 150621, '达拉特旗', '达拉特', 3), (399, 395, 150622, '准格尔旗', '准格尔', 3), (400, 395, 150623, '鄂托克前旗', '鄂托克前', 3), (401, 395, 150624, '鄂托克旗', '鄂托克', 3), (402, 395, 150625, '杭锦旗', '杭锦', 3), (403, 395, 150626, '乌审旗', '乌审', 3), (404, 395, 150627, '伊金霍洛旗', '伊金霍洛', 3), (405, 348, 150700, '呼伦贝尔市', '呼伦贝尔', 2), (406, 405, 150702, '海拉尔区', '海拉尔', 3), (407, 405, 150703, '扎赉诺尔区', '扎赉特', 3), (408, 405, 150721, '阿荣旗', '阿荣', 3), (409, 405, 150722, '莫力达瓦达斡尔族自治旗', '莫力达瓦', 3), (410, 405, 150723, '鄂伦春自治旗', '鄂伦春', 3), (411, 405, 150724, '鄂温克族自治旗', '鄂温克', 3), (412, 405, 150725, '陈巴尔虎旗', '陈巴尔虎', 3), (413, 405, 150726, '新巴尔虎左旗', '新巴尔虎左', 3), (414, 405, 150727, '新巴尔虎右旗', '新巴尔虎右', 3), (415, 405, 150781, '满洲里市', '满洲里', 3), (416, 405, 150782, '牙克石市', '牙克石', 3), (417, 405, 150783, '扎兰屯市', '扎兰屯', 3), (418, 405, 150784, '额尔古纳市', '额尔古纳', 3), (419, 405, 150785, '根河市', '根河', 3), (420, 348, 150800, '巴彦淖尔市', '巴彦淖尔', 2), (421, 420, 150802, '临河区', '临河', 3), (422, 420, 150821, '五原县', '五原', 3), (423, 420, 150822, '磴口县', '磴口', 3), (424, 420, 150823, '乌拉特前旗', '乌拉特前', 3), (425, 420, 150824, '乌拉特中旗', '乌拉特中', 3), (426, 420, 150825, '乌拉特后旗', '乌拉特后', 3), (427, 420, 150826, '杭锦后旗', '杭锦后', 3), (428, 348, 150900, '乌兰察布市', '乌兰察布', 2), (429, 428, 150902, '集宁区', '集宁', 3), (430, 428, 150921, '卓资县', '卓资', 3), (431, 428, 150922, '化德县', '化德', 3), (432, 428, 150923, '商都县', '商都', 3), (433, 428, 150924, '兴和县', '兴和', 3), (434, 428, 150925, '凉城县', '凉城', 3), (435, 428, 150926, '察哈尔右翼前旗', '察哈尔右翼前', 3), (436, 428, 150927, '察哈尔右翼中旗', '察哈尔右翼中', 3), (437, 428, 150928, '察哈尔右翼后旗', '察哈尔右翼后', 3), (438, 428, 150929, '四子王旗', '四子王', 3), (439, 428, 150981, '丰镇市', '丰镇', 3), (440, 348, 152200, '兴安盟', '兴安', 2), (441, 440, 152201, '乌兰浩特市', '乌兰浩特', 3), (442, 440, 152202, '阿尔山市', '阿尔山', 3), (443, 440, 152221, '科尔沁右翼前旗', '科尔沁右翼前', 3), (444, 440, 152222, '科尔沁右翼中旗', '科尔沁右翼中', 3), (445, 440, 152223, '扎赉特旗', '扎赉特', 3), (446, 440, 152224, '突泉县', '突泉', 3), (447, 348, 152500, '锡林郭勒盟', '锡林郭勒', 2), (448, 447, 152501, '二连浩特市', '二连浩特', 3), (449, 447, 152502, '锡林浩特市', '锡林浩特', 3), (450, 447, 152522, '阿巴嘎旗', '阿巴嘎', 3), (451, 447, 152523, '苏尼特左旗', '苏尼特左', 3), (452, 447, 152524, '苏尼特右旗', '苏尼特右', 3), (453, 447, 152525, '东乌珠穆沁旗', '东乌珠穆沁', 3), (454, 447, 152526, '西乌珠穆沁旗', '西乌珠穆沁', 3), (455, 447, 152527, '太仆寺旗', '太仆寺', 3), (456, 447, 152528, '镶黄旗', '镶黄', 3), (457, 447, 152529, '正镶白旗', '正镶白', 3), (458, 447, 152530, '正蓝旗', '正蓝', 3), (459, 447, 152531, '多伦县', '多伦', 3), (460, 348, 152900, '阿拉善盟', '阿拉善', 2), (461, 460, 152921, '阿拉善左旗', '阿拉善左', 3), (462, 460, 152922, '阿拉善右旗', '阿拉善右', 3), (463, 460, 152923, '额济纳旗', '额济纳', 3), (464, 0, 210000, '辽宁省', '辽宁', 1), (465, 464, 210100, '沈阳市', '沈阳', 2), (466, 465, 210102, '和平区', '和平', 3), (467, 465, 210103, '沈河区', '沈河', 3), (468, 465, 210104, '大东区', '大东', 3), (469, 465, 210105, '皇姑区', '皇姑', 3), (470, 465, 210106, '铁西区', '铁西', 3), (471, 465, 210111, '苏家屯区', '苏家屯', 3), (472, 465, 210112, '浑南区', '东陵', 3), (473, 465, 210113, '沈北新区', '沈北', 3), (474, 465, 210114, '于洪区', '于洪', 3), (475, 465, 210115, '辽中区', '辽中', 3), (476, 465, 210123, '康平县', '康平', 3), (477, 465, 210124, '法库县', '法库', 3), (478, 465, 210181, '新民市', '新民', 3), (479, 464, 210200, '大连市', '大连', 2), (480, 479, 210202, '中山区', '中山', 3), (481, 479, 210203, '西岗区', '西岗', 3), (482, 479, 210204, '沙河口区', '沙河口', 3), (483, 479, 210211, '甘井子区', '甘井子', 3), (484, 479, 210212, '旅顺口区', '旅顺口', 3), (485, 479, 210213, '金州区', '金州', 3), (486, 479, 210214, '普兰店区', '普兰店', 3), (487, 479, 210224, '长海县', '长海', 3), (488, 479, 210281, '瓦房店市', '瓦房店', 3), (489, 479, 210283, '庄河市', '庄河', 3), (490, 464, 210300, '鞍山市', '鞍山', 2), (491, 490, 210302, '铁东区', '铁东', 3), (492, 490, 210303, '铁西区', '铁西', 3), (493, 490, 210304, '立山区', '立山', 3), (494, 490, 210311, '千山区', '千山', 3), (495, 490, 210321, '台安县', '台安', 3), (496, 490, 210323, '岫岩满族自治县', '岫岩', 3), (497, 490, 210381, '海城市', '海城', 3), (498, 464, 210400, '抚顺市', '抚顺', 2), (499, 498, 210402, '新抚区', '新抚', 3), (500, 498, 210403, '东洲区', '东洲', 3), (501, 498, 210404, '望花区', '望花', 3), (502, 498, 210411, '顺城区', '顺城', 3), (503, 498, 210421, '抚顺县', '抚顺', 3), (504, 498, 210422, '新宾满族自治县', '新宾', 3), (505, 498, 210423, '清原满族自治县', '清原', 3), (506, 464, 210500, '本溪市', '本溪', 2), (507, 506, 210502, '平山区', '平山', 3), (508, 506, 210503, '溪湖区', '溪湖', 3), (509, 506, 210504, '明山区', '明山', 3), (510, 506, 210505, '南芬区', '南芬', 3), (511, 506, 210521, '本溪满族自治县', '本溪', 3), (512, 506, 210522, '桓仁满族自治县', '桓仁', 3), (513, 464, 210600, '丹东市', '丹东', 2), (514, 513, 210602, '元宝区', '元宝', 3), (515, 513, 210603, '振兴区', '振兴', 3), (516, 513, 210604, '振安区', '振安', 3), (517, 513, 210624, '宽甸满族自治县', '宽甸', 3), (518, 513, 210681, '东港市', '东港', 3), (519, 513, 210682, '凤城市', '凤城', 3), (520, 464, 210700, '锦州市', '锦州', 2), (521, 520, 210702, '古塔区', '古塔', 3), (522, 520, 210703, '凌河区', '凌河', 3), (523, 520, 210711, '太和区', '太和', 3), (524, 520, 210726, '黑山县', '黑山', 3), (525, 520, 210727, '义县', '义县', 3), (526, 520, 210781, '凌海市', '凌海', 3), (527, 520, 210782, '北镇市', '北镇', 3), (528, 464, 210800, '营口市', '营口', 2), (529, 528, 210802, '站前区', '站前', 3), (530, 528, 210803, '西市区', '西市', 3), (531, 528, 210804, '鲅鱼圈区', '鲅鱼圈', 3), (532, 528, 210811, '老边区', '老边', 3), (533, 528, 210881, '盖州市', '盖州', 3), (534, 528, 210882, '大石桥市', '大石桥', 3), (535, 464, 210900, '阜新市', '阜新', 2), (536, 535, 210902, '海州区', '海州', 3), (537, 535, 210903, '新邱区', '新邱', 3), (538, 535, 210904, '太平区', '太平', 3), (539, 535, 210905, '清河门区', '清河门', 3), (540, 535, 210911, '细河区', '细河', 3), (541, 535, 210921, '阜新蒙古族自治县', '阜新', 3), (542, 535, 210922, '彰武县', '彰武', 3), (543, 464, 211000, '辽阳市', '辽阳', 2), (544, 543, 211002, '白塔区', '白塔', 3), (545, 543, 211003, '文圣区', '文圣', 3), (546, 543, 211004, '宏伟区', '宏伟', 3), (547, 543, 211005, '弓长岭区', '弓长岭', 3), (548, 543, 211011, '太子河区', '太子河', 3), (549, 543, 211021, '辽阳县', '辽阳', 3), (550, 543, 211081, '灯塔市', '灯塔', 3), (551, 464, 211100, '盘锦市', '盘锦', 2), (552, 551, 211102, '双台子区', '双台子', 3), (553, 551, 211103, '兴隆台区', '兴隆台', 3), (554, 551, 211104, '大洼区', '大洼', 3), (555, 551, 211122, '盘山县', '盘山', 3), (556, 464, 211200, '铁岭市', '铁岭', 2), (557, 556, 211202, '银州区', '银州', 3), (558, 556, 211204, '清河区', '清河', 3), (559, 556, 211221, '铁岭县', '铁岭', 3), (560, 556, 211223, '西丰县', '西丰', 3), (561, 556, 211224, '昌图县', '昌图', 3), (562, 556, 211281, '调兵山市', '调兵山', 3), (563, 556, 211282, '开原市', '开原', 3), (564, 464, 211300, '朝阳市', '朝阳', 2), (565, 564, 211302, '双塔区', '双塔', 3), (566, 564, 211303, '龙城区', '龙城', 3), (567, 564, 211321, '朝阳县', '朝阳', 3), (568, 564, 211322, '建平县', '建平', 3), (569, 564, 211324, '喀喇沁左翼蒙古族自治县', '喀喇', 3), (570, 564, 211381, '北票市', '北票', 3), (571, 564, 211382, '凌源市', '凌源', 3), (572, 464, 211400, '葫芦岛市', '葫芦岛', 2), (573, 572, 211402, '连山区', '连山', 3), (574, 572, 211403, '龙港区', '龙港', 3), (575, 572, 211404, '南票区', '南票', 3), (576, 572, 211421, '绥中县', '绥中', 3), (577, 572, 211422, '建昌县', '建昌', 3), (578, 572, 211481, '兴城市', '兴城', 3), (579, 0, 220000, '吉林省', '吉林', 1), (580, 579, 220100, '长春市', '长春', 2), (581, 580, 220102, '南关区', '南关', 3), (582, 580, 220103, '宽城区', '宽城', 3), (583, 580, 220104, '朝阳区', '朝阳', 3), (584, 580, 220105, '二道区', '二道', 3), (585, 580, 220106, '绿园区', '绿园', 3), (586, 580, 220112, '双阳区', '双阳', 3), (587, 580, 220113, '九台区', '九台', 3), (588, 580, 220122, '农安县', '农安', 3), (589, 580, 220182, '榆树市', '榆树', 3), (590, 580, 220183, '德惠市', '德惠', 3), (591, 579, 220200, '吉林市', '吉林', 2), (592, 591, 220202, '昌邑区', '昌邑', 3), (593, 591, 220203, '龙潭区', '龙潭', 3), (594, 591, 220204, '船营区', '船营', 3), (595, 591, 220211, '丰满区', '丰满', 3), (596, 591, 220221, '永吉县', '永吉', 3), (597, 591, 220281, '蛟河市', '蛟河', 3), (598, 591, 220282, '桦甸市', '桦甸', 3), (599, 591, 220283, '舒兰市', '舒兰', 3), (600, 591, 220284, '磐石市', '磐石', 3), (601, 579, 220300, '四平市', '四平', 2), (602, 601, 220302, '铁西区', '铁西', 3), (603, 601, 220303, '铁东区', '铁东', 3), (604, 601, 220322, '梨树县', '梨树', 3), (605, 601, 220323, '伊通满族自治县', '伊通', 3), (606, 601, 220381, '公主岭市', '公主岭', 3), (607, 601, 220382, '双辽市', '双辽', 3), (608, 579, 220400, '辽源市', '辽源', 2), (609, 608, 220402, '龙山区', '龙山', 3), (610, 608, 220403, '西安区', '西安', 3), (611, 608, 220421, '东丰县', '东丰', 3), (612, 608, 220422, '东辽县', '东辽', 3), (613, 579, 220500, '通化市', '通化', 2), (614, 613, 220502, '东昌区', '东昌', 3), (615, 613, 220503, '二道江区', '二道江', 3), (616, 613, 220521, '通化县', '通化', 3), (617, 613, 220523, '辉南县', '辉南', 3), (618, 613, 220524, '柳河县', '柳河', 3), (619, 613, 220581, '梅河口市', '梅河口', 3), (620, 613, 220582, '集安市', '集安', 3), (621, 579, 220600, '白山市', '白山', 2), (622, 621, 220602, '浑江区', '八道江', 3), (623, 621, 220605, '江源区', '江源', 3), (624, 621, 220621, '抚松县', '抚松', 3), (625, 621, 220622, '靖宇县', '靖宇', 3), (626, 621, 220623, '长白朝鲜族自治县', '长白', 3), (627, 621, 220681, '临江市', '临江', 3), (628, 579, 220700, '松原市', '松原', 2), (629, 628, 220702, '宁江区', '宁江', 3), (630, 628, 220721, '前郭尔罗斯蒙古族自治县', '前郭', 3), (631, 628, 220722, '长岭县', '长岭', 3), (632, 628, 220723, '乾安县', '乾安', 3), (633, 628, 220781, '扶余市', '扶余', 3), (634, 579, 220800, '白城市', '白城', 2), (635, 634, 220802, '洮北区', '洮北', 3), (636, 634, 220821, '镇赉县', '镇赉', 3), (637, 634, 220822, '通榆县', '通榆', 3), (638, 634, 220881, '洮南市', '洮南', 3), (639, 634, 220882, '大安市', '大安', 3), (640, 579, 222400, '延边朝鲜族自治州', '延边', 2), (641, 640, 222401, '延吉市', '延吉', 3), (642, 640, 222402, '图们市', '图们', 3), (643, 640, 222403, '敦化市', '敦化', 3), (644, 640, 222404, '珲春市', '珲春', 3), (645, 640, 222405, '龙井市', '龙井', 3), (646, 640, 222406, '和龙市', '和龙', 3), (647, 640, 222424, '汪清县', '汪清', 3), (648, 640, 222426, '安图县', '安图', 3), (649, 0, 230000, '黑龙江省', '黑龙江', 1), (650, 649, 230100, '哈尔滨市', '哈尔滨', 2), (651, 650, 230102, '道里区', '道里', 3), (652, 650, 230103, '南岗区', '南岗', 3), (653, 650, 230104, '道外区', '道外', 3), (654, 650, 230108, '平房区', '平房', 3), (655, 650, 230109, '松北区', '松北', 3), (656, 650, 230110, '香坊区', '香坊', 3), (657, 650, 230111, '呼兰区', '呼兰', 3), (658, 650, 230112, '阿城区', '阿城', 3), (659, 650, 230113, '双城区', '双城', 3), (660, 650, 230123, '依兰县', '依兰', 3), (661, 650, 230124, '方正县', '方正', 3), (662, 650, 230125, '宾县', '宾县', 3), (663, 650, 230126, '巴彦县', '巴彦', 3), (664, 650, 230127, '木兰县', '木兰', 3), (665, 650, 230128, '通河县', '通河', 3), (666, 650, 230129, '延寿县', '延寿', 3), (667, 650, 230183, '尚志市', '尚志', 3), (668, 650, 230184, '五常市', '五常', 3), (669, 649, 230200, '齐齐哈尔市', '齐齐哈尔', 2), (670, 669, 230202, '龙沙区', '龙沙', 3), (671, 669, 230203, '建华区', '建华', 3), (672, 669, 230204, '铁锋区', '铁锋', 3), (673, 669, 230205, '昂昂溪区', '昂昂溪', 3), (674, 669, 230206, '富拉尔基区', '富拉尔基', 3), (675, 669, 230207, '碾子山区', '碾子山', 3), (676, 669, 230208, '梅里斯达斡尔族区', '梅里斯达斡尔族', 3), (677, 669, 230221, '龙江县', '龙江', 3), (678, 669, 230223, '依安县', '依安', 3), (679, 669, 230224, '泰来县', '泰来', 3), (680, 669, 230225, '甘南县', '甘南', 3), (681, 669, 230227, '富裕县', '富裕', 3), (682, 669, 230229, '克山县', '克山', 3), (683, 669, 230230, '克东县', '克东', 3), (684, 669, 230231, '拜泉县', '拜泉', 3), (685, 669, 230281, '讷河市', '讷河', 3), (686, 649, 230300, '鸡西市', '鸡西', 2), (687, 686, 230302, '鸡冠区', '鸡冠', 3), (688, 686, 230303, '恒山区', '恒山', 3), (689, 686, 230304, '滴道区', '滴道', 3), (690, 686, 230305, '梨树区', '梨树', 3), (691, 686, 230306, '城子河区', '城子河', 3), (692, 686, 230307, '麻山区', '麻山', 3), (693, 686, 230321, '鸡东县', '鸡东', 3), (694, 686, 230381, '虎林市', '虎林', 3), (695, 686, 230382, '密山市', '密山', 3), (696, 649, 230400, '鹤岗市', '鹤岗', 2), (697, 696, 230402, '向阳区', '向阳', 3), (698, 696, 230403, '工农区', '工农', 3), (699, 696, 230404, '南山区', '南山', 3), (700, 696, 230405, '兴安区', '兴安', 3), (701, 696, 230406, '东山区', '东山', 3), (702, 696, 230407, '兴山区', '兴山', 3), (703, 696, 230421, '萝北县', '萝北', 3), (704, 696, 230422, '绥滨县', '绥滨', 3), (705, 649, 230500, '双鸭山市', '双鸭山', 2), (706, 705, 230502, '尖山区', '尖山', 3), (707, 705, 230503, '岭东区', '岭东', 3), (708, 705, 230505, '四方台区', '四方台', 3), (709, 705, 230506, '宝山区', '宝山', 3), (710, 705, 230521, '集贤县', '集贤', 3), (711, 705, 230522, '友谊县', '友谊', 3), (712, 705, 230523, '宝清县', '宝清', 3), (713, 705, 230524, '饶河县', '饶河', 3), (714, 649, 230600, '大庆市', '大庆', 2), (715, 714, 230602, '萨尔图区', '萨尔图', 3), (716, 714, 230603, '龙凤区', '龙凤', 3), (717, 714, 230604, '让胡路区', '让胡路', 3), (718, 714, 230605, '红岗区', '红岗', 3), (719, 714, 230606, '大同区', '大同', 3), (720, 714, 230621, '肇州县', '肇州', 3), (721, 714, 230622, '肇源县', '肇源', 3), (722, 714, 230623, '林甸县', '林甸', 3), (723, 714, 230624, '杜尔伯特蒙古族自治县', '杜尔伯特', 3), (724, 649, 230700, '伊春市', '伊春', 2), (725, 724, 230702, '伊春区', '伊春', 3), (726, 724, 230703, '南岔区', '南岔', 3), (727, 724, 230704, '友好区', '友好', 3), (728, 724, 230705, '西林区', '西林', 3), (729, 724, 230706, '翠峦区', '翠峦', 3), (730, 724, 230707, '新青区', '新青', 3), (731, 724, 230708, '美溪区', '美溪', 3), (732, 724, 230709, '金山屯区', '金山屯', 3), (733, 724, 230710, '五营区', '五营', 3), (734, 724, 230711, '乌马河区', '乌马河', 3), (735, 724, 230712, '汤旺河区', '汤旺河', 3), (736, 724, 230713, '带岭区', '带岭', 3), (737, 724, 230714, '乌伊岭区', '乌伊岭', 3), (738, 724, 230715, '红星区', '红星', 3), (739, 724, 230716, '上甘岭区', '上甘岭', 3), (740, 724, 230722, '嘉荫县', '嘉荫', 3), (741, 724, 230781, '铁力市', '铁力', 3), (742, 649, 230800, '佳木斯市', '佳木斯', 2), (743, 742, 230803, '向阳区', '向阳', 3), (744, 742, 230804, '前进区', '前进', 3), (745, 742, 230805, '东风区', '东风', 3), (746, 742, 230811, '郊区', '郊区', 3), (747, 742, 230822, '桦南县', '桦南', 3), (748, 742, 230826, '桦川县', '桦川', 3), (749, 742, 230828, '汤原县', '汤原', 3), (750, 742, 230881, '同江市', '同江', 3), (751, 742, 230882, '富锦市', '富锦', 3), (752, 742, 230883, '抚远市', '抚远', 3), (753, 649, 230900, '七台河市', '七台河', 2), (754, 753, 230902, '新兴区', '新兴', 3), (755, 753, 230903, '桃山区', '桃山', 3), (756, 753, 230904, '茄子河区', '茄子河', 3), (757, 753, 230921, '勃利县', '勃利', 3), (758, 649, 231000, '牡丹江市', '牡丹江', 2), (759, 758, 231002, '东安区', '东安', 3), (760, 758, 231003, '阳明区', '阳明', 3), (761, 758, 231004, '爱民区', '爱民', 3), (762, 758, 231005, '西安区', '西安', 3), (763, 758, 231025, '林口县', '林口', 3), (764, 758, 231081, '绥芬河市', '绥芬河', 3), (765, 758, 231083, '海林市', '海林', 3), (766, 758, 231084, '宁安市', '宁安', 3), (767, 758, 231085, '穆棱市', '穆棱', 3), (768, 758, 231086, '东宁市', '东宁', 3), (769, 649, 231100, '黑河市', '黑河', 2), (770, 769, 231102, '爱辉区', '爱辉', 3), (771, 769, 231121, '嫩江县', '嫩江', 3), (772, 769, 231123, '逊克县', '逊克', 3), (773, 769, 231124, '孙吴县', '孙吴', 3), (774, 769, 231181, '北安市', '北安', 3), (775, 769, 231182, '五大连池市', '五大连池', 3), (776, 649, 231200, '绥化市', '绥化', 2), (777, 776, 231202, '北林区', '北林', 3), (778, 776, 231221, '望奎县', '望奎', 3), (779, 776, 231222, '兰西县', '兰西', 3), (780, 776, 231223, '青冈县', '青冈', 3), (781, 776, 231224, '庆安县', '庆安', 3), (782, 776, 231225, '明水县', '明水', 3), (783, 776, 231226, '绥棱县', '绥棱', 3), (784, 776, 231281, '安达市', '安达', 3), (785, 776, 231282, '肇东市', '肇东', 3), (786, 776, 231283, '海伦市', '海伦', 3), (787, 649, 232700, '大兴安岭地区', '大兴安岭', 2), (788, 787, 232721, '呼玛县', '呼玛', 3), (789, 787, 232722, '塔河县', '塔河', 3), (790, 787, 232723, '漠河县', '漠河', 3), (791, 0, 310000, '上海市', '上海', 1), (792, 791, 310100, '上海市', '上海', 2), (793, 792, 310101, '黄浦区', '黄浦', 3), (794, 792, 310104, '徐汇区', '徐汇', 3), (795, 792, 310105, '长宁区', '长宁', 3), (796, 792, 310106, '静安区', '静安', 3), (797, 792, 310107, '普陀区', '普陀', 3), (798, 792, 310109, '虹口区', '虹口', 3), (799, 792, 310110, '杨浦区', '杨浦', 3), (800, 792, 310112, '闵行区', '闵行', 3), (801, 792, 310113, '宝山区', '宝山', 3), (802, 792, 310114, '嘉定区', '嘉定', 3), (803, 792, 310115, '浦东新区', '浦东', 3), (804, 792, 310116, '金山区', '金山', 3), (805, 792, 310117, '松江区', '松江', 3), (806, 792, 310118, '青浦区', '青浦', 3), (807, 792, 310120, '奉贤区', '奉贤', 3), (808, 792, 310151, '崇明区', '崇明', 3), (809, 0, 320000, '江苏省', '江苏', 1), (810, 809, 320100, '南京市', '南京', 2), (811, 810, 320102, '玄武区', '玄武', 3), (812, 810, 320104, '秦淮区', '秦淮', 3), (813, 810, 320105, '建邺区', '建邺', 3), (814, 810, 320106, '鼓楼区', '鼓楼', 3), (815, 810, 320111, '浦口区', '浦口', 3), (816, 810, 320113, '栖霞区', '栖霞', 3), (817, 810, 320114, '雨花台区', '雨花台', 3), (818, 810, 320115, '江宁区', '江宁', 3), (819, 810, 320116, '六合区', '六合', 3), (820, 810, 320117, '溧水区', '溧水', 3), (821, 810, 320118, '高淳区', '高淳', 3), (822, 809, 320200, '无锡市', '无锡', 2), (823, 822, 320205, '锡山区', '锡山', 3), (824, 822, 320206, '惠山区', '惠山', 3), (825, 822, 320211, '滨湖区', '滨湖', 3), (826, 822, 320213, '梁溪区', '梁溪', 3), (827, 822, 320214, '新吴区', '新吴', 3), (828, 822, 320281, '江阴市', '江阴', 3), (829, 822, 320282, '宜兴市', '宜兴', 3), (830, 809, 320300, '徐州市', '徐州', 2), (831, 830, 320302, '鼓楼区', '鼓楼', 3), (832, 830, 320303, '云龙区', '云龙', 3), (833, 830, 320305, '贾汪区', '贾汪', 3), (834, 830, 320311, '泉山区', '泉山', 3), (835, 830, 320312, '铜山区', '铜山', 3), (836, 830, 320321, '丰县', '丰县', 3), (837, 830, 320322, '沛县', '沛县', 3), (838, 830, 320324, '睢宁县', '睢宁', 3), (839, 830, 320381, '新沂市', '新沂', 3), (840, 830, 320382, '邳州市', '邳州', 3), (841, 809, 320400, '常州市', '常州', 2), (842, 841, 320402, '天宁区', '天宁', 3), (843, 841, 320404, '钟楼区', '钟楼', 3), (844, 841, 320411, '新北区', '新北', 3), (845, 841, 320412, '武进区', '武进', 3), (846, 841, 320413, '金坛区', '金坛', 3), (847, 841, 320481, '溧阳市', '溧阳', 3), (848, 809, 320500, '苏州市', '苏州', 2), (849, 848, 320505, '虎丘区', '虎丘', 3), (850, 848, 320506, '吴中区', '吴中', 3), (851, 848, 320507, '相城区', '相城', 3), (852, 848, 320508, '姑苏区', '姑苏', 3), (853, 848, 320509, '吴江区', '吴江', 3), (854, 848, 320581, '常熟市', '常熟', 3), (855, 848, 320582, '张家港市', '张家港', 3), (856, 848, 320583, '昆山市', '昆山', 3), (857, 848, 320585, '太仓市', '太仓', 3), (858, 809, 320600, '南通市', '南通', 2), (859, 858, 320602, '崇川区', '崇川', 3), (860, 858, 320611, '港闸区', '港闸', 3), (861, 858, 320612, '通州区', '通州', 3), (862, 858, 320621, '海安县', '海安', 3), (863, 858, 320623, '如东县', '如东', 3), (864, 858, 320681, '启东市', '启东', 3), (865, 858, 320682, '如皋市', '如皋', 3), (866, 858, 320684, '海门市', '海门', 3), (867, 809, 320700, '连云港市', '连云港', 2), (868, 867, 320703, '连云区', '连云', 3), (869, 867, 320706, '海州区', '海州', 3), (870, 867, 320707, '赣榆区', '赣榆', 3), (871, 867, 320722, '东海县', '东海', 3), (872, 867, 320723, '灌云县', '灌云', 3), (873, 867, 320724, '灌南县', '灌南', 3), (874, 809, 320800, '淮安市', '淮安', 2), (875, 874, 320803, '淮安区', '楚州', 3), (876, 874, 320804, '淮阴区', '淮阴', 3), (877, 874, 320812, '清江浦区', '清江浦', 3), (878, 874, 320813, '洪泽区', '洪泽', 3), (879, 874, 320826, '涟水县', '涟水', 3), (880, 874, 320830, '盱眙县', '盱眙', 3), (881, 874, 320831, '金湖县', '金湖', 3), (882, 809, 320900, '盐城市', '盐城', 2), (883, 882, 320902, '亭湖区', '亭湖', 3), (884, 882, 320903, '盐都区', '盐都', 3), (885, 882, 320904, '大丰区', '大丰', 3), (886, 882, 320921, '响水县', '响水', 3), (887, 882, 320922, '滨海县', '滨海', 3), (888, 882, 320923, '阜宁县', '阜宁', 3), (889, 882, 320924, '射阳县', '射阳', 3), (890, 882, 320925, '建湖县', '建湖', 3), (891, 882, 320981, '东台市', '东台', 3), (892, 809, 321000, '扬州市', '扬州', 2), (893, 892, 321002, '广陵区', '广陵', 3), (894, 892, 321003, '邗江区', '邗江', 3), (895, 892, 321012, '江都区', '江都', 3), (896, 892, 321023, '宝应县', '宝应', 3), (897, 892, 321081, '仪征市', '仪征', 3), (898, 892, 321084, '高邮市', '高邮', 3), (899, 809, 321100, '镇江市', '镇江', 2), (900, 899, 321102, '京口区', '京口', 3), (901, 899, 321111, '润州区', '润州', 3), (902, 899, 321112, '丹徒区', '丹徒', 3), (903, 899, 321181, '丹阳市', '丹阳', 3), (904, 899, 321182, '扬中市', '扬中', 3), (905, 899, 321183, '句容市', '句容', 3), (906, 809, 321200, '泰州市', '泰州', 2), (907, 906, 321202, '海陵区', '海陵', 3), (908, 906, 321203, '高港区', '高港', 3), (909, 906, 321204, '姜堰区', '姜堰', 3), (910, 906, 321281, '兴化市', '兴化', 3), (911, 906, 321282, '靖江市', '靖江', 3), (912, 906, 321283, '泰兴市', '泰兴', 3), (913, 809, 321300, '宿迁市', '宿迁', 2), (914, 913, 321302, '宿城区', '宿城', 3), (915, 913, 321311, '宿豫区', '宿豫', 3), (916, 913, 321322, '沭阳县', '沭阳', 3), (917, 913, 321323, '泗阳县', '泗阳', 3), (918, 913, 321324, '泗洪县', '泗洪', 3), (919, 0, 330000, '浙江省', '浙江', 1), (920, 919, 330100, '杭州市', '杭州', 2), (921, 920, 330102, '上城区', '上城', 3), (922, 920, 330103, '下城区', '下城', 3), (923, 920, 330104, '江干区', '江干', 3), (924, 920, 330105, '拱墅区', '拱墅', 3), (925, 920, 330106, '西湖区', '西湖', 3), (926, 920, 330108, '滨江区', '滨江', 3), (927, 920, 330109, '萧山区', '萧山', 3), (928, 920, 330110, '余杭区', '余杭', 3), (929, 920, 330111, '富阳区', '富阳', 3), (930, 920, 330122, '桐庐县', '桐庐', 3), (931, 920, 330127, '淳安县', '淳安', 3), (932, 920, 330182, '建德市', '建德', 3), (933, 920, 330185, '临安市', '临安', 3), (934, 919, 330200, '宁波市', '宁波', 2), (935, 934, 330203, '海曙区', '海曙', 3), (936, 934, 330205, '江北区', '江北', 3), (937, 934, 330206, '北仑区', '北仑', 3), (938, 934, 330211, '镇海区', '镇海', 3), (939, 934, 330212, '鄞州区', '鄞州', 3), (940, 934, 330213, '奉化区', '奉化', 3), (941, 934, 330225, '象山县', '象山', 3), (942, 934, 330226, '宁海县', '宁海', 3), (943, 934, 330281, '余姚市', '余姚', 3), (944, 934, 330282, '慈溪市', '慈溪', 3), (945, 919, 330300, '温州市', '温州', 2), (946, 945, 330302, '鹿城区', '鹿城', 3), (947, 945, 330303, '龙湾区', '龙湾', 3), (948, 945, 330304, '瓯海区', '瓯海', 3), (949, 945, 330305, '洞头区', '洞头', 3), (950, 945, 330324, '永嘉县', '永嘉', 3), (951, 945, 330326, '平阳县', '平阳', 3), (952, 945, 330327, '苍南县', '苍南', 3), (953, 945, 330328, '文成县', '文成', 3), (954, 945, 330329, '泰顺县', '泰顺', 3), (955, 945, 330381, '瑞安市', '瑞安', 3), (956, 945, 330382, '乐清市', '乐清', 3), (957, 919, 330400, '嘉兴市', '嘉兴', 2), (958, 957, 330402, '南湖区', '南湖', 3), (959, 957, 330411, '秀洲区', '秀洲', 3), (960, 957, 330421, '嘉善县', '嘉善', 3), (961, 957, 330424, '海盐县', '海盐', 3), (962, 957, 330481, '海宁市', '海宁', 3), (963, 957, 330482, '平湖市', '平湖', 3), (964, 957, 330483, '桐乡市', '桐乡', 3), (965, 919, 330500, '湖州市', '湖州', 2), (966, 965, 330502, '吴兴区', '吴兴', 3), (967, 965, 330503, '南浔区', '南浔', 3), (968, 965, 330521, '德清县', '德清', 3), (969, 965, 330522, '长兴县', '长兴', 3), (970, 965, 330523, '安吉县', '安吉', 3), (971, 919, 330600, '绍兴市', '绍兴', 2), (972, 971, 330602, '越城区', '越城', 3), (973, 971, 330603, '柯桥区', '柯桥', 3), (974, 971, 330604, '上虞区', '上虞', 3), (975, 971, 330624, '新昌县', '新昌', 3), (976, 971, 330681, '诸暨市', '诸暨', 3), (977, 971, 330683, '嵊州市', '嵊州', 3), (978, 919, 330700, '金华市', '金华', 2), (979, 978, 330702, '婺城区', '婺城', 3), (980, 978, 330703, '金东区', '金东', 3), (981, 978, 330723, '武义县', '武义', 3), (982, 978, 330726, '浦江县', '浦江', 3), (983, 978, 330727, '磐安县', '磐安', 3), (984, 978, 330781, '兰溪市', '兰溪', 3), (985, 978, 330782, '义乌市', '义乌', 3), (986, 978, 330783, '东阳市', '东阳', 3), (987, 978, 330784, '永康市', '永康', 3), (988, 919, 330800, '衢州市', '衢州', 2), (989, 988, 330802, '柯城区', '柯城', 3), (990, 988, 330803, '衢江区', '衢江', 3), (991, 988, 330822, '常山县', '常山', 3), (992, 988, 330824, '开化县', '开化', 3), (993, 988, 330825, '龙游县', '龙游', 3), (994, 988, 330881, '江山市', '江山', 3), (995, 919, 330900, '舟山市', '舟山', 2), (996, 995, 330902, '定海区', '定海', 3), (997, 995, 330903, '普陀区', '普陀', 3), (998, 995, 330921, '岱山县', '岱山', 3), (999, 995, 330922, '嵊泗县', '嵊泗', 3), (1000, 919, 331000, '台州市', '台州', 2), (1001, 1000, 331002, '椒江区', '椒江', 3), (1002, 1000, 331003, '黄岩区', '黄岩', 3), (1003, 1000, 331004, '路桥区', '路桥', 3), (1004, 1000, 331021, '玉环县', '玉环', 3), (1005, 1000, 331022, '三门县', '三门', 3), (1006, 1000, 331023, '天台县', '天台', 3), (1007, 1000, 331024, '仙居县', '仙居', 3), (1008, 1000, 331081, '温岭市', '温岭', 3), (1009, 1000, 331082, '临海市', '临海', 3), (1010, 919, 331100, '丽水市', '丽水', 2), (1011, 1010, 331102, '莲都区', '莲都', 3), (1012, 1010, 331121, '青田县', '青田', 3), (1013, 1010, 331122, '缙云县', '缙云', 3), (1014, 1010, 331123, '遂昌县', '遂昌', 3), (1015, 1010, 331124, '松阳县', '松阳', 3), (1016, 1010, 331125, '云和县', '云和', 3), (1017, 1010, 331126, '庆元县', '庆元', 3), (1018, 1010, 331127, '景宁畲族自治县', '景宁', 3), (1019, 1010, 331181, '龙泉市', '龙泉', 3), (1020, 0, 340000, '安徽省', '安徽', 1), (1021, 1020, 340100, '合肥市', '合肥', 2), (1022, 1021, 340102, '瑶海区', '瑶海', 3), (1023, 1021, 340103, '庐阳区', '庐阳', 3), (1024, 1021, 340104, '蜀山区', '蜀山', 3), (1025, 1021, 340111, '包河区', '包河', 3), (1026, 1021, 340121, '长丰县', '长丰', 3), (1027, 1021, 340122, '肥东县', '肥东', 3), (1028, 1021, 340123, '肥西县', '肥西', 3), (1029, 1021, 340124, '庐江县', '庐江', 3), (1030, 1021, 340181, '巢湖市', '巢湖', 3), (1031, 1020, 340200, '芜湖市', '芜湖', 2), (1032, 1031, 340202, '镜湖区', '镜湖', 3), (1033, 1031, 340203, '弋江区', '弋江', 3), (1034, 1031, 340207, '鸠江区', '鸠江', 3), (1035, 1031, 340208, '三山区', '三山', 3), (1036, 1031, 340221, '芜湖县', '芜湖', 3), (1037, 1031, 340222, '繁昌县', '繁昌', 3), (1038, 1031, 340223, '南陵县', '南陵', 3), (1039, 1031, 340225, '无为县', '无为', 3), (1040, 1020, 340300, '蚌埠市', '蚌埠', 2), (1041, 1040, 340302, '龙子湖区', '龙子湖', 3), (1042, 1040, 340303, '蚌山区', '蚌山', 3), (1043, 1040, 340304, '禹会区', '禹会', 3), (1044, 1040, 340311, '淮上区', '淮上', 3), (1045, 1040, 340321, '怀远县', '怀远', 3), (1046, 1040, 340322, '五河县', '五河', 3), (1047, 1040, 340323, '固镇县', '固镇', 3), (1048, 1020, 340400, '淮南市', '淮南', 2), (1049, 1048, 340402, '大通区', '大通', 3), (1050, 1048, 340403, '田家庵区', '田家庵', 3), (1051, 1048, 340404, '谢家集区', '谢家集', 3), (1052, 1048, 340405, '八公山区', '八公山', 3), (1053, 1048, 340406, '潘集区', '潘集', 3), (1054, 1048, 340421, '凤台县', '凤台', 3), (1055, 1048, 340422, '寿县', '寿县', 3), (1056, 1020, 340500, '马鞍山市', '马鞍山', 2), (1057, 1056, 340503, '花山区', '花山', 3), (1058, 1056, 340504, '雨山区', '雨山', 3), (1059, 1056, 340506, '博望区', '博望', 3), (1060, 1056, 340521, '当涂县', '当涂', 3), (1061, 1056, 340522, '含山县', '含山', 3), (1062, 1056, 340523, '和县', '和县', 3), (1063, 1020, 340600, '淮北市', '淮北', 2), (1064, 1063, 340602, '杜集区', '杜集', 3), (1065, 1063, 340603, '相山区', '相山', 3), (1066, 1063, 340604, '烈山区', '烈山', 3), (1067, 1063, 340621, '濉溪县', '濉溪', 3), (1068, 1020, 340700, '铜陵市', '铜陵', 2), (1069, 1068, 340705, '铜官区', '铜官山', 3), (1070, 1068, 340706, '义安区', '义安', 3), (1071, 1068, 340711, '郊区', '郊区', 3), (1072, 1068, 340722, '枞阳县', '枞阳', 3), (1073, 1020, 340800, '安庆市', '安庆', 2), (1074, 1073, 340802, '迎江区', '迎江', 3), (1075, 1073, 340803, '大观区', '大观', 3), (1076, 1073, 340811, '宜秀区', '宜秀', 3), (1077, 1073, 340822, '怀宁县', '怀宁', 3), (1078, 1073, 340824, '潜山县', '潜山', 3), (1079, 1073, 340825, '太湖县', '太湖', 3), (1080, 1073, 340826, '宿松县', '宿松', 3), (1081, 1073, 340827, '望江县', '望江', 3), (1082, 1073, 340828, '岳西县', '岳西', 3), (1083, 1073, 340881, '桐城市', '桐城', 3), (1084, 1020, 341000, '黄山市', '黄山', 2), (1085, 1084, 341002, '屯溪区', '屯溪', 3), (1086, 1084, 341003, '黄山区', '黄山', 3), (1087, 1084, 341004, '徽州区', '徽州', 3), (1088, 1084, 341021, '歙县', '歙县', 3), (1089, 1084, 341022, '休宁县', '休宁', 3), (1090, 1084, 341023, '黟县', '黟县', 3), (1091, 1084, 341024, '祁门县', '祁门', 3), (1092, 1020, 341100, '滁州市', '滁州', 2), (1093, 1092, 341102, '琅琊区', '琅琊', 3), (1094, 1092, 341103, '南谯区', '南谯', 3), (1095, 1092, 341122, '来安县', '来安', 3), (1096, 1092, 341124, '全椒县', '全椒', 3), (1097, 1092, 341125, '定远县', '定远', 3), (1098, 1092, 341126, '凤阳县', '凤阳', 3), (1099, 1092, 341181, '天长市', '天长', 3), (1100, 1092, 341182, '明光市', '明光', 3), (1101, 1020, 341200, '阜阳市', '阜阳', 2), (1102, 1101, 341202, '颍州区', '颍州', 3), (1103, 1101, 341203, '颍东区', '颍东', 3), (1104, 1101, 341204, '颍泉区', '颍泉', 3), (1105, 1101, 341221, '临泉县', '临泉', 3), (1106, 1101, 341222, '太和县', '太和', 3), (1107, 1101, 341225, '阜南县', '阜南', 3), (1108, 1101, 341226, '颍上县', '颍上', 3), (1109, 1101, 341282, '界首市', '界首', 3), (1110, 1020, 341300, '宿州市', '宿州', 2), (1111, 1110, 341302, '埇桥区', '埇桥', 3), (1112, 1110, 341321, '砀山县', '砀山', 3), (1113, 1110, 341322, '萧县', '萧县', 3), (1114, 1110, 341323, '灵璧县', '灵璧', 3), (1115, 1110, 341324, '泗县', '泗县', 3), (1116, 1020, 341500, '六安市', '六安', 2), (1117, 1116, 341502, '金安区', '金安', 3), (1118, 1116, 341503, '裕安区', '裕安', 3), (1119, 1116, 341504, '叶集区', '叶集', 3), (1120, 1116, 341522, '霍邱县', '霍邱', 3), (1121, 1116, 341523, '舒城县', '舒城', 3), (1122, 1116, 341524, '金寨县', '金寨', 3), (1123, 1116, 341525, '霍山县', '霍山', 3), (1124, 1020, 341600, '亳州市', '亳州', 2), (1125, 1124, 341602, '谯城区', '谯城', 3), (1126, 1124, 341621, '涡阳县', '涡阳', 3), (1127, 1124, 341622, '蒙城县', '蒙城', 3), (1128, 1124, 341623, '利辛县', '利辛', 3), (1129, 1020, 341700, '池州市', '池州', 2), (1130, 1129, 341702, '贵池区', '贵池', 3), (1131, 1129, 341721, '东至县', '东至', 3), (1132, 1129, 341722, '石台县', '石台', 3), (1133, 1129, 341723, '青阳县', '青阳', 3), (1134, 1020, 341800, '宣城市', '宣城', 2), (1135, 1134, 341802, '宣州区', '宣州', 3), (1136, 1134, 341821, '郎溪县', '郎溪', 3), (1137, 1134, 341822, '广德县', '广德', 3), (1138, 1134, 341823, '泾县', '泾县', 3), (1139, 1134, 341824, '绩溪县', '绩溪', 3), (1140, 1134, 341825, '旌德县', '旌德', 3), (1141, 1134, 341881, '宁国市', '宁国', 3), (1142, 0, 350000, '福建省', '福建', 1), (1143, 1142, 350100, '福州市', '福州', 2), (1144, 1143, 350102, '鼓楼区', '鼓楼', 3), (1145, 1143, 350103, '台江区', '台江', 3), (1146, 1143, 350104, '仓山区', '仓山', 3), (1147, 1143, 350105, '马尾区', '马尾', 3), (1148, 1143, 350111, '晋安区', '晋安', 3), (1149, 1143, 350121, '闽侯县', '闽侯', 3), (1150, 1143, 350122, '连江县', '连江', 3), (1151, 1143, 350123, '罗源县', '罗源', 3), (1152, 1143, 350124, '闽清县', '闽清', 3), (1153, 1143, 350125, '永泰县', '永泰', 3), (1154, 1143, 350128, '平潭县', '平潭', 3), (1155, 1143, 350181, '福清市', '福清', 3), (1156, 1143, 350182, '长乐市', '长乐', 3), (1157, 1142, 350200, '厦门市', '厦门', 2), (1158, 1157, 350203, '思明区', '思明', 3), (1159, 1157, 350205, '海沧区', '海沧', 3), (1160, 1157, 350206, '湖里区', '湖里', 3), (1161, 1157, 350211, '集美区', '集美', 3), (1162, 1157, 350212, '同安区', '同安', 3), (1163, 1157, 350213, '翔安区', '翔安', 3), (1164, 1142, 350300, '莆田市', '莆田', 2), (1165, 1164, 350302, '城厢区', '城厢', 3), (1166, 1164, 350303, '涵江区', '涵江', 3), (1167, 1164, 350304, '荔城区', '荔城', 3), (1168, 1164, 350305, '秀屿区', '秀屿', 3), (1169, 1164, 350322, '仙游县', '仙游', 3), (1170, 1142, 350400, '三明市', '三明', 2), (1171, 1170, 350402, '梅列区', '梅列', 3), (1172, 1170, 350403, '三元区', '三元', 3), (1173, 1170, 350421, '明溪县', '明溪', 3), (1174, 1170, 350423, '清流县', '清流', 3), (1175, 1170, 350424, '宁化县', '宁化', 3), (1176, 1170, 350425, '大田县', '大田', 3), (1177, 1170, 350426, '尤溪县', '尤溪', 3), (1178, 1170, 350427, '沙县', '沙县', 3), (1179, 1170, 350428, '将乐县', '将乐', 3), (1180, 1170, 350429, '泰宁县', '泰宁', 3), (1181, 1170, 350430, '建宁县', '建宁', 3), (1182, 1170, 350481, '永安市', '永安', 3), (1183, 1142, 350500, '泉州市', '泉州', 2), (1184, 1183, 350502, '鲤城区', '鲤城', 3), (1185, 1183, 350503, '丰泽区', '丰泽', 3), (1186, 1183, 350504, '洛江区', '洛江', 3), (1187, 1183, 350505, '泉港区', '泉港', 3), (1188, 1183, 350521, '惠安县', '惠安', 3), (1189, 1183, 350524, '安溪县', '安溪', 3), (1190, 1183, 350525, '永春县', '永春', 3), (1191, 1183, 350526, '德化县', '德化', 3), (1192, 1183, 350527, '金门县', '金门', 3), (1193, 1183, 350581, '石狮市', '石狮', 3), (1194, 1183, 350582, '晋江市', '晋江', 3), (1195, 1183, 350583, '南安市', '南安', 3), (1196, 1142, 350600, '漳州市', '漳州', 2), (1197, 1196, 350602, '芗城区', '芗城', 3), (1198, 1196, 350603, '龙文区', '龙文', 3), (1199, 1196, 350622, '云霄县', '云霄', 3), (1200, 1196, 350623, '漳浦县', '漳浦', 3), (1201, 1196, 350624, '诏安县', '诏安', 3), (1202, 1196, 350625, '长泰县', '长泰', 3), (1203, 1196, 350626, '东山县', '东山', 3), (1204, 1196, 350627, '南靖县', '南靖', 3), (1205, 1196, 350628, '平和县', '平和', 3), (1206, 1196, 350629, '华安县', '华安', 3), (1207, 1196, 350681, '龙海市', '龙海', 3), (1208, 1142, 350700, '南平市', '南平', 2), (1209, 1208, 350702, '延平区', '延平', 3), (1210, 1208, 350703, '建阳区', '建阳', 3), (1211, 1208, 350721, '顺昌县', '顺昌', 3), (1212, 1208, 350722, '浦城县', '浦城', 3), (1213, 1208, 350723, '光泽县', '光泽', 3), (1214, 1208, 350724, '松溪县', '松溪', 3), (1215, 1208, 350725, '政和县', '政和', 3), (1216, 1208, 350781, '邵武市', '邵武', 3), (1217, 1208, 350782, '武夷山市', '武夷山', 3), (1218, 1208, 350783, '建瓯市', '建瓯', 3), (1219, 1142, 350800, '龙岩市', '龙岩', 2), (1220, 1219, 350802, '新罗区', '新罗', 3), (1221, 1219, 350803, '永定区', '永定', 3), (1222, 1219, 350821, '长汀县', '长汀', 3), (1223, 1219, 350823, '上杭县', '上杭', 3), (1224, 1219, 350824, '武平县', '武平', 3), (1225, 1219, 350825, '连城县', '连城', 3), (1226, 1219, 350881, '漳平市', '漳平', 3), (1227, 1142, 350900, '宁德市', '宁德', 2), (1228, 1227, 350902, '蕉城区', '蕉城', 3), (1229, 1227, 350921, '霞浦县', '霞浦', 3), (1230, 1227, 350922, '古田县', '古田', 3), (1231, 1227, 350923, '屏南县', '屏南', 3), (1232, 1227, 350924, '寿宁县', '寿宁', 3), (1233, 1227, 350925, '周宁县', '周宁', 3), (1234, 1227, 350926, '柘荣县', '柘荣', 3), (1235, 1227, 350981, '福安市', '福安', 3), (1236, 1227, 350982, '福鼎市', '福鼎', 3), (1237, 0, 360000, '江西省', '江西', 1), (1238, 1237, 360100, '南昌市', '南昌', 2), (1239, 1238, 360102, '东湖区', '东湖', 3), (1240, 1238, 360103, '西湖区', '西湖', 3), (1241, 1238, 360104, '青云谱区', '青云谱', 3), (1242, 1238, 360105, '湾里区', '湾里', 3), (1243, 1238, 360111, '青山湖区', '青山湖', 3), (1244, 1238, 360112, '新建区', '新建', 3), (1245, 1238, 360121, '南昌县', '南昌', 3), (1246, 1238, 360123, '安义县', '安义', 3), (1247, 1238, 360124, '进贤县', '进贤', 3), (1248, 1237, 360200, '景德镇市', '景德镇', 2), (1249, 1248, 360202, '昌江区', '昌江', 3), (1250, 1248, 360203, '珠山区', '珠山', 3), (1251, 1248, 360222, '浮梁县', '浮梁', 3), (1252, 1248, 360281, '乐平市', '乐平', 3), (1253, 1237, 360300, '萍乡市', '萍乡', 2), (1254, 1253, 360302, '安源区', '安源', 3), (1255, 1253, 360313, '湘东区', '湘东', 3), (1256, 1253, 360321, '莲花县', '莲花', 3), (1257, 1253, 360322, '上栗县', '上栗', 3), (1258, 1253, 360323, '芦溪县', '芦溪', 3), (1259, 1237, 360400, '九江市', '九江', 2), (1260, 1259, 360402, '濂溪区', '庐山', 3), (1261, 1259, 360403, '浔阳区', '浔阳', 3), (1262, 1259, 360421, '九江县', '九江', 3), (1263, 1259, 360423, '武宁县', '武宁', 3), (1264, 1259, 360424, '修水县', '修水', 3), (1265, 1259, 360425, '永修县', '永修', 3), (1266, 1259, 360426, '德安县', '德安', 3), (1267, 1259, 360428, '都昌县', '都昌', 3), (1268, 1259, 360429, '湖口县', '湖口', 3), (1269, 1259, 360430, '彭泽县', '彭泽', 3), (1270, 1259, 360481, '瑞昌市', '瑞昌', 3), (1271, 1259, 360482, '共青城市', '共青城', 3), (1272, 1259, 360483, '庐山市', '庐山', 3), (1273, 1237, 360500, '新余市', '新余', 2), (1274, 1273, 360502, '渝水区', '渝水', 3), (1275, 1273, 360521, '分宜县', '分宜', 3), (1276, 1237, 360600, '鹰潭市', '鹰潭', 2), (1277, 1276, 360602, '月湖区', '月湖', 3), (1278, 1276, 360622, '余江县', '余江', 3), (1279, 1276, 360681, '贵溪市', '贵溪', 3), (1280, 1237, 360700, '赣州市', '赣州', 2), (1281, 1280, 360702, '章贡区', '章贡', 3), (1282, 1280, 360703, '南康区', '南康', 3), (1283, 1280, 360704, '赣县区', '赣县', 3), (1284, 1280, 360722, '信丰县', '信丰', 3), (1285, 1280, 360723, '大余县', '大余', 3), (1286, 1280, 360724, '上犹县', '上犹', 3), (1287, 1280, 360725, '崇义县', '崇义', 3), (1288, 1280, 360726, '安远县', '安远', 3), (1289, 1280, 360727, '龙南县', '龙南', 3), (1290, 1280, 360728, '定南县', '定南', 3), (1291, 1280, 360729, '全南县', '全南', 3), (1292, 1280, 360730, '宁都县', '宁都', 3), (1293, 1280, 360731, '于都县', '于都', 3), (1294, 1280, 360732, '兴国县', '兴国', 3), (1295, 1280, 360733, '会昌县', '会昌', 3), (1296, 1280, 360734, '寻乌县', '寻乌', 3), (1297, 1280, 360735, '石城县', '石城', 3), (1298, 1280, 360781, '瑞金市', '瑞金', 3), (1299, 1237, 360800, '吉安市', '吉安', 2), (1300, 1299, 360802, '吉州区', '吉州', 3), (1301, 1299, 360803, '青原区', '青原', 3), (1302, 1299, 360821, '吉安县', '吉安', 3), (1303, 1299, 360822, '吉水县', '吉水', 3), (1304, 1299, 360823, '峡江县', '峡江', 3), (1305, 1299, 360824, '新干县', '新干', 3), (1306, 1299, 360825, '永丰县', '永丰', 3), (1307, 1299, 360826, '泰和县', '泰和', 3), (1308, 1299, 360827, '遂川县', '遂川', 3), (1309, 1299, 360828, '万安县', '万安', 3), (1310, 1299, 360829, '安福县', '安福', 3), (1311, 1299, 360830, '永新县', '永新', 3), (1312, 1299, 360881, '井冈山市', '井冈山', 3), (1313, 1237, 360900, '宜春市', '宜春', 2), (1314, 1313, 360902, '袁州区', '袁州', 3), (1315, 1313, 360921, '奉新县', '奉新', 3), (1316, 1313, 360922, '万载县', '万载', 3), (1317, 1313, 360923, '上高县', '上高', 3), (1318, 1313, 360924, '宜丰县', '宜丰', 3), (1319, 1313, 360925, '靖安县', '靖安', 3), (1320, 1313, 360926, '铜鼓县', '铜鼓', 3), (1321, 1313, 360981, '丰城市', '丰城', 3), (1322, 1313, 360982, '樟树市', '樟树', 3), (1323, 1313, 360983, '高安市', '高安', 3), (1324, 1237, 361000, '抚州市', '抚州', 2), (1325, 1324, 361002, '临川区', '临川', 3), (1326, 1324, 361003, '东乡区', '东乡', 3), (1327, 1324, 361021, '南城县', '南城', 3), (1328, 1324, 361022, '黎川县', '黎川', 3), (1329, 1324, 361023, '南丰县', '南丰', 3), (1330, 1324, 361024, '崇仁县', '崇仁', 3), (1331, 1324, 361025, '乐安县', '乐安', 3), (1332, 1324, 361026, '宜黄县', '宜黄', 3), (1333, 1324, 361027, '金溪县', '金溪', 3), (1334, 1324, 361028, '资溪县', '资溪', 3), (1335, 1324, 361030, '广昌县', '广昌', 3), (1336, 1237, 361100, '上饶市', '上饶', 2), (1337, 1336, 361102, '信州区', '信州', 3), (1338, 1336, 361103, '广丰区', '广丰', 3), (1339, 1336, 361121, '上饶县', '上饶', 3), (1340, 1336, 361123, '玉山县', '玉山', 3), (1341, 1336, 361124, '铅山县', '铅山', 3), (1342, 1336, 361125, '横峰县', '横峰', 3), (1343, 1336, 361126, '弋阳县', '弋阳', 3), (1344, 1336, 361127, '余干县', '余干', 3), (1345, 1336, 361128, '鄱阳县', '鄱阳', 3), (1346, 1336, 361129, '万年县', '万年', 3), (1347, 1336, 361130, '婺源县', '婺源', 3), (1348, 1336, 361181, '德兴市', '德兴', 3), (1349, 0, 370000, '山东省', '山东', 1), (1350, 1349, 370100, '济南市', '济南', 2), (1351, 1350, 370102, '历下区', '历下', 3), (1352, 1350, 370103, '市中区', '市中', 3), (1353, 1350, 370104, '槐荫区', '槐荫', 3), (1354, 1350, 370105, '天桥区', '天桥', 3), (1355, 1350, 370112, '历城区', '历城', 3), (1356, 1350, 370113, '长清区', '长清', 3), (1357, 1350, 370114, '章丘区', '章丘', 3), (1358, 1350, 370124, '平阴县', '平阴', 3), (1359, 1350, 370125, '济阳县', '济阳', 3), (1360, 1350, 370126, '商河县', '商河', 3), (1361, 1349, 370200, '青岛市', '青岛', 2), (1362, 1361, 370202, '市南区', '市南', 3), (1363, 1361, 370203, '市北区', '市北', 3), (1364, 1361, 370211, '黄岛区', '黄岛', 3), (1365, 1361, 370212, '崂山区', '崂山', 3), (1366, 1361, 370213, '李沧区', '李沧', 3), (1367, 1361, 370214, '城阳区', '城阳', 3), (1368, 1361, 370281, '胶州市', '胶州', 3), (1369, 1361, 370282, '即墨市', '即墨', 3), (1370, 1361, 370283, '平度市', '平度', 3), (1371, 1361, 370285, '莱西市', '莱西', 3), (1372, 1349, 370300, '淄博市', '淄博', 2), (1373, 1372, 370302, '淄川区', '淄川', 3), (1374, 1372, 370303, '张店区', '张店', 3), (1375, 1372, 370304, '博山区', '博山', 3), (1376, 1372, 370305, '临淄区', '临淄', 3), (1377, 1372, 370306, '周村区', '周村', 3), (1378, 1372, 370321, '桓台县', '桓台', 3), (1379, 1372, 370322, '高青县', '高青', 3), (1380, 1372, 370323, '沂源县', '沂源', 3), (1381, 1349, 370400, '枣庄市', '枣庄', 2), (1382, 1381, 370402, '市中区', '市中', 3), (1383, 1381, 370403, '薛城区', '薛城', 3), (1384, 1381, 370404, '峄城区', '峄城', 3), (1385, 1381, 370405, '台儿庄区', '台儿庄', 3), (1386, 1381, 370406, '山亭区', '山亭', 3), (1387, 1381, 370481, '滕州市', '滕州', 3), (1388, 1349, 370500, '东营市', '东营', 2), (1389, 1388, 370502, '东营区', '东营', 3), (1390, 1388, 370503, '河口区', '河口', 3), (1391, 1388, 370505, '垦利区', '垦利', 3), (1392, 1388, 370522, '利津县', '利津', 3), (1393, 1388, 370523, '广饶县', '广饶', 3), (1394, 1349, 370600, '烟台市', '烟台', 2), (1395, 1394, 370602, '芝罘区', '芝罘', 3), (1396, 1394, 370611, '福山区', '福山', 3), (1397, 1394, 370612, '牟平区', '牟平', 3), (1398, 1394, 370613, '莱山区', '莱山', 3), (1399, 1394, 370634, '长岛县', '长岛', 3), (1400, 1394, 370681, '龙口市', '龙口', 3), (1401, 1394, 370682, '莱阳市', '莱阳', 3), (1402, 1394, 370683, '莱州市', '莱州', 3), (1403, 1394, 370684, '蓬莱市', '蓬莱', 3), (1404, 1394, 370685, '招远市', '招远', 3), (1405, 1394, 370686, '栖霞市', '栖霞', 3), (1406, 1394, 370687, '海阳市', '海阳', 3), (1407, 1349, 370700, '潍坊市', '潍坊', 2), (1408, 1407, 370702, '潍城区', '潍城', 3), (1409, 1407, 370703, '寒亭区', '寒亭', 3), (1410, 1407, 370704, '坊子区', '坊子', 3), (1411, 1407, 370705, '奎文区', '奎文', 3), (1412, 1407, 370724, '临朐县', '临朐', 3), (1413, 1407, 370725, '昌乐县', '昌乐', 3), (1414, 1407, 370781, '青州市', '青州', 3), (1415, 1407, 370782, '诸城市', '诸城', 3), (1416, 1407, 370783, '寿光市', '寿光', 3), (1417, 1407, 370784, '安丘市', '安丘', 3), (1418, 1407, 370785, '高密市', '高密', 3), (1419, 1407, 370786, '昌邑市', '昌邑', 3), (1420, 1349, 370800, '济宁市', '济宁', 2), (1421, 1420, 370811, '任城区', '任城', 3), (1422, 1420, 370812, '兖州区', '兖州', 3), (1423, 1420, 370826, '微山县', '微山', 3), (1424, 1420, 370827, '鱼台县', '鱼台', 3), (1425, 1420, 370828, '金乡县', '金乡', 3), (1426, 1420, 370829, '嘉祥县', '嘉祥', 3), (1427, 1420, 370830, '汶上县', '汶上', 3), (1428, 1420, 370831, '泗水县', '泗水', 3), (1429, 1420, 370832, '梁山县', '梁山', 3), (1430, 1420, 370881, '曲阜市', '曲阜', 3), (1431, 1420, 370883, '邹城市', '邹城', 3), (1432, 1349, 370900, '泰安市', '泰安', 2), (1433, 1432, 370902, '泰山区', '泰山', 3), (1434, 1432, 370911, '岱岳区', '岱岳', 3), (1435, 1432, 370921, '宁阳县', '宁阳', 3); INSERT INTO `ph_area` (`id`, `pid`, `code`, `name`, `short_name`, `region_level`) VALUES (1436, 1432, 370923, '东平县', '东平', 3), (1437, 1432, 370982, '新泰市', '新泰', 3), (1438, 1432, 370983, '肥城市', '肥城', 3), (1439, 1349, 371000, '威海市', '威海', 2), (1440, 1439, 371002, '环翠区', '环翠', 3), (1441, 1439, 371003, '文登区', '文登', 3), (1442, 1439, 371082, '荣成市', '荣成', 3), (1443, 1439, 371083, '乳山市', '乳山', 3), (1444, 1349, 371100, '日照市', '日照', 2), (1445, 1444, 371102, '东港区', '东港', 3), (1446, 1444, 371103, '岚山区', '岚山', 3), (1447, 1444, 371121, '五莲县', '五莲', 3), (1448, 1444, 371122, '莒县', '莒县', 3), (1449, 1349, 371200, '莱芜市', '莱芜', 2), (1450, 1449, 371202, '莱城区', '莱城', 3), (1451, 1449, 371203, '钢城区', '钢城', 3), (1452, 1349, 371300, '临沂市', '临沂', 2), (1453, 1452, 371302, '兰山区', '兰山', 3), (1454, 1452, 371311, '罗庄区', '罗庄', 3), (1455, 1452, 371312, '河东区', '河东', 3), (1456, 1452, 371321, '沂南县', '沂南', 3), (1457, 1452, 371322, '郯城县', '郯城', 3), (1458, 1452, 371323, '沂水县', '沂水', 3), (1459, 1452, 371324, '兰陵县', '苍山', 3), (1460, 1452, 371325, '费县', '费县', 3), (1461, 1452, 371326, '平邑县', '平邑', 3), (1462, 1452, 371327, '莒南县', '莒南', 3), (1463, 1452, 371328, '蒙阴县', '蒙阴', 3), (1464, 1452, 371329, '临沭县', '临沭', 3), (1465, 1349, 371400, '德州市', '德州', 2), (1466, 1465, 371402, '德城区', '德城', 3), (1467, 1465, 371403, '陵城区', '陵城', 3), (1468, 1465, 371422, '宁津县', '宁津', 3), (1469, 1465, 371423, '庆云县', '庆云', 3), (1470, 1465, 371424, '临邑县', '临邑', 3), (1471, 1465, 371425, '齐河县', '齐河', 3), (1472, 1465, 371426, '平原县', '平原', 3), (1473, 1465, 371427, '夏津县', '夏津', 3), (1474, 1465, 371428, '武城县', '武城', 3), (1475, 1465, 371481, '乐陵市', '乐陵', 3), (1476, 1465, 371482, '禹城市', '禹城', 3), (1477, 1349, 371500, '聊城市', '聊城', 2), (1478, 1477, 371502, '东昌府区', '东昌府', 3), (1479, 1477, 371521, '阳谷县', '阳谷', 3), (1480, 1477, 371522, '莘县', '莘县', 3), (1481, 1477, 371523, '茌平县', '茌平', 3), (1482, 1477, 371524, '东阿县', '东阿', 3), (1483, 1477, 371525, '冠县', '冠县', 3), (1484, 1477, 371526, '高唐县', '高唐', 3), (1485, 1477, 371581, '临清市', '临清', 3), (1486, 1349, 371600, '滨州市', '滨州', 2), (1487, 1486, 371602, '滨城区', '滨城', 3), (1488, 1486, 371603, '沾化区', '沾化', 3), (1489, 1486, 371621, '惠民县', '惠民', 3), (1490, 1486, 371622, '阳信县', '阳信', 3), (1491, 1486, 371623, '无棣县', '无棣', 3), (1492, 1486, 371625, '博兴县', '博兴', 3), (1493, 1486, 371626, '邹平县', '邹平', 3), (1494, 1349, 371700, '菏泽市', '菏泽', 2), (1495, 1494, 371702, '牡丹区', '牡丹', 3), (1496, 1494, 371703, '定陶区', '定陶', 3), (1497, 1494, 371721, '曹县', '曹县', 3), (1498, 1494, 371722, '单县', '单县', 3), (1499, 1494, 371723, '成武县', '成武', 3), (1500, 1494, 371724, '巨野县', '巨野', 3), (1501, 1494, 371725, '郓城县', '郓城', 3), (1502, 1494, 371726, '鄄城县', '鄄城', 3), (1503, 1494, 371728, '东明县', '东明', 3), (1504, 0, 410000, '河南省', '河南', 1), (1505, 1504, 410100, '郑州市', '郑州', 2), (1506, 1505, 410102, '中原区', '中原', 3), (1507, 1505, 410103, '二七区', '二七', 3), (1508, 1505, 410104, '管城回族区', '管城', 3), (1509, 1505, 410105, '金水区', '金水', 3), (1510, 1505, 410106, '上街区', '上街', 3), (1511, 1505, 410108, '惠济区', '惠济', 3), (1512, 1505, 410122, '中牟县', '中牟', 3), (1513, 1505, 410181, '巩义市', '巩义', 3), (1514, 1505, 410182, '荥阳市', '荥阳', 3), (1515, 1505, 410183, '新密市', '新密', 3), (1516, 1505, 410184, '新郑市', '新郑', 3), (1517, 1505, 410185, '登封市', '登封', 3), (1518, 1504, 410200, '开封市', '开封', 2), (1519, 1518, 410202, '龙亭区', '龙亭', 3), (1520, 1518, 410203, '顺河回族区', '顺河', 3), (1521, 1518, 410204, '鼓楼区', '鼓楼', 3), (1522, 1518, 410205, '禹王台区', '禹王台', 3), (1523, 1518, 410212, '祥符区', '祥符', 3), (1524, 1518, 410221, '杞县', '杞县', 3), (1525, 1518, 410222, '通许县', '通许', 3), (1526, 1518, 410223, '尉氏县', '尉氏', 3), (1527, 1518, 410225, '兰考县', '兰考', 3), (1528, 1504, 410300, '洛阳市', '洛阳', 2), (1529, 1528, 410302, '老城区', '老城', 3), (1530, 1528, 410303, '西工区', '西工', 3), (1531, 1528, 410304, '瀍河回族区', '瀍河', 3), (1532, 1528, 410305, '涧西区', '涧西', 3), (1533, 1528, 410306, '吉利区', '吉利', 3), (1534, 1528, 410311, '洛龙区', '洛龙', 3), (1535, 1528, 410322, '孟津县', '孟津', 3), (1536, 1528, 410323, '新安县', '新安', 3), (1537, 1528, 410324, '栾川县', '栾川', 3), (1538, 1528, 410325, '嵩县', '嵩县', 3), (1539, 1528, 410326, '汝阳县', '汝阳', 3), (1540, 1528, 410327, '宜阳县', '宜阳', 3), (1541, 1528, 410328, '洛宁县', '洛宁', 3), (1542, 1528, 410329, '伊川县', '伊川', 3), (1543, 1528, 410381, '偃师市', '偃师', 3), (1544, 1504, 410400, '平顶山市', '平顶山', 2), (1545, 1544, 410402, '新华区', '新华', 3), (1546, 1544, 410403, '卫东区', '卫东', 3), (1547, 1544, 410404, '石龙区', '石龙', 3), (1548, 1544, 410411, '湛河区', '湛河', 3), (1549, 1544, 410421, '宝丰县', '宝丰', 3), (1550, 1544, 410422, '叶县', '叶县', 3), (1551, 1544, 410423, '鲁山县', '鲁山', 3), (1552, 1544, 410425, '郏县', '郏县', 3), (1553, 1544, 410481, '舞钢市', '舞钢', 3), (1554, 1544, 410482, '汝州市', '汝州', 3), (1555, 1504, 410500, '安阳市', '安阳', 2), (1556, 1555, 410502, '文峰区', '文峰', 3), (1557, 1555, 410503, '北关区', '北关', 3), (1558, 1555, 410505, '殷都区', '殷都', 3), (1559, 1555, 410506, '龙安区', '龙安', 3), (1560, 1555, 410522, '安阳县', '安阳', 3), (1561, 1555, 410523, '汤阴县', '汤阴', 3), (1562, 1555, 410526, '滑县', '滑县', 3), (1563, 1555, 410527, '内黄县', '内黄', 3), (1564, 1555, 410581, '林州市', '林州', 3), (1565, 1504, 410600, '鹤壁市', '鹤壁', 2), (1566, 1565, 410602, '鹤山区', '鹤山', 3), (1567, 1565, 410603, '山城区', '山城', 3), (1568, 1565, 410611, '淇滨区', '淇滨', 3), (1569, 1565, 410621, '浚县', '浚县', 3), (1570, 1565, 410622, '淇县', '淇县', 3), (1571, 1504, 410700, '新乡市', '新乡', 2), (1572, 1571, 410702, '红旗区', '红旗', 3), (1573, 1571, 410703, '卫滨区', '卫滨', 3), (1574, 1571, 410704, '凤泉区', '凤泉', 3), (1575, 1571, 410711, '牧野区', '牧野', 3), (1576, 1571, 410721, '新乡县', '新乡', 3), (1577, 1571, 410724, '获嘉县', '获嘉', 3), (1578, 1571, 410725, '原阳县', '原阳', 3), (1579, 1571, 410726, '延津县', '延津', 3), (1580, 1571, 410727, '封丘县', '封丘', 3), (1581, 1571, 410728, '长垣县', '长垣', 3), (1582, 1571, 410781, '卫辉市', '卫辉', 3), (1583, 1571, 410782, '辉县市', '辉县', 3), (1584, 1504, 410800, '焦作市', '焦作', 2), (1585, 1584, 410802, '解放区', '解放', 3), (1586, 1584, 410803, '中站区', '中站', 3), (1587, 1584, 410804, '马村区', '马村', 3), (1588, 1584, 410811, '山阳区', '山阳', 3), (1589, 1584, 410821, '修武县', '修武', 3), (1590, 1584, 410822, '博爱县', '博爱', 3), (1591, 1584, 410823, '武陟县', '武陟', 3), (1592, 1584, 410825, '温县', '温县', 3), (1593, 1584, 410882, '沁阳市', '沁阳', 3), (1594, 1584, 410883, '孟州市', '孟州', 3), (1595, 1504, 410900, '濮阳市', '濮阳', 2), (1596, 1595, 410902, '华龙区', '华龙', 3), (1597, 1595, 410922, '清丰县', '清丰', 3), (1598, 1595, 410923, '南乐县', '南乐', 3), (1599, 1595, 410926, '范县', '范县', 3), (1600, 1595, 410927, '台前县', '台前', 3), (1601, 1595, 410928, '濮阳县', '濮阳', 3), (1602, 1504, 411000, '许昌市', '许昌', 2), (1603, 1602, 411002, '魏都区', '魏都', 3), (1604, 1602, 411003, '建安区', '建安', 3), (1605, 1602, 411024, '鄢陵县', '鄢陵', 3), (1606, 1602, 411025, '襄城县', '襄城', 3), (1607, 1602, 411081, '禹州市', '禹州', 3), (1608, 1602, 411082, '长葛市', '长葛', 3), (1609, 1504, 411100, '漯河市', '漯河', 2), (1610, 1609, 411102, '源汇区', '源汇', 3), (1611, 1609, 411103, '郾城区', '郾城', 3), (1612, 1609, 411104, '召陵区', '召陵', 3), (1613, 1609, 411121, '舞阳县', '舞阳', 3), (1614, 1609, 411122, '临颍县', '临颍', 3), (1615, 1504, 411200, '三门峡市', '三门峡', 2), (1616, 1615, 411202, '湖滨区', '湖滨', 3), (1617, 1615, 411203, '陕州区', '陕州', 3), (1618, 1615, 411221, '渑池县', '渑池', 3), (1619, 1615, 411224, '卢氏县', '卢氏', 3), (1620, 1615, 411281, '义马市', '义马', 3), (1621, 1615, 411282, '灵宝市', '灵宝', 3), (1622, 1504, 411300, '南阳市', '南阳', 2), (1623, 1622, 411302, '宛城区', '宛城', 3), (1624, 1622, 411303, '卧龙区', '卧龙', 3), (1625, 1622, 411321, '南召县', '南召', 3), (1626, 1622, 411322, '方城县', '方城', 3), (1627, 1622, 411323, '西峡县', '西峡', 3), (1628, 1622, 411324, '镇平县', '镇平', 3), (1629, 1622, 411325, '内乡县', '内乡', 3), (1630, 1622, 411326, '淅川县', '淅川', 3), (1631, 1622, 411327, '社旗县', '社旗', 3), (1632, 1622, 411328, '唐河县', '唐河', 3), (1633, 1622, 411329, '新野县', '新野', 3), (1634, 1622, 411330, '桐柏县', '桐柏', 3), (1635, 1622, 411381, '邓州市', '邓州', 3), (1636, 1504, 411400, '商丘市', '商丘', 2), (1637, 1636, 411402, '梁园区', '梁园', 3), (1638, 1636, 411403, '睢阳区', '睢阳', 3), (1639, 1636, 411421, '民权县', '民权', 3), (1640, 1636, 411422, '睢县', '睢县', 3), (1641, 1636, 411423, '宁陵县', '宁陵', 3), (1642, 1636, 411424, '柘城县', '柘城', 3), (1643, 1636, 411425, '虞城县', '虞城', 3), (1644, 1636, 411426, '夏邑县', '夏邑', 3), (1645, 1636, 411481, '永城市', '永城', 3), (1646, 1504, 411500, '信阳市', '信阳', 2), (1647, 1646, 411502, '浉河区', '浉河', 3), (1648, 1646, 411503, '平桥区', '平桥', 3), (1649, 1646, 411521, '罗山县', '罗山', 3), (1650, 1646, 411522, '光山县', '光山', 3), (1651, 1646, 411523, '新县', '新县', 3), (1652, 1646, 411524, '商城县', '商城', 3), (1653, 1646, 411525, '固始县', '固始', 3), (1654, 1646, 411526, '潢川县', '潢川', 3), (1655, 1646, 411527, '淮滨县', '淮滨', 3), (1656, 1646, 411528, '息县', '息县', 3), (1657, 1504, 411600, '周口市', '周口', 2), (1658, 1657, 411602, '川汇区', '川汇', 3), (1659, 1657, 411621, '扶沟县', '扶沟', 3), (1660, 1657, 411622, '西华县', '西华', 3), (1661, 1657, 411623, '商水县', '商水', 3), (1662, 1657, 411624, '沈丘县', '沈丘', 3), (1663, 1657, 411625, '郸城县', '郸城', 3), (1664, 1657, 411626, '淮阳县', '淮阳', 3), (1665, 1657, 411627, '太康县', '太康', 3), (1666, 1657, 411628, '鹿邑县', '鹿邑', 3), (1667, 1657, 411681, '项城市', '项城', 3), (1668, 1504, 411700, '驻马店市', '驻马店', 2), (1669, 1668, 411702, '驿城区', '驿城', 3), (1670, 1668, 411721, '西平县', '西平', 3), (1671, 1668, 411722, '上蔡县', '上蔡', 3), (1672, 1668, 411723, '平舆县', '平舆', 3), (1673, 1668, 411724, '正阳县', '正阳', 3), (1674, 1668, 411725, '确山县', '确山', 3), (1675, 1668, 411726, '泌阳县', '泌阳', 3), (1676, 1668, 411727, '汝南县', '汝南', 3), (1677, 1668, 411728, '遂平县', '遂平', 3), (1678, 1668, 411729, '新蔡县', '新蔡', 3), (1679, 1504, 419001, '济源市', '济源', 2), (1680, 0, 420000, '湖北省', '湖北', 1), (1681, 1680, 420100, '武汉市', '武汉', 2), (1682, 1681, 420102, '江岸区', '江岸', 3), (1683, 1681, 420103, '江汉区', '江汉', 3), (1684, 1681, 420104, '硚口区', '硚口', 3), (1685, 1681, 420105, '汉阳区', '汉阳', 3), (1686, 1681, 420106, '武昌区', '武昌', 3), (1687, 1681, 420107, '青山区', '青山', 3), (1688, 1681, 420111, '洪山区', '洪山', 3), (1689, 1681, 420112, '东西湖区', '东西湖', 3), (1690, 1681, 420113, '汉南区', '汉南', 3), (1691, 1681, 420114, '蔡甸区', '蔡甸', 3), (1692, 1681, 420115, '江夏区', '江夏', 3), (1693, 1681, 420116, '黄陂区', '黄陂', 3), (1694, 1681, 420117, '新洲区', '新洲', 3), (1695, 1680, 420200, '黄石市', '黄石', 2), (1696, 1695, 420202, '黄石港区', '黄石港', 3), (1697, 1695, 420203, '西塞山区', '西塞山', 3), (1698, 1695, 420204, '下陆区', '下陆', 3), (1699, 1695, 420205, '铁山区', '铁山', 3), (1700, 1695, 420222, '阳新县', '阳新', 3), (1701, 1695, 420281, '大冶市', '大冶', 3), (1702, 1680, 420300, '十堰市', '十堰', 2), (1703, 1702, 420302, '茅箭区', '茅箭', 3), (1704, 1702, 420303, '张湾区', '张湾', 3), (1705, 1702, 420304, '郧阳区', '郧阳', 3), (1706, 1702, 420322, '郧西县', '郧西', 3), (1707, 1702, 420323, '竹山县', '竹山', 3), (1708, 1702, 420324, '竹溪县', '竹溪', 3), (1709, 1702, 420325, '房县', '房县', 3), (1710, 1702, 420381, '丹江口市', '丹江口', 3), (1711, 1680, 420500, '宜昌市', '宜昌', 2), (1712, 1711, 420502, '西陵区', '西陵', 3), (1713, 1711, 420503, '伍家岗区', '伍家岗', 3), (1714, 1711, 420504, '点军区', '点军', 3), (1715, 1711, 420505, '猇亭区', '猇亭', 3), (1716, 1711, 420506, '夷陵区', '夷陵', 3), (1717, 1711, 420525, '远安县', '远安', 3), (1718, 1711, 420526, '兴山县', '兴山', 3), (1719, 1711, 420527, '秭归县', '秭归', 3), (1720, 1711, 420528, '长阳土家族自治县', '长阳', 3), (1721, 1711, 420529, '五峰土家族自治县', '五峰', 3), (1722, 1711, 420581, '宜都市', '宜都', 3), (1723, 1711, 420582, '当阳市', '当阳', 3), (1724, 1711, 420583, '枝江市', '枝江', 3), (1725, 1680, 420600, '襄阳市', '襄樊', 2), (1726, 1725, 420602, '襄城区', '襄城', 3), (1727, 1725, 420606, '樊城区', '樊城', 3), (1728, 1725, 420607, '襄州区', '襄阳', 3), (1729, 1725, 420624, '南漳县', '南漳', 3), (1730, 1725, 420625, '谷城县', '谷城', 3), (1731, 1725, 420626, '保康县', '保康', 3), (1732, 1725, 420682, '老河口市', '老河口', 3), (1733, 1725, 420683, '枣阳市', '枣阳', 3), (1734, 1725, 420684, '宜城市', '宜城', 3), (1735, 1680, 420700, '鄂州市', '鄂州', 2), (1736, 1735, 420702, '梁子湖区', '梁子湖', 3), (1737, 1735, 420703, '华容区', '华容', 3), (1738, 1735, 420704, '鄂城区', '鄂城', 3), (1739, 1680, 420800, '荆门市', '荆门', 2), (1740, 1739, 420802, '东宝区', '东宝', 3), (1741, 1739, 420804, '掇刀区', '掇刀', 3), (1742, 1739, 420821, '京山县', '京山', 3), (1743, 1739, 420822, '沙洋县', '沙洋', 3), (1744, 1739, 420881, '钟祥市', '钟祥', 3), (1745, 1680, 420900, '孝感市', '孝感', 2), (1746, 1745, 420902, '孝南区', '孝南', 3), (1747, 1745, 420921, '孝昌县', '孝昌', 3), (1748, 1745, 420922, '大悟县', '大悟', 3), (1749, 1745, 420923, '云梦县', '云梦', 3), (1750, 1745, 420981, '应城市', '应城', 3), (1751, 1745, 420982, '安陆市', '安陆', 3), (1752, 1745, 420984, '汉川市', '汉川', 3), (1753, 1680, 421000, '荆州市', '荆州', 2), (1754, 1753, 421002, '沙市区', '沙市', 3), (1755, 1753, 421003, '荆州区', '荆州', 3), (1756, 1753, 421022, '公安县', '公安', 3), (1757, 1753, 421023, '监利县', '监利', 3), (1758, 1753, 421024, '江陵县', '江陵', 3), (1759, 1753, 421081, '石首市', '石首', 3), (1760, 1753, 421083, '洪湖市', '洪湖', 3), (1761, 1753, 421087, '松滋市', '松滋', 3), (1762, 1680, 421100, '黄冈市', '黄冈', 2), (1763, 1762, 421102, '黄州区', '黄州', 3), (1764, 1762, 421121, '团风县', '团风', 3), (1765, 1762, 421122, '红安县', '红安', 3), (1766, 1762, 421123, '罗田县', '罗田', 3), (1767, 1762, 421124, '英山县', '英山', 3), (1768, 1762, 421125, '浠水县', '浠水', 3), (1769, 1762, 421126, '蕲春县', '蕲春', 3), (1770, 1762, 421127, '黄梅县', '黄梅', 3), (1771, 1762, 421181, '麻城市', '麻城', 3), (1772, 1762, 421182, '武穴市', '武穴', 3), (1773, 1680, 421200, '咸宁市', '咸宁', 2), (1774, 1773, 421202, '咸安区', '咸安', 3), (1775, 1773, 421221, '嘉鱼县', '嘉鱼', 3), (1776, 1773, 421222, '通城县', '通城', 3), (1777, 1773, 421223, '崇阳县', '崇阳', 3), (1778, 1773, 421224, '通山县', '通山', 3), (1779, 1773, 421281, '赤壁市', '赤壁', 3), (1780, 1680, 421300, '随州市', '随州', 2), (1781, 1780, 421303, '曾都区', '曾都', 3), (1782, 1780, 421321, '随县', '随县', 3), (1783, 1780, 421381, '广水市', '广水', 3), (1784, 1680, 422800, '恩施土家族苗族自治州', '恩施', 2), (1785, 1784, 422801, '恩施市', '恩施', 3), (1786, 1784, 422802, '利川市', '利川', 3), (1787, 1784, 422822, '建始县', '建始', 3), (1788, 1784, 422823, '巴东县', '巴东', 3), (1789, 1784, 422825, '宣恩县', '宣恩', 3), (1790, 1784, 422826, '咸丰县', '咸丰', 3), (1791, 1784, 422827, '来凤县', '来凤', 3), (1792, 1784, 422828, '鹤峰县', '鹤峰', 3), (1793, 1680, 429004, '仙桃市', '仙桃', 2), (1794, 1680, 429005, '潜江市', '潜江', 2), (1795, 1680, 429006, '天门市', '天门', 2), (1796, 1680, 429021, '神农架林区', '神农架', 2), (1797, 0, 430000, '湖南省', '湖南', 1), (1798, 1797, 430100, '长沙市', '长沙', 2), (1799, 1798, 430102, '芙蓉区', '芙蓉', 3), (1800, 1798, 430103, '天心区', '天心', 3), (1801, 1798, 430104, '岳麓区', '岳麓', 3), (1802, 1798, 430105, '开福区', '开福', 3), (1803, 1798, 430111, '雨花区', '雨花', 3), (1804, 1798, 430112, '望城区', '望城', 3), (1805, 1798, 430121, '长沙县', '长沙', 3), (1806, 1798, 430124, '宁乡县', '宁乡', 3), (1807, 1798, 430181, '浏阳市', '浏阳', 3), (1808, 1797, 430200, '株洲市', '株洲', 2), (1809, 1808, 430202, '荷塘区', '荷塘', 3), (1810, 1808, 430203, '芦淞区', '芦淞', 3), (1811, 1808, 430204, '石峰区', '石峰', 3), (1812, 1808, 430211, '天元区', '天元', 3), (1813, 1808, 430221, '株洲县', '株洲', 3), (1814, 1808, 430223, '攸县', '攸县', 3), (1815, 1808, 430224, '茶陵县', '茶陵', 3), (1816, 1808, 430225, '炎陵县', '炎陵', 3), (1817, 1808, 430281, '醴陵市', '醴陵', 3), (1818, 1797, 430300, '湘潭市', '湘潭', 2), (1819, 1818, 430302, '雨湖区', '雨湖', 3), (1820, 1818, 430304, '岳塘区', '岳塘', 3), (1821, 1818, 430321, '湘潭县', '湘潭', 3), (1822, 1818, 430381, '湘乡市', '湘乡', 3), (1823, 1818, 430382, '韶山市', '韶山', 3), (1824, 1797, 430400, '衡阳市', '衡阳', 2), (1825, 1824, 430405, '珠晖区', '珠晖', 3), (1826, 1824, 430406, '雁峰区', '雁峰', 3), (1827, 1824, 430407, '石鼓区', '石鼓', 3), (1828, 1824, 430408, '蒸湘区', '蒸湘', 3), (1829, 1824, 430412, '南岳区', '南岳', 3), (1830, 1824, 430421, '衡阳县', '衡阳', 3), (1831, 1824, 430422, '衡南县', '衡南', 3), (1832, 1824, 430423, '衡山县', '衡山', 3), (1833, 1824, 430424, '衡东县', '衡东', 3), (1834, 1824, 430426, '祁东县', '祁东', 3), (1835, 1824, 430481, '耒阳市', '耒阳', 3), (1836, 1824, 430482, '常宁市', '常宁', 3), (1837, 1797, 430500, '邵阳市', '邵阳', 2), (1838, 1837, 430502, '双清区', '双清', 3), (1839, 1837, 430503, '大祥区', '大祥', 3), (1840, 1837, 430511, '北塔区', '北塔', 3), (1841, 1837, 430521, '邵东县', '邵东', 3), (1842, 1837, 430522, '新邵县', '新邵', 3), (1843, 1837, 430523, '邵阳县', '邵阳', 3), (1844, 1837, 430524, '隆回县', '隆回', 3), (1845, 1837, 430525, '洞口县', '洞口', 3), (1846, 1837, 430527, '绥宁县', '绥宁', 3), (1847, 1837, 430528, '新宁县', '新宁', 3), (1848, 1837, 430529, '城步苗族自治县', '城步', 3), (1849, 1837, 430581, '武冈市', '武冈', 3), (1850, 1797, 430600, '岳阳市', '岳阳', 2), (1851, 1850, 430602, '岳阳楼区', '岳阳楼', 3), (1852, 1850, 430603, '云溪区', '云溪', 3), (1853, 1850, 430611, '君山区', '君山', 3), (1854, 1850, 430621, '岳阳县', '岳阳', 3), (1855, 1850, 430623, '华容县', '华容', 3), (1856, 1850, 430624, '湘阴县', '湘阴', 3), (1857, 1850, 430626, '平江县', '平江', 3), (1858, 1850, 430681, '汨罗市', '汨罗', 3), (1859, 1850, 430682, '临湘市', '临湘', 3), (1860, 1797, 430700, '常德市', '常德', 2), (1861, 1860, 430702, '武陵区', '武陵', 3), (1862, 1860, 430703, '鼎城区', '鼎城', 3), (1863, 1860, 430721, '安乡县', '安乡', 3), (1864, 1860, 430722, '汉寿县', '汉寿', 3), (1865, 1860, 430723, '澧县', '澧县', 3), (1866, 1860, 430724, '临澧县', '临澧', 3), (1867, 1860, 430725, '桃源县', '桃源', 3), (1868, 1860, 430726, '石门县', '石门', 3), (1869, 1860, 430781, '津市市', '津市', 3), (1870, 1797, 430800, '张家界市', '张家界', 2), (1871, 1870, 430802, '永定区', '永定', 3), (1872, 1870, 430811, '武陵源区', '武陵源', 3), (1873, 1870, 430821, '慈利县', '慈利', 3), (1874, 1870, 430822, '桑植县', '桑植', 3), (1875, 1797, 430900, '益阳市', '益阳', 2), (1876, 1875, 430902, '资阳区', '资阳', 3), (1877, 1875, 430903, '赫山区', '赫山', 3), (1878, 1875, 430921, '南县', '南县', 3), (1879, 1875, 430922, '桃江县', '桃江', 3), (1880, 1875, 430923, '安化县', '安化', 3), (1881, 1875, 430981, '沅江市', '沅江', 3), (1882, 1797, 431000, '郴州市', '郴州', 2), (1883, 1882, 431002, '北湖区', '北湖', 3), (1884, 1882, 431003, '苏仙区', '苏仙', 3), (1885, 1882, 431021, '桂阳县', '桂阳', 3), (1886, 1882, 431022, '宜章县', '宜章', 3), (1887, 1882, 431023, '永兴县', '永兴', 3), (1888, 1882, 431024, '嘉禾县', '嘉禾', 3), (1889, 1882, 431025, '临武县', '临武', 3), (1890, 1882, 431026, '汝城县', '汝城', 3), (1891, 1882, 431027, '桂东县', '桂东', 3), (1892, 1882, 431028, '安仁县', '安仁', 3), (1893, 1882, 431081, '资兴市', '资兴', 3), (1894, 1797, 431100, '永州市', '永州', 2), (1895, 1894, 431102, '零陵区', '零陵', 3), (1896, 1894, 431103, '冷水滩区', '冷水滩', 3), (1897, 1894, 431121, '祁阳县', '祁阳', 3), (1898, 1894, 431122, '东安县', '东安', 3), (1899, 1894, 431123, '双牌县', '双牌', 3), (1900, 1894, 431124, '道县', '道县', 3), (1901, 1894, 431125, '江永县', '江永', 3), (1902, 1894, 431126, '宁远县', '宁远', 3), (1903, 1894, 431127, '蓝山县', '蓝山', 3), (1904, 1894, 431128, '新田县', '新田', 3), (1905, 1894, 431129, '江华瑶族自治县', '江华', 3), (1906, 1797, 431200, '怀化市', '怀化', 2), (1907, 1906, 431202, '鹤城区', '鹤城', 3), (1908, 1906, 431221, '中方县', '中方', 3), (1909, 1906, 431222, '沅陵县', '沅陵', 3), (1910, 1906, 431223, '辰溪县', '辰溪', 3), (1911, 1906, 431224, '溆浦县', '溆浦', 3), (1912, 1906, 431225, '会同县', '会同', 3), (1913, 1906, 431226, '麻阳苗族自治县', '麻阳', 3), (1914, 1906, 431227, '新晃侗族自治县', '新晃', 3), (1915, 1906, 431228, '芷江侗族自治县', '芷江', 3), (1916, 1906, 431229, '靖州苗族侗族自治县', '靖州', 3), (1917, 1906, 431230, '通道侗族自治县', '通道', 3), (1918, 1906, 431281, '洪江市', '洪江', 3), (1919, 1797, 431300, '娄底市', '娄底', 2), (1920, 1919, 431302, '娄星区', '娄星', 3), (1921, 1919, 431321, '双峰县', '双峰', 3), (1922, 1919, 431322, '新化县', '新化', 3), (1923, 1919, 431381, '冷水江市', '冷水江', 3), (1924, 1919, 431382, '涟源市', '涟源', 3), (1925, 1797, 433100, '湘西土家族苗族自治州', '湘西', 2), (1926, 1925, 433101, '吉首市', '吉首', 3), (1927, 1925, 433122, '泸溪县', '泸溪', 3), (1928, 1925, 433123, '凤凰县', '凤凰', 3), (1929, 1925, 433124, '花垣县', '花垣', 3), (1930, 1925, 433125, '保靖县', '保靖', 3), (1931, 1925, 433126, '古丈县', '古丈', 3), (1932, 1925, 433127, '永顺县', '永顺', 3), (1933, 1925, 433130, '龙山县', '龙山', 3), (1934, 0, 440000, '广东省', '广东', 1), (1935, 1934, 440100, '广州市', '广州', 2), (1936, 1935, 440103, '荔湾区', '荔湾', 3), (1937, 1935, 440104, '越秀区', '越秀', 3), (1938, 1935, 440105, '海珠区', '海珠', 3), (1939, 1935, 440106, '天河区', '天河', 3), (1940, 1935, 440111, '白云区', '白云', 3), (1941, 1935, 440112, '黄埔区', '黄埔', 3), (1942, 1935, 440113, '番禺区', '番禺', 3), (1943, 1935, 440114, '花都区', '花都', 3), (1944, 1935, 440115, '南沙区', '南沙', 3), (1945, 1935, 440117, '从化区', '从化', 3), (1946, 1935, 440118, '增城区', '增城', 3), (1947, 1934, 440200, '韶关市', '韶关', 2), (1948, 1947, 440203, '武江区', '武江', 3), (1949, 1947, 440204, '浈江区', '浈江', 3), (1950, 1947, 440205, '曲江区', '曲江', 3), (1951, 1947, 440222, '始兴县', '始兴', 3), (1952, 1947, 440224, '仁化县', '仁化', 3), (1953, 1947, 440229, '翁源县', '翁源', 3), (1954, 1947, 440232, '乳源瑶族自治县', '乳源', 3), (1955, 1947, 440233, '新丰县', '新丰', 3), (1956, 1947, 440281, '乐昌市', '乐昌', 3), (1957, 1947, 440282, '南雄市', '南雄', 3), (1958, 1934, 440300, '深圳市', '深圳', 2), (1959, 1958, 440303, '罗湖区', '罗湖', 3), (1960, 1958, 440304, '福田区', '福田', 3), (1961, 1958, 440305, '南山区', '南山', 3), (1962, 1958, 440306, '宝安区', '宝安', 3), (1963, 1958, 440307, '龙岗区', '龙岗', 3), (1964, 1958, 440308, '盐田区', '盐田', 3), (1965, 1958, 440309, '龙华区', '龙华', 3), (1966, 1958, 440310, '坪山区', '坪山', 3), (1967, 1934, 440400, '珠海市', '珠海', 2), (1968, 1967, 440402, '香洲区', '香洲', 3), (1969, 1967, 440403, '斗门区', '斗门', 3), (1970, 1967, 440404, '金湾区', '金湾', 3), (1971, 1934, 440500, '汕头市', '汕头', 2), (1972, 1971, 440507, '龙湖区', '龙湖', 3), (1973, 1971, 440511, '金平区', '金平', 3), (1974, 1971, 440512, '濠江区', '濠江', 3), (1975, 1971, 440513, '潮阳区', '潮阳', 3), (1976, 1971, 440514, '潮南区', '潮南', 3), (1977, 1971, 440515, '澄海区', '澄海', 3), (1978, 1971, 440523, '南澳县', '南澳', 3), (1979, 1934, 440600, '佛山市', '佛山', 2), (1980, 1979, 440604, '禅城区', '禅城', 3), (1981, 1979, 440605, '南海区', '南海', 3), (1982, 1979, 440606, '顺德区', '顺德', 3), (1983, 1979, 440607, '三水区', '三水', 3), (1984, 1979, 440608, '高明区', '高明', 3), (1985, 1934, 440700, '江门市', '江门', 2), (1986, 1985, 440703, '蓬江区', '蓬江', 3), (1987, 1985, 440704, '江海区', '江海', 3), (1988, 1985, 440705, '新会区', '新会', 3), (1989, 1985, 440781, '台山市', '台山', 3), (1990, 1985, 440783, '开平市', '开平', 3), (1991, 1985, 440784, '鹤山市', '鹤山', 3), (1992, 1985, 440785, '恩平市', '恩平', 3), (1993, 1934, 440800, '湛江市', '湛江', 2), (1994, 1993, 440802, '赤坎区', '赤坎', 3), (1995, 1993, 440803, '霞山区', '霞山', 3), (1996, 1993, 440804, '坡头区', '坡头', 3), (1997, 1993, 440811, '麻章区', '麻章', 3), (1998, 1993, 440823, '遂溪县', '遂溪', 3), (1999, 1993, 440825, '徐闻县', '徐闻', 3), (2000, 1993, 440881, '廉江市', '廉江', 3), (2001, 1993, 440882, '雷州市', '雷州', 3), (2002, 1993, 440883, '吴川市', '吴川', 3), (2003, 1934, 440900, '茂名市', '茂名', 2), (2004, 2003, 440902, '茂南区', '茂南', 3), (2005, 2003, 440904, '电白区', '电白', 3), (2006, 2003, 440981, '高州市', '高州', 3), (2007, 2003, 440982, '化州市', '化州', 3), (2008, 2003, 440983, '信宜市', '信宜', 3), (2009, 1934, 441200, '肇庆市', '肇庆', 2), (2010, 2009, 441202, '端州区', '端州', 3), (2011, 2009, 441203, '鼎湖区', '鼎湖', 3), (2012, 2009, 441204, '高要区', '高要', 3), (2013, 2009, 441223, '广宁县', '广宁', 3), (2014, 2009, 441224, '怀集县', '怀集', 3), (2015, 2009, 441225, '封开县', '封开', 3), (2016, 2009, 441226, '德庆县', '德庆', 3), (2017, 2009, 441284, '四会市', '四会', 3), (2018, 1934, 441300, '惠州市', '惠州', 2), (2019, 2018, 441302, '惠城区', '惠城', 3), (2020, 2018, 441303, '惠阳区', '惠阳', 3), (2021, 2018, 441322, '博罗县', '博罗', 3), (2022, 2018, 441323, '惠东县', '惠东', 3), (2023, 2018, 441324, '龙门县', '龙门', 3), (2024, 1934, 441400, '梅州市', '梅州', 2), (2025, 2024, 441402, '梅江区', '梅江', 3), (2026, 2024, 441403, '梅县区', '梅县', 3), (2027, 2024, 441422, '大埔县', '大埔', 3), (2028, 2024, 441423, '丰顺县', '丰顺', 3), (2029, 2024, 441424, '五华县', '五华', 3), (2030, 2024, 441426, '平远县', '平远', 3), (2031, 2024, 441427, '蕉岭县', '蕉岭', 3), (2032, 2024, 441481, '兴宁市', '兴宁', 3), (2033, 1934, 441500, '汕尾市', '汕尾', 2), (2034, 2033, 441502, '城区', '城区', 3), (2035, 2033, 441521, '海丰县', '海丰', 3), (2036, 2033, 441523, '陆河县', '陆河', 3), (2037, 2033, 441581, '陆丰市', '陆丰', 3), (2038, 1934, 441600, '河源市', '河源', 2), (2039, 2038, 441602, '源城区', '源城', 3), (2040, 2038, 441621, '紫金县', '紫金', 3), (2041, 2038, 441622, '龙川县', '龙川', 3), (2042, 2038, 441623, '连平县', '连平', 3), (2043, 2038, 441624, '和平县', '和平', 3), (2044, 2038, 441625, '东源县', '东源', 3), (2045, 1934, 441700, '阳江市', '阳江', 2), (2046, 2045, 441702, '江城区', '江城', 3), (2047, 2045, 441704, '阳东区', '阳东', 3), (2048, 2045, 441721, '阳西县', '阳西', 3), (2049, 2045, 441781, '阳春市', '阳春', 3), (2050, 1934, 441800, '清远市', '清远', 2), (2051, 2050, 441802, '清城区', '清城', 3), (2052, 2050, 441803, '清新区', '清新', 3), (2053, 2050, 441821, '佛冈县', '佛冈', 3), (2054, 2050, 441823, '阳山县', '阳山', 3), (2055, 2050, 441825, '连山壮族瑶族自治县', '连山', 3), (2056, 2050, 441826, '连南瑶族自治县', '连南', 3), (2057, 2050, 441881, '英德市', '英德', 3), (2058, 2050, 441882, '连州市', '连州', 3), (2059, 1934, 441900, '东莞市', '东莞', 2), (2060, 1934, 442000, '中山市', '中山', 2), (2061, 1934, 445100, '潮州市', '潮州', 2), (2062, 2061, 445102, '湘桥区', '湘桥', 3), (2063, 2061, 445103, '潮安区', '潮安', 3), (2064, 2061, 445122, '饶平县', '饶平', 3), (2065, 1934, 445200, '揭阳市', '揭阳', 2), (2066, 2065, 445202, '榕城区', '榕城', 3), (2067, 2065, 445203, '揭东区', '揭东', 3), (2068, 2065, 445222, '揭西县', '揭西', 3), (2069, 2065, 445224, '惠来县', '惠来', 3), (2070, 2065, 445281, '普宁市', '普宁', 3), (2071, 1934, 445300, '云浮市', '云浮', 2), (2072, 2071, 445302, '云城区', '云城', 3), (2073, 2071, 445303, '云安区', '云安', 3), (2074, 2071, 445321, '新兴县', '新兴', 3), (2075, 2071, 445322, '郁南县', '郁南', 3), (2076, 2071, 445381, '罗定市', '罗定', 3), (2077, 0, 450000, '广西壮族自治区', '广西', 1), (2078, 2077, 450100, '南宁市', '南宁', 2), (2079, 2078, 450102, '兴宁区', '兴宁', 3), (2080, 2078, 450103, '青秀区', '青秀', 3), (2081, 2078, 450105, '江南区', '江南', 3), (2082, 2078, 450107, '西乡塘区', '西乡塘', 3), (2083, 2078, 450108, '良庆区', '良庆', 3), (2084, 2078, 450109, '邕宁区', '邕宁', 3), (2085, 2078, 450110, '武鸣区', '武鸣', 3), (2086, 2078, 450123, '隆安县', '隆安', 3), (2087, 2078, 450124, '马山县', '马山', 3), (2088, 2078, 450125, '上林县', '上林', 3), (2089, 2078, 450126, '宾阳县', '宾阳', 3), (2090, 2078, 450127, '横县', '横县', 3), (2091, 2077, 450200, '柳州市', '柳州', 2), (2092, 2091, 450202, '城中区', '城中', 3), (2093, 2091, 450203, '鱼峰区', '鱼峰', 3), (2094, 2091, 450204, '柳南区', '柳南', 3), (2095, 2091, 450205, '柳北区', '柳北', 3), (2096, 2091, 450206, '柳江区', '柳江', 3), (2097, 2091, 450222, '柳城县', '柳城', 3), (2098, 2091, 450223, '鹿寨县', '鹿寨', 3), (2099, 2091, 450224, '融安县', '融安', 3), (2100, 2091, 450225, '融水苗族自治县', '融水', 3), (2101, 2091, 450226, '三江侗族自治县', '三江', 3), (2102, 2077, 450300, '桂林市', '桂林', 2), (2103, 2102, 450302, '秀峰区', '秀峰', 3), (2104, 2102, 450303, '叠彩区', '叠彩', 3), (2105, 2102, 450304, '象山区', '象山', 3), (2106, 2102, 450305, '七星区', '七星', 3), (2107, 2102, 450311, '雁山区', '雁山', 3), (2108, 2102, 450312, '临桂区', '临桂', 3), (2109, 2102, 450321, '阳朔县', '阳朔', 3), (2110, 2102, 450323, '灵川县', '灵川', 3), (2111, 2102, 450324, '全州县', '全州', 3), (2112, 2102, 450325, '兴安县', '兴安', 3), (2113, 2102, 450326, '永福县', '永福', 3), (2114, 2102, 450327, '灌阳县', '灌阳', 3), (2115, 2102, 450328, '龙胜各族自治县', '龙胜', 3), (2116, 2102, 450329, '资源县', '资源', 3), (2117, 2102, 450330, '平乐县', '平乐', 3), (2118, 2102, 450331, '荔浦县', '荔蒲', 3), (2119, 2102, 450332, '恭城瑶族自治县', '恭城', 3), (2120, 2077, 450400, '梧州市', '梧州', 2), (2121, 2120, 450403, '万秀区', '万秀', 3), (2122, 2120, 450405, '长洲区', '长洲', 3), (2123, 2120, 450406, '龙圩区', '龙圩', 3), (2124, 2120, 450421, '苍梧县', '苍梧', 3), (2125, 2120, 450422, '藤县', '藤县', 3), (2126, 2120, 450423, '蒙山县', '蒙山', 3), (2127, 2120, 450481, '岑溪市', '岑溪', 3), (2128, 2077, 450500, '北海市', '北海', 2), (2129, 2128, 450502, '海城区', '海城', 3), (2130, 2128, 450503, '银海区', '银海', 3), (2131, 2128, 450512, '铁山港区', '铁山港', 3), (2132, 2128, 450521, '合浦县', '合浦', 3), (2133, 2077, 450600, '防城港市', '防城港', 2), (2134, 2133, 450602, '港口区', '港口', 3), (2135, 2133, 450603, '防城区', '防城', 3), (2136, 2133, 450621, '上思县', '上思', 3), (2137, 2133, 450681, '东兴市', '东兴', 3), (2138, 2077, 450700, '钦州市', '钦州', 2), (2139, 2138, 450702, '钦南区', '钦南', 3), (2140, 2138, 450703, '钦北区', '钦北', 3), (2141, 2138, 450721, '灵山县', '灵山', 3), (2142, 2138, 450722, '浦北县', '浦北', 3), (2143, 2077, 450800, '贵港市', '贵港', 2), (2144, 2143, 450802, '港北区', '港北', 3), (2145, 2143, 450803, '港南区', '港南', 3), (2146, 2143, 450804, '覃塘区', '覃塘', 3), (2147, 2143, 450821, '平南县', '平南', 3), (2148, 2143, 450881, '桂平市', '桂平', 3), (2149, 2077, 450900, '玉林市', '玉林', 2), (2150, 2149, 450902, '玉州区', '玉州', 3), (2151, 2149, 450903, '福绵区', '福绵', 3), (2152, 2149, 450921, '容县', '容县', 3), (2153, 2149, 450922, '陆川县', '陆川', 3), (2154, 2149, 450923, '博白县', '博白', 3), (2155, 2149, 450924, '兴业县', '兴业', 3), (2156, 2149, 450981, '北流市', '北流', 3), (2157, 2077, 451000, '百色市', '百色', 2), (2158, 2157, 451002, '右江区', '右江', 3), (2159, 2157, 451021, '田阳县', '田阳', 3), (2160, 2157, 451022, '田东县', '田东', 3), (2161, 2157, 451023, '平果县', '平果', 3), (2162, 2157, 451024, '德保县', '德保', 3), (2163, 2157, 451026, '那坡县', '那坡', 3), (2164, 2157, 451027, '凌云县', '凌云', 3), (2165, 2157, 451028, '乐业县', '乐业', 3), (2166, 2157, 451029, '田林县', '田林', 3), (2167, 2157, 451030, '西林县', '西林', 3), (2168, 2157, 451031, '隆林各族自治县', '隆林', 3), (2169, 2157, 451081, '靖西市', '靖西', 3), (2170, 2077, 451100, '贺州市', '贺州', 2), (2171, 2170, 451102, '八步区', '八步', 3), (2172, 2170, 451103, '平桂区', '平桂', 3), (2173, 2170, 451121, '昭平县', '昭平', 3), (2174, 2170, 451122, '钟山县', '钟山', 3), (2175, 2170, 451123, '富川瑶族自治县', '富川', 3), (2176, 2077, 451200, '河池市', '河池', 2), (2177, 2176, 451202, '金城江区', '金城江', 3), (2178, 2176, 451203, '宜州区', '宜州', 3), (2179, 2176, 451221, '南丹县', '南丹', 3), (2180, 2176, 451222, '天峨县', '天峨', 3), (2181, 2176, 451223, '凤山县', '凤山', 3), (2182, 2176, 451224, '东兰县', '东兰', 3), (2183, 2176, 451225, '罗城仫佬族自治县', '罗城', 3), (2184, 2176, 451226, '环江毛南族自治县', '环江', 3), (2185, 2176, 451227, '巴马瑶族自治县', '巴马', 3), (2186, 2176, 451228, '都安瑶族自治县', '都安', 3), (2187, 2176, 451229, '大化瑶族自治县', '大化', 3), (2188, 2077, 451300, '来宾市', '来宾', 2), (2189, 2188, 451302, '兴宾区', '兴宾', 3), (2190, 2188, 451321, '忻城县', '忻城', 3), (2191, 2188, 451322, '象州县', '象州', 3), (2192, 2188, 451323, '武宣县', '武宣', 3), (2193, 2188, 451324, '金秀瑶族自治县', '金秀', 3), (2194, 2188, 451381, '合山市', '合山', 3), (2195, 2077, 451400, '崇左市', '崇左', 2), (2196, 2195, 451402, '江州区', '江洲', 3), (2197, 2195, 451421, '扶绥县', '扶绥', 3), (2198, 2195, 451422, '宁明县', '宁明', 3), (2199, 2195, 451423, '龙州县', '龙州', 3), (2200, 2195, 451424, '大新县', '大新', 3), (2201, 2195, 451425, '天等县', '天等', 3), (2202, 2195, 451481, '凭祥市', '凭祥', 3), (2203, 0, 460000, '海南省', '海南', 1), (2204, 2203, 460100, '海口市', '海口', 2), (2205, 2204, 460105, '秀英区', '秀英', 3), (2206, 2204, 460106, '龙华区', '龙华', 3), (2207, 2204, 460107, '琼山区', '琼山', 3), (2208, 2204, 460108, '美兰区', '美兰', 3), (2209, 2203, 460200, '三亚市', '三亚', 2), (2210, 2209, 460202, '海棠区', '海棠', 3), (2211, 2209, 460203, '吉阳区', '吉阳', 3), (2212, 2209, 460204, '天涯区', '天涯', 3), (2213, 2209, 460205, '崖州区', '崖州', 3), (2214, 2203, 460300, '三沙市', '三沙', 2), (2215, 2203, 460400, '儋州市', '儋州', 2), (2216, 2203, 469001, '五指山市', '五指山', 2), (2217, 2203, 469002, '琼海市', '琼海', 2), (2218, 2203, 469005, '文昌市', '文昌', 2), (2219, 2203, 469006, '万宁市', '万宁', 2), (2220, 2203, 469007, '东方市', '东方', 2), (2221, 2203, 469021, '定安县', '定安', 2), (2222, 2203, 469022, '屯昌县', '屯昌', 2), (2223, 2203, 469023, '澄迈县', '澄迈', 2), (2224, 2203, 469024, '临高县', '临高', 2), (2225, 2203, 469025, '白沙黎族自治县', '白沙', 2), (2226, 2203, 469026, '昌江黎族自治县', '昌江', 2), (2227, 2203, 469027, '乐东黎族自治县', '乐东', 2), (2228, 2203, 469028, '陵水黎族自治县', '陵水', 2), (2229, 2203, 469029, '保亭黎族苗族自治县', '保亭', 2), (2230, 2203, 469030, '琼中黎族苗族自治县', '琼中', 2), (2231, 0, 500000, '重庆市', '重庆', 1), (2232, 2231, 500100, '重庆市', '重庆', 2), (2233, 2232, 500101, '万州区', '万州', 3), (2234, 2232, 500102, '涪陵区', '涪陵', 3), (2235, 2232, 500103, '渝中区', '渝中', 3), (2236, 2232, 500104, '大渡口区', '大渡口', 3), (2237, 2232, 500105, '江北区', '江北', 3), (2238, 2232, 500106, '沙坪坝区', '沙坪坝', 3), (2239, 2232, 500107, '九龙坡区', '九龙坡', 3), (2240, 2232, 500108, '南岸区', '南岸', 3), (2241, 2232, 500109, '北碚区', '北碚', 3), (2242, 2232, 500110, '綦江区', '万盛', 3), (2243, 2232, 500111, '大足区', '双桥', 3), (2244, 2232, 500112, '渝北区', '渝北', 3), (2245, 2232, 500113, '巴南区', '巴南', 3), (2246, 2232, 500114, '黔江区', '黔江', 3), (2247, 2232, 500115, '长寿区', '长寿', 3), (2248, 2232, 500116, '江津区', '江津', 3), (2249, 2232, 500117, '合川区', '合川', 3), (2250, 2232, 500118, '永川区', '永川', 3), (2251, 2232, 500119, '南川区', '南川', 3), (2252, 2232, 500120, '璧山区', '璧山', 3), (2253, 2232, 500151, '铜梁区', '铜梁', 3), (2254, 2232, 500152, '潼南区', '潼南', 3), (2255, 2232, 500153, '荣昌区', '荣昌', 3), (2256, 2232, 500154, '开州区', '开州', 3), (2257, 2232, 500155, '梁平区', '梁平', 3), (2258, 2232, 500156, '武隆区', '武隆', 3), (2259, 2232, 500229, '城口县', '城口', 3), (2260, 2232, 500230, '丰都县', '丰都', 3), (2261, 2232, 500231, '垫江县', '垫江', 3), (2262, 2232, 500233, '忠县', '忠县', 3), (2263, 2232, 500235, '云阳县', '云阳', 3), (2264, 2232, 500236, '奉节县', '奉节', 3), (2265, 2232, 500237, '巫山县', '巫山', 3), (2266, 2232, 500238, '巫溪县', '巫溪', 3), (2267, 2232, 500240, '石柱土家族自治县', '石柱', 3), (2268, 2232, 500241, '秀山土家族苗族自治县', '秀山', 3), (2269, 2232, 500242, '酉阳土家族苗族自治县', '酉阳', 3), (2270, 2232, 500243, '彭水苗族土家族自治县', '彭水', 3), (2271, 0, 510000, '四川省', '四川', 1), (2272, 2271, 510100, '成都市', '成都', 2), (2273, 2272, 510104, '锦江区', '锦江', 3), (2274, 2272, 510105, '青羊区', '青羊', 3), (2275, 2272, 510106, '金牛区', '金牛', 3), (2276, 2272, 510107, '武侯区', '武侯', 3), (2277, 2272, 510108, '成华区', '成华', 3), (2278, 2272, 510112, '龙泉驿区', '龙泉驿', 3), (2279, 2272, 510113, '青白江区', '青白江', 3), (2280, 2272, 510114, '新都区', '新都', 3), (2281, 2272, 510115, '温江区', '温江', 3), (2282, 2272, 510116, '双流区', '双流', 3), (2283, 2272, 510117, '郫都区', '郫都', 3), (2284, 2272, 510121, '金堂县', '金堂', 3), (2285, 2272, 510129, '大邑县', '大邑', 3), (2286, 2272, 510131, '蒲江县', '蒲江', 3), (2287, 2272, 510132, '新津县', '新津', 3), (2288, 2272, 510181, '都江堰市', '都江堰', 3), (2289, 2272, 510182, '彭州市', '彭州', 3), (2290, 2272, 510183, '邛崃市', '邛崃', 3), (2291, 2272, 510184, '崇州市', '崇州', 3), (2292, 2272, 510185, '简阳市', '简阳', 3), (2293, 2271, 510300, '自贡市', '自贡', 2), (2294, 2293, 510302, '自流井区', '自流井', 3), (2295, 2293, 510303, '贡井区', '贡井', 3), (2296, 2293, 510304, '大安区', '大安', 3), (2297, 2293, 510311, '沿滩区', '沿滩', 3), (2298, 2293, 510321, '荣县', '荣县', 3), (2299, 2293, 510322, '富顺县', '富顺', 3), (2300, 2271, 510400, '攀枝花市', '攀枝花', 2), (2301, 2300, 510402, '东区', '东区', 3), (2302, 2300, 510403, '西区', '西区', 3), (2303, 2300, 510411, '仁和区', '仁和', 3), (2304, 2300, 510421, '米易县', '米易', 3), (2305, 2300, 510422, '盐边县', '盐边', 3), (2306, 2271, 510500, '泸州市', '泸州', 2), (2307, 2306, 510502, '江阳区', '江阳', 3), (2308, 2306, 510503, '纳溪区', '纳溪', 3), (2309, 2306, 510504, '龙马潭区', '龙马潭', 3), (2310, 2306, 510521, '泸县', '泸县', 3), (2311, 2306, 510522, '合江县', '合江', 3), (2312, 2306, 510524, '叙永县', '叙永', 3), (2313, 2306, 510525, '古蔺县', '古蔺', 3), (2314, 2271, 510600, '德阳市', '德阳', 2), (2315, 2314, 510603, '旌阳区', '旌阳', 3), (2316, 2314, 510623, '中江县', '中江', 3), (2317, 2314, 510626, '罗江县', '罗江', 3), (2318, 2314, 510681, '广汉市', '广汉', 3), (2319, 2314, 510682, '什邡市', '什邡', 3), (2320, 2314, 510683, '绵竹市', '绵竹', 3), (2321, 2271, 510700, '绵阳市', '绵阳', 2), (2322, 2321, 510703, '涪城区', '涪城', 3), (2323, 2321, 510704, '游仙区', '游仙', 3), (2324, 2321, 510705, '安州区', '安州', 3), (2325, 2321, 510722, '三台县', '三台', 3), (2326, 2321, 510723, '盐亭县', '盐亭', 3), (2327, 2321, 510725, '梓潼县', '梓潼', 3), (2328, 2321, 510726, '北川羌族自治县', '北川', 3), (2329, 2321, 510727, '平武县', '平武', 3), (2330, 2321, 510781, '江油市', '江油', 3), (2331, 2271, 510800, '广元市', '广元', 2), (2332, 2331, 510802, '利州区', '利州', 3), (2333, 2331, 510811, '昭化区', '元坝', 3), (2334, 2331, 510812, '朝天区', '朝天', 3), (2335, 2331, 510821, '旺苍县', '旺苍', 3), (2336, 2331, 510822, '青川县', '青川', 3), (2337, 2331, 510823, '剑阁县', '剑阁', 3), (2338, 2331, 510824, '苍溪县', '苍溪', 3), (2339, 2271, 510900, '遂宁市', '遂宁', 2), (2340, 2339, 510903, '船山区', '船山', 3), (2341, 2339, 510904, '安居区', '安居', 3), (2342, 2339, 510921, '蓬溪县', '蓬溪', 3), (2343, 2339, 510922, '射洪县', '射洪', 3), (2344, 2339, 510923, '大英县', '大英', 3), (2345, 2271, 511000, '内江市', '内江', 2), (2346, 2345, 511002, '市中区', '市中', 3), (2347, 2345, 511011, '东兴区', '东兴', 3), (2348, 2345, 511024, '威远县', '威远', 3), (2349, 2345, 511025, '资中县', '资中', 3), (2350, 2345, 511028, '隆昌县', '隆昌', 3), (2351, 2271, 511100, '乐山市', '乐山', 2), (2352, 2351, 511102, '市中区', '市中', 3), (2353, 2351, 511111, '沙湾区', '沙湾', 3), (2354, 2351, 511112, '五通桥区', '五通桥', 3), (2355, 2351, 511113, '金口河区', '金口河', 3), (2356, 2351, 511123, '犍为县', '犍为', 3), (2357, 2351, 511124, '井研县', '井研', 3), (2358, 2351, 511126, '夹江县', '夹江', 3), (2359, 2351, 511129, '沐川县', '沐川', 3), (2360, 2351, 511132, '峨边彝族自治县', '峨边', 3), (2361, 2351, 511133, '马边彝族自治县', '马边', 3), (2362, 2351, 511181, '峨眉山市', '峨眉山', 3), (2363, 2271, 511300, '南充市', '南充', 2), (2364, 2363, 511302, '顺庆区', '顺庆', 3), (2365, 2363, 511303, '高坪区', '高坪', 3), (2366, 2363, 511304, '嘉陵区', '嘉陵', 3), (2367, 2363, 511321, '南部县', '南部', 3), (2368, 2363, 511322, '营山县', '营山', 3), (2369, 2363, 511323, '蓬安县', '蓬安', 3), (2370, 2363, 511324, '仪陇县', '仪陇', 3), (2371, 2363, 511325, '西充县', '西充', 3), (2372, 2363, 511381, '阆中市', '阆中', 3), (2373, 2271, 511400, '眉山市', '眉山', 2), (2374, 2373, 511402, '东坡区', '东坡', 3), (2375, 2373, 511403, '彭山区', '彭山', 3), (2376, 2373, 511421, '仁寿县', '仁寿', 3), (2377, 2373, 511423, '洪雅县', '洪雅', 3), (2378, 2373, 511424, '丹棱县', '丹棱', 3), (2379, 2373, 511425, '青神县', '青神', 3), (2380, 2271, 511500, '宜宾市', '宜宾', 2), (2381, 2380, 511502, '翠屏区', '翠屏', 3), (2382, 2380, 511503, '南溪区', '南溪', 3), (2383, 2380, 511521, '宜宾县', '宜宾', 3), (2384, 2380, 511523, '江安县', '江安', 3), (2385, 2380, 511524, '长宁县', '长宁', 3), (2386, 2380, 511525, '高县', '高县', 3), (2387, 2380, 511526, '珙县', '珙县', 3), (2388, 2380, 511527, '筠连县', '筠连', 3), (2389, 2380, 511528, '兴文县', '兴文', 3), (2390, 2380, 511529, '屏山县', '屏山', 3), (2391, 2271, 511600, '广安市', '广安', 2), (2392, 2391, 511602, '广安区', '广安', 3), (2393, 2391, 511603, '前锋区', '前锋', 3), (2394, 2391, 511621, '岳池县', '岳池', 3), (2395, 2391, 511622, '武胜县', '武胜', 3), (2396, 2391, 511623, '邻水县', '邻水', 3), (2397, 2391, 511681, '华蓥市', '华蓥', 3), (2398, 2271, 511700, '达州市', '达州', 2), (2399, 2398, 511702, '通川区', '通川', 3), (2400, 2398, 511703, '达川区', '达川', 3), (2401, 2398, 511722, '宣汉县', '宣汉', 3), (2402, 2398, 511723, '开江县', '开江', 3), (2403, 2398, 511724, '大竹县', '大竹', 3), (2404, 2398, 511725, '渠县', '渠县', 3), (2405, 2398, 511781, '万源市', '万源', 3), (2406, 2271, 511800, '雅安市', '雅安', 2), (2407, 2406, 511802, '雨城区', '雨城', 3), (2408, 2406, 511803, '名山区', '名山', 3), (2409, 2406, 511822, '荥经县', '荥经', 3), (2410, 2406, 511823, '汉源县', '汉源', 3), (2411, 2406, 511824, '石棉县', '石棉', 3), (2412, 2406, 511825, '天全县', '天全', 3), (2413, 2406, 511826, '芦山县', '芦山', 3), (2414, 2406, 511827, '宝兴县', '宝兴', 3), (2415, 2271, 511900, '巴中市', '巴中', 2), (2416, 2415, 511902, '巴州区', '巴州', 3), (2417, 2415, 511903, '恩阳区', '恩阳', 3), (2418, 2415, 511921, '通江县', '通江', 3), (2419, 2415, 511922, '南江县', '南江', 3), (2420, 2415, 511923, '平昌县', '平昌', 3), (2421, 2271, 512000, '资阳市', '资阳', 2), (2422, 2421, 512002, '雁江区', '雁江', 3), (2423, 2421, 512021, '安岳县', '安岳', 3), (2424, 2421, 512022, '乐至县', '乐至', 3), (2425, 2271, 513200, '阿坝藏族羌族自治州', '阿坝', 2), (2426, 2425, 513201, '马尔康市', '马尔康', 3), (2427, 2425, 513221, '汶川县', '汶川', 3), (2428, 2425, 513222, '理县', '理县', 3), (2429, 2425, 513223, '茂县', '茂县', 3), (2430, 2425, 513224, '松潘县', '松潘', 3), (2431, 2425, 513225, '九寨沟县', '九寨沟', 3), (2432, 2425, 513226, '金川县', '金川', 3), (2433, 2425, 513227, '小金县', '小金', 3), (2434, 2425, 513228, '黑水县', '黑水', 3), (2435, 2425, 513230, '壤塘县', '壤塘', 3), (2436, 2425, 513231, '阿坝县', '阿坝', 3), (2437, 2425, 513232, '若尔盖县', '若尔盖', 3), (2438, 2425, 513233, '红原县', '红原', 3), (2439, 2271, 513300, '甘孜藏族自治州', '甘孜', 2), (2440, 2439, 513301, '康定市', '康定', 3), (2441, 2439, 513322, '泸定县', '泸定', 3), (2442, 2439, 513323, '丹巴县', '丹巴', 3), (2443, 2439, 513324, '九龙县', '九龙', 3), (2444, 2439, 513325, '雅江县', '雅江', 3), (2445, 2439, 513326, '道孚县', '道孚', 3), (2446, 2439, 513327, '炉霍县', '炉霍', 3), (2447, 2439, 513328, '甘孜县', '甘孜', 3), (2448, 2439, 513329, '新龙县', '新龙', 3), (2449, 2439, 513330, '德格县', '德格', 3), (2450, 2439, 513331, '白玉县', '白玉', 3), (2451, 2439, 513332, '石渠县', '石渠', 3), (2452, 2439, 513333, '色达县', '色达', 3), (2453, 2439, 513334, '理塘县', '理塘', 3), (2454, 2439, 513335, '巴塘县', '巴塘', 3), (2455, 2439, 513336, '乡城县', '乡城', 3), (2456, 2439, 513337, '稻城县', '稻城', 3), (2457, 2439, 513338, '得荣县', '得荣', 3), (2458, 2271, 513400, '凉山彝族自治州', '凉山', 2), (2459, 2458, 513401, '西昌市', '西昌', 3), (2460, 2458, 513422, '木里藏族自治县', '木里', 3), (2461, 2458, 513423, '盐源县', '盐源', 3), (2462, 2458, 513424, '德昌县', '德昌', 3), (2463, 2458, 513425, '会理县', '会理', 3), (2464, 2458, 513426, '会东县', '会东', 3), (2465, 2458, 513427, '宁南县', '宁南', 3), (2466, 2458, 513428, '普格县', '普格', 3), (2467, 2458, 513429, '布拖县', '布拖', 3), (2468, 2458, 513430, '金阳县', '金阳', 3), (2469, 2458, 513431, '昭觉县', '昭觉', 3), (2470, 2458, 513432, '喜德县', '喜德', 3), (2471, 2458, 513433, '冕宁县', '冕宁', 3), (2472, 2458, 513434, '越西县', '越西', 3), (2473, 2458, 513435, '甘洛县', '甘洛', 3), (2474, 2458, 513436, '美姑县', '美姑', 3), (2475, 2458, 513437, '雷波县', '雷波', 3), (2476, 0, 520000, '贵州省', '贵州', 1), (2477, 2476, 520100, '贵阳市', '贵阳', 2), (2478, 2477, 520102, '南明区', '南明', 3), (2479, 2477, 520103, '云岩区', '云岩', 3), (2480, 2477, 520111, '花溪区', '花溪', 3), (2481, 2477, 520112, '乌当区', '乌当', 3), (2482, 2477, 520113, '白云区', '白云', 3), (2483, 2477, 520115, '观山湖区', '观山湖', 3), (2484, 2477, 520121, '开阳县', '开阳', 3), (2485, 2477, 520122, '息烽县', '息烽', 3), (2486, 2477, 520123, '修文县', '修文', 3), (2487, 2477, 520181, '清镇市', '清镇', 3), (2488, 2476, 520200, '六盘水市', '六盘水', 2), (2489, 2488, 520201, '钟山区', '钟山', 3), (2490, 2488, 520203, '六枝特区', '六枝特', 3), (2491, 2488, 520221, '水城县', '水城', 3), (2492, 2488, 520222, '盘县', '盘县', 3), (2493, 2476, 520300, '遵义市', '遵义', 2), (2494, 2493, 520302, '红花岗区', '红花岗', 3), (2495, 2493, 520303, '汇川区', '汇川', 3), (2496, 2493, 520304, '播州区', '播州', 3), (2497, 2493, 520322, '桐梓县', '桐梓', 3), (2498, 2493, 520323, '绥阳县', '绥阳', 3), (2499, 2493, 520324, '正安县', '正安', 3), (2500, 2493, 520325, '道真仡佬族苗族自治县', '道真', 3), (2501, 2493, 520326, '务川仡佬族苗族自治县', '务川', 3), (2502, 2493, 520327, '凤冈县', '凤冈', 3), (2503, 2493, 520328, '湄潭县', '湄潭', 3), (2504, 2493, 520329, '余庆县', '余庆', 3), (2505, 2493, 520330, '习水县', '习水', 3), (2506, 2493, 520381, '赤水市', '赤水', 3), (2507, 2493, 520382, '仁怀市', '仁怀', 3), (2508, 2476, 520400, '安顺市', '安顺', 2), (2509, 2508, 520402, '西秀区', '西秀', 3), (2510, 2508, 520403, '平坝区', '平坝', 3), (2511, 2508, 520422, '普定县', '普定', 3), (2512, 2508, 520423, '镇宁布依族苗族自治县', '镇宁', 3), (2513, 2508, 520424, '关岭布依族苗族自治县', '关岭', 3), (2514, 2508, 520425, '紫云苗族布依族自治县', '紫云', 3), (2515, 2476, 520500, '毕节市', '毕节', 2), (2516, 2515, 520502, '七星关区', '七星关', 3), (2517, 2515, 520521, '大方县', '大方', 3), (2518, 2515, 520522, '黔西县', '黔西南', 3), (2519, 2515, 520523, '金沙县', '金沙', 3), (2520, 2515, 520524, '织金县', '织金', 3), (2521, 2515, 520525, '纳雍县', '纳雍', 3), (2522, 2515, 520526, '威宁彝族回族苗族自治县', '威宁', 3), (2523, 2515, 520527, '赫章县', '赫章', 3), (2524, 2476, 520600, '铜仁市', '铜仁', 2), (2525, 2524, 520602, '碧江区', '碧江', 3), (2526, 2524, 520603, '万山区', '万山特', 3), (2527, 2524, 520621, '江口县', '江口', 3), (2528, 2524, 520622, '玉屏侗族自治县', '玉屏', 3), (2529, 2524, 520623, '石阡县', '石阡', 3), (2530, 2524, 520624, '思南县', '思南', 3), (2531, 2524, 520625, '印江土家族苗族自治县', '印江', 3), (2532, 2524, 520626, '德江县', '德江', 3), (2533, 2524, 520627, '沿河土家族自治县', '沿河', 3), (2534, 2524, 520628, '松桃苗族自治县', '松桃', 3), (2535, 2476, 522300, '黔西南布依族苗族自治州', '黔西南', 2), (2536, 2535, 522301, '兴义市', '兴义', 3), (2537, 2535, 522322, '兴仁县', '兴仁', 3), (2538, 2535, 522323, '普安县', '普安', 3), (2539, 2535, 522324, '晴隆县', '晴隆', 3), (2540, 2535, 522325, '贞丰县', '贞丰', 3), (2541, 2535, 522326, '望谟县', '望谟', 3), (2542, 2535, 522327, '册亨县', '册亨', 3), (2543, 2535, 522328, '安龙县', '安龙', 3), (2544, 2476, 522600, '黔东南苗族侗族自治州', '黔东南', 2), (2545, 2544, 522601, '凯里市', '凯里', 3), (2546, 2544, 522622, '黄平县', '黄平', 3), (2547, 2544, 522623, '施秉县', '施秉', 3), (2548, 2544, 522624, '三穗县', '三穗', 3), (2549, 2544, 522625, '镇远县', '镇远', 3), (2550, 2544, 522626, '岑巩县', '岑巩', 3), (2551, 2544, 522627, '天柱县', '天柱', 3), (2552, 2544, 522628, '锦屏县', '锦屏', 3), (2553, 2544, 522629, '剑河县', '剑河', 3), (2554, 2544, 522630, '台江县', '台江', 3), (2555, 2544, 522631, '黎平县', '黎平', 3), (2556, 2544, 522632, '榕江县', '榕江', 3), (2557, 2544, 522633, '从江县', '从江', 3), (2558, 2544, 522634, '雷山县', '雷山', 3), (2559, 2544, 522635, '麻江县', '麻江', 3), (2560, 2544, 522636, '丹寨县', '丹寨', 3), (2561, 2476, 522700, '黔南布依族苗族自治州', '黔南', 2), (2562, 2561, 522701, '都匀市', '都匀', 3), (2563, 2561, 522702, '福泉市', '福泉', 3), (2564, 2561, 522722, '荔波县', '荔波', 3), (2565, 2561, 522723, '贵定县', '贵定', 3), (2566, 2561, 522725, '瓮安县', '瓮安', 3), (2567, 2561, 522726, '独山县', '独山', 3), (2568, 2561, 522727, '平塘县', '平塘', 3), (2569, 2561, 522728, '罗甸县', '罗甸', 3), (2570, 2561, 522729, '长顺县', '长顺', 3), (2571, 2561, 522730, '龙里县', '龙里', 3), (2572, 2561, 522731, '惠水县', '惠水', 3), (2573, 2561, 522732, '三都水族自治县', '三都', 3), (2574, 0, 530000, '云南省', '云南', 1), (2575, 2574, 530100, '昆明市', '昆明', 2), (2576, 2575, 530102, '五华区', '五华', 3), (2577, 2575, 530103, '盘龙区', '盘龙', 3), (2578, 2575, 530111, '官渡区', '官渡', 3), (2579, 2575, 530112, '西山区', '西山', 3), (2580, 2575, 530113, '东川区', '东川', 3), (2581, 2575, 530114, '呈贡区', '呈贡', 3), (2582, 2575, 530115, '晋宁区', '晋宁', 3), (2583, 2575, 530124, '富民县', '富民', 3), (2584, 2575, 530125, '宜良县', '宜良', 3), (2585, 2575, 530126, '石林彝族自治县', '石林', 3), (2586, 2575, 530127, '嵩明县', '嵩明', 3), (2587, 2575, 530128, '禄劝彝族苗族自治县', '禄劝', 3), (2588, 2575, 530129, '寻甸回族彝族自治县', '寻甸', 3), (2589, 2575, 530181, '安宁市', '安宁', 3), (2590, 2574, 530300, '曲靖市', '曲靖', 2), (2591, 2590, 530302, '麒麟区', '麒麟', 3), (2592, 2590, 530303, '沾益区', '沾益', 3), (2593, 2590, 530321, '马龙县', '马龙', 3), (2594, 2590, 530322, '陆良县', '陆良', 3), (2595, 2590, 530323, '师宗县', '师宗', 3), (2596, 2590, 530324, '罗平县', '罗平', 3), (2597, 2590, 530325, '富源县', '富源', 3), (2598, 2590, 530326, '会泽县', '会泽', 3), (2599, 2590, 530381, '宣威市', '宣威', 3), (2600, 2574, 530400, '玉溪市', '玉溪', 2), (2601, 2600, 530402, '红塔区', '红塔', 3), (2602, 2600, 530403, '江川区', '江川', 3), (2603, 2600, 530422, '澄江县', '澄江', 3), (2604, 2600, 530423, '通海县', '通海', 3), (2605, 2600, 530424, '华宁县', '华宁', 3), (2606, 2600, 530425, '易门县', '易门', 3), (2607, 2600, 530426, '峨山彝族自治县', '峨山', 3), (2608, 2600, 530427, '新平彝族傣族自治县', '新平', 3), (2609, 2600, 530428, '元江哈尼族彝族傣族自治县', '元江', 3), (2610, 2574, 530500, '保山市', '保山', 2), (2611, 2610, 530502, '隆阳区', '隆阳', 3), (2612, 2610, 530521, '施甸县', '施甸', 3), (2613, 2610, 530523, '龙陵县', '龙陵', 3), (2614, 2610, 530524, '昌宁县', '昌宁', 3), (2615, 2610, 530581, '腾冲市', '腾冲', 3), (2616, 2574, 530600, '昭通市', '昭通', 2), (2617, 2616, 530602, '昭阳区', '昭阳', 3), (2618, 2616, 530621, '鲁甸县', '鲁甸', 3), (2619, 2616, 530622, '巧家县', '巧家', 3), (2620, 2616, 530623, '盐津县', '盐津', 3), (2621, 2616, 530624, '大关县', '大关', 3), (2622, 2616, 530625, '永善县', '永善', 3), (2623, 2616, 530626, '绥江县', '绥江', 3), (2624, 2616, 530627, '镇雄县', '镇雄', 3), (2625, 2616, 530628, '彝良县', '彝良', 3), (2626, 2616, 530629, '威信县', '威信', 3), (2627, 2616, 530630, '水富县', '水富', 3), (2628, 2574, 530700, '丽江市', '丽江', 2), (2629, 2628, 530702, '古城区', '古城', 3), (2630, 2628, 530721, '玉龙纳西族自治县', '玉龙', 3), (2631, 2628, 530722, '永胜县', '永胜', 3), (2632, 2628, 530723, '华坪县', '华坪', 3), (2633, 2628, 530724, '宁蒗彝族自治县', '宁蒗', 3), (2634, 2574, 530800, '普洱市', '普洱', 2), (2635, 2634, 530802, '思茅区', '思茅', 3), (2636, 2634, 530821, '宁洱哈尼族彝族自治县', '宁洱', 3), (2637, 2634, 530822, '墨江哈尼族自治县', '墨江', 3), (2638, 2634, 530823, '景东彝族自治县', '景东', 3), (2639, 2634, 530824, '景谷傣族彝族自治县', '景谷', 3), (2640, 2634, 530825, '镇沅彝族哈尼族拉祜族自治县', '镇沅', 3), (2641, 2634, 530826, '江城哈尼族彝族自治县', '江城', 3), (2642, 2634, 530827, '孟连傣族拉祜族佤族自治县', '孟连', 3), (2643, 2634, 530828, '澜沧拉祜族自治县', '澜沧', 3), (2644, 2634, 530829, '西盟佤族自治县', '西盟', 3), (2645, 2574, 530900, '临沧市', '临沧', 2), (2646, 2645, 530902, '临翔区', '临翔', 3), (2647, 2645, 530921, '凤庆县', '凤庆', 3), (2648, 2645, 530922, '云县', '云县', 3), (2649, 2645, 530923, '永德县', '永德', 3), (2650, 2645, 530924, '镇康县', '镇康', 3), (2651, 2645, 530925, '双江拉祜族佤族布朗族傣族自治县', '双江', 3), (2652, 2645, 530926, '耿马傣族佤族自治县', '耿马', 3), (2653, 2645, 530927, '沧源佤族自治县', '沧源', 3), (2654, 2574, 532300, '楚雄彝族自治州', '楚雄', 2), (2655, 2654, 532301, '楚雄市', '楚雄', 3), (2656, 2654, 532322, '双柏县', '双柏', 3), (2657, 2654, 532323, '牟定县', '牟定', 3), (2658, 2654, 532324, '南华县', '南华', 3), (2659, 2654, 532325, '姚安县', '姚安', 3), (2660, 2654, 532326, '大姚县', '大姚', 3), (2661, 2654, 532327, '永仁县', '永仁', 3), (2662, 2654, 532328, '元谋县', '元谋', 3), (2663, 2654, 532329, '武定县', '武定', 3), (2664, 2654, 532331, '禄丰县', '禄丰', 3), (2665, 2574, 532500, '红河哈尼族彝族自治州', '红河', 2), (2666, 2665, 532501, '个旧市', '个旧', 3), (2667, 2665, 532502, '开远市', '开远', 3), (2668, 2665, 532503, '蒙自市', '蒙自', 3), (2669, 2665, 532504, '弥勒市', '弥勒', 3), (2670, 2665, 532523, '屏边苗族自治县', '屏边', 3), (2671, 2665, 532524, '建水县', '建水', 3), (2672, 2665, 532525, '石屏县', '石屏', 3), (2673, 2665, 532527, '泸西县', '泸西', 3), (2674, 2665, 532528, '元阳县', '元阳', 3), (2675, 2665, 532529, '红河县', '红河', 3), (2676, 2665, 532530, '金平苗族瑶族傣族自治县', '金平', 3), (2677, 2665, 532531, '绿春县', '绿春', 3), (2678, 2665, 532532, '河口瑶族自治县', '河口', 3), (2679, 2574, 532600, '文山壮族苗族自治州', '文山', 2), (2680, 2679, 532601, '文山市', '文山', 3), (2681, 2679, 532622, '砚山县', '砚山', 3), (2682, 2679, 532623, '西畴县', '西畴', 3), (2683, 2679, 532624, '麻栗坡县', '麻栗坡', 3), (2684, 2679, 532625, '马关县', '马关', 3), (2685, 2679, 532626, '丘北县', '丘北', 3), (2686, 2679, 532627, '广南县', '广南', 3), (2687, 2679, 532628, '富宁县', '富宁', 3), (2688, 2574, 532800, '西双版纳傣族自治州', '西双版纳', 2), (2689, 2688, 532801, '景洪市', '景洪', 3), (2690, 2688, 532822, '勐海县', '勐海', 3), (2691, 2688, 532823, '勐腊县', '勐腊', 3), (2692, 2574, 532900, '大理白族自治州', '大理', 2), (2693, 2692, 532901, '大理市', '大理', 3), (2694, 2692, 532922, '漾濞彝族自治县', '漾濞', 3), (2695, 2692, 532923, '祥云县', '祥云', 3), (2696, 2692, 532924, '宾川县', '宾川', 3), (2697, 2692, 532925, '弥渡县', '弥渡', 3), (2698, 2692, 532926, '南涧彝族自治县', '南涧', 3), (2699, 2692, 532927, '巍山彝族回族自治县', '巍山', 3), (2700, 2692, 532928, '永平县', '永平', 3), (2701, 2692, 532929, '云龙县', '云龙', 3), (2702, 2692, 532930, '洱源县', '洱源', 3), (2703, 2692, 532931, '剑川县', '剑川', 3), (2704, 2692, 532932, '鹤庆县', '鹤庆', 3), (2705, 2574, 533100, '德宏傣族景颇族自治州', '德宏', 2), (2706, 2705, 533102, '瑞丽市', '瑞丽', 3), (2707, 2705, 533103, '芒市', '芒市', 3), (2708, 2705, 533122, '梁河县', '梁河', 3), (2709, 2705, 533123, '盈江县', '盈江', 3), (2710, 2705, 533124, '陇川县', '陇川', 3), (2711, 2574, 533300, '怒江傈僳族自治州', '怒江', 2), (2712, 2711, 533301, '泸水市', '泸水', 3), (2713, 2711, 533323, '福贡县', '福贡', 3), (2714, 2711, 533324, '贡山独龙族怒族自治县', '贡山', 3), (2715, 2711, 533325, '兰坪白族普米族自治县', '兰坪', 3), (2716, 2574, 533400, '迪庆藏族自治州', '迪庆', 2), (2717, 2716, 533401, '香格里拉市', '香格里拉', 3), (2718, 2716, 533422, '德钦县', '德钦', 3), (2719, 2716, 533423, '维西傈僳族自治县', '维西', 3), (2720, 0, 540000, '西藏自治区', '西藏', 1), (2721, 2720, 540100, '拉萨市', '拉萨', 2), (2722, 2721, 540102, '城关区', '城关', 3), (2723, 2721, 540103, '堆龙德庆区', '堆龙德庆', 3), (2724, 2721, 540121, '林周县', '林周', 3), (2725, 2721, 540122, '当雄县', '当雄', 3), (2726, 2721, 540123, '尼木县', '尼木', 3), (2727, 2721, 540124, '曲水县', '曲水', 3), (2728, 2721, 540126, '达孜县', '达孜', 3), (2729, 2721, 540127, '墨竹工卡县', '墨竹工卡', 3), (2730, 2720, 540200, '日喀则市', '日喀则', 2), (2731, 2730, 540202, '桑珠孜区', '桑珠孜', 3), (2732, 2730, 540221, '南木林县', '南木林', 3), (2733, 2730, 540222, '江孜县', '江孜', 3), (2734, 2730, 540223, '定日县', '定日', 3), (2735, 2730, 540224, '萨迦县', '萨迦', 3), (2736, 2730, 540225, '拉孜县', '拉孜', 3), (2737, 2730, 540226, '昂仁县', '昂仁', 3), (2738, 2730, 540227, '谢通门县', '谢通门', 3), (2739, 2730, 540228, '白朗县', '白朗', 3), (2740, 2730, 540229, '仁布县', '仁布', 3), (2741, 2730, 540230, '康马县', '康马', 3), (2742, 2730, 540231, '定结县', '定结', 3), (2743, 2730, 540232, '仲巴县', '仲巴', 3), (2744, 2730, 540233, '亚东县', '亚东', 3), (2745, 2730, 540234, '吉隆县', '吉隆', 3), (2746, 2730, 540235, '聂拉木县', '聂拉木', 3), (2747, 2730, 540236, '萨嘎县', '萨嘎', 3), (2748, 2730, 540237, '岗巴县', '岗巴', 3), (2749, 2720, 540300, '昌都市', '昌都', 2), (2750, 2749, 540302, '卡若区', '卡若', 3), (2751, 2749, 540321, '江达县', '江达', 3), (2752, 2749, 540322, '贡觉县', '贡觉', 3), (2753, 2749, 540323, '类乌齐县', '类乌齐', 3), (2754, 2749, 540324, '丁青县', '丁青', 3), (2755, 2749, 540325, '察雅县', '察雅', 3), (2756, 2749, 540326, '八宿县', '八宿', 3), (2757, 2749, 540327, '左贡县', '左贡', 3), (2758, 2749, 540328, '芒康县', '芒康', 3), (2759, 2749, 540329, '洛隆县', '洛隆', 3), (2760, 2749, 540330, '边坝县', '边坝', 3), (2761, 2720, 540400, '林芝市', '林芝', 2), (2762, 2761, 540402, '巴宜区', '巴宜', 3), (2763, 2761, 540421, '工布江达县', '工布江达', 3), (2764, 2761, 540422, '米林县', '米林', 3), (2765, 2761, 540423, '墨脱县', '墨脱', 3), (2766, 2761, 540424, '波密县', '波密', 3), (2767, 2761, 540425, '察隅县', '察隅', 3), (2768, 2761, 540426, '朗县', '朗县', 3), (2769, 2720, 540500, '山南市', '山南', 2), (2770, 2769, 540502, '乃东区', '乃东', 3), (2771, 2769, 540521, '扎囊县', '扎囊', 3), (2772, 2769, 540522, '贡嘎县', '贡嘎', 3), (2773, 2769, 540523, '桑日县', '桑日', 3), (2774, 2769, 540524, '琼结县', '琼结', 3), (2775, 2769, 540525, '曲松县', '曲松', 3), (2776, 2769, 540526, '措美县', '措美', 3), (2777, 2769, 540527, '洛扎县', '洛扎', 3), (2778, 2769, 540528, '加查县', '加查', 3), (2779, 2769, 540529, '隆子县', '隆子', 3), (2780, 2769, 540530, '错那县', '错那', 3), (2781, 2769, 540531, '浪卡子县', '浪卡子', 3), (2782, 2720, 542400, '那曲地区', '那曲', 2), (2783, 2782, 542421, '那曲县', '那曲', 3), (2784, 2782, 542422, '嘉黎县', '嘉黎', 3), (2785, 2782, 542423, '比如县', '比如', 3), (2786, 2782, 542424, '聂荣县', '聂荣', 3), (2787, 2782, 542425, '安多县', '安多', 3), (2788, 2782, 542426, '申扎县', '申扎', 3), (2789, 2782, 542427, '索县', '索县', 3), (2790, 2782, 542428, '班戈县', '班戈', 3), (2791, 2782, 542429, '巴青县', '巴青', 3), (2792, 2782, 542430, '尼玛县', '尼玛', 3), (2793, 2782, 542431, '双湖县', '双湖', 3), (2794, 2720, 542500, '阿里地区', '阿里', 2), (2795, 2794, 542521, '普兰县', '普兰', 3), (2796, 2794, 542522, '札达县', '札达', 3), (2797, 2794, 542523, '噶尔县', '噶尔', 3), (2798, 2794, 542524, '日土县', '日土', 3), (2799, 2794, 542525, '革吉县', '革吉', 3), (2800, 2794, 542526, '改则县', '改则', 3), (2801, 2794, 542527, '措勤县', '措勤', 3), (2802, 0, 610000, '陕西省', '陕西', 1), (2803, 2802, 610100, '西安市', '西安', 2), (2804, 2803, 610102, '新城区', '新城', 3), (2805, 2803, 610103, '碑林区', '碑林', 3); INSERT INTO `ph_area` (`id`, `pid`, `code`, `name`, `short_name`, `region_level`) VALUES (2806, 2803, 610104, '莲湖区', '莲湖', 3), (2807, 2803, 610111, '灞桥区', '灞桥', 3), (2808, 2803, 610112, '未央区', '未央', 3), (2809, 2803, 610113, '雁塔区', '雁塔', 3), (2810, 2803, 610114, '阎良区', '阎良', 3), (2811, 2803, 610115, '临潼区', '临潼', 3), (2812, 2803, 610116, '长安区', '长安', 3), (2813, 2803, 610117, '高陵区', '高陵', 3), (2814, 2803, 610118, '鄠邑区', '鄠邑', 3), (2815, 2803, 610122, '蓝田县', '蓝田', 3), (2816, 2803, 610124, '周至县', '周至', 3), (2817, 2802, 610200, '铜川市', '铜川', 2), (2818, 2817, 610202, '王益区', '王益', 3), (2819, 2817, 610203, '印台区', '印台', 3), (2820, 2817, 610204, '耀州区', '耀州', 3), (2821, 2817, 610222, '宜君县', '宜君', 3), (2822, 2802, 610300, '宝鸡市', '宝鸡', 2), (2823, 2822, 610302, '渭滨区', '渭滨', 3), (2824, 2822, 610303, '金台区', '金台', 3), (2825, 2822, 610304, '陈仓区', '陈仓', 3), (2826, 2822, 610322, '凤翔县', '凤翔', 3), (2827, 2822, 610323, '岐山县', '岐山', 3), (2828, 2822, 610324, '扶风县', '扶风', 3), (2829, 2822, 610326, '眉县', '眉县', 3), (2830, 2822, 610327, '陇县', '陇县', 3), (2831, 2822, 610328, '千阳县', '千阳', 3), (2832, 2822, 610329, '麟游县', '麟游', 3), (2833, 2822, 610330, '凤县', '凤县', 3), (2834, 2822, 610331, '太白县', '太白', 3), (2835, 2802, 610400, '咸阳市', '咸阳', 2), (2836, 2835, 610402, '秦都区', '秦都', 3), (2837, 2835, 610403, '杨陵区', '杨陵', 3), (2838, 2835, 610404, '渭城区', '渭城', 3), (2839, 2835, 610422, '三原县', '三原', 3), (2840, 2835, 610423, '泾阳县', '泾阳', 3), (2841, 2835, 610424, '乾县', '乾县', 3), (2842, 2835, 610425, '礼泉县', '礼泉', 3), (2843, 2835, 610426, '永寿县', '永寿', 3), (2844, 2835, 610427, '彬县', '彬县', 3), (2845, 2835, 610428, '长武县', '长武', 3), (2846, 2835, 610429, '旬邑县', '旬邑', 3), (2847, 2835, 610430, '淳化县', '淳化', 3), (2848, 2835, 610431, '武功县', '武功', 3), (2849, 2835, 610481, '兴平市', '兴平', 3), (2850, 2802, 610500, '渭南市', '渭南', 2), (2851, 2850, 610502, '临渭区', '临渭', 3), (2852, 2850, 610503, '华州区', '华州', 3), (2853, 2850, 610522, '潼关县', '潼关', 3), (2854, 2850, 610523, '大荔县', '大荔', 3), (2855, 2850, 610524, '合阳县', '合阳', 3), (2856, 2850, 610525, '澄城县', '澄城', 3), (2857, 2850, 610526, '蒲城县', '蒲城', 3), (2858, 2850, 610527, '白水县', '白水', 3), (2859, 2850, 610528, '富平县', '富平', 3), (2860, 2850, 610581, '韩城市', '韩城', 3), (2861, 2850, 610582, '华阴市', '华阴', 3), (2862, 2802, 610600, '延安市', '延安', 2), (2863, 2862, 610602, '宝塔区', '宝塔', 3), (2864, 2862, 610603, '安塞区', '安塞', 3), (2865, 2862, 610621, '延长县', '延长', 3), (2866, 2862, 610622, '延川县', '延川', 3), (2867, 2862, 610623, '子长县', '子长', 3), (2868, 2862, 610625, '志丹县', '志丹', 3), (2869, 2862, 610626, '吴起县', '吴起', 3), (2870, 2862, 610627, '甘泉县', '甘泉', 3), (2871, 2862, 610628, '富县', '富县', 3), (2872, 2862, 610629, '洛川县', '洛川', 3), (2873, 2862, 610630, '宜川县', '宜川', 3), (2874, 2862, 610631, '黄龙县', '黄龙', 3), (2875, 2862, 610632, '黄陵县', '黄陵', 3), (2876, 2802, 610700, '汉中市', '汉中', 2), (2877, 2876, 610702, '汉台区', '汉台', 3), (2878, 2876, 610721, '南郑县', '南郑', 3), (2879, 2876, 610722, '城固县', '城固', 3), (2880, 2876, 610723, '洋县', '洋县', 3), (2881, 2876, 610724, '西乡县', '西乡', 3), (2882, 2876, 610725, '勉县', '勉县', 3), (2883, 2876, 610726, '宁强县', '宁强', 3), (2884, 2876, 610727, '略阳县', '略阳', 3), (2885, 2876, 610728, '镇巴县', '镇巴', 3), (2886, 2876, 610729, '留坝县', '留坝', 3), (2887, 2876, 610730, '佛坪县', '佛坪', 3), (2888, 2802, 610800, '榆林市', '榆林', 2), (2889, 2888, 610802, '榆阳区', '榆阳', 3), (2890, 2888, 610803, '横山区', '横山', 3), (2891, 2888, 610822, '府谷县', '府谷', 3), (2892, 2888, 610824, '靖边县', '靖边', 3), (2893, 2888, 610825, '定边县', '定边', 3), (2894, 2888, 610826, '绥德县', '绥德', 3), (2895, 2888, 610827, '米脂县', '米脂', 3), (2896, 2888, 610828, '佳县', '佳县', 3), (2897, 2888, 610829, '吴堡县', '吴堡', 3), (2898, 2888, 610830, '清涧县', '清涧', 3), (2899, 2888, 610831, '子洲县', '子洲', 3), (2900, 2888, 610881, '神木市', '神木', 3), (2901, 2802, 610900, '安康市', '安康', 2), (2902, 2901, 610902, '汉滨区', '汉滨', 3), (2903, 2901, 610921, '汉阴县', '汉阴', 3), (2904, 2901, 610922, '石泉县', '石泉', 3), (2905, 2901, 610923, '宁陕县', '宁陕', 3), (2906, 2901, 610924, '紫阳县', '紫阳', 3), (2907, 2901, 610925, '岚皋县', '岚皋', 3), (2908, 2901, 610926, '平利县', '平利', 3), (2909, 2901, 610927, '镇坪县', '镇坪', 3), (2910, 2901, 610928, '旬阳县', '旬阳', 3), (2911, 2901, 610929, '白河县', '白河', 3), (2912, 2802, 611000, '商洛市', '商洛', 2), (2913, 2912, 611002, '商州区', '商州', 3), (2914, 2912, 611021, '洛南县', '洛南', 3), (2915, 2912, 611022, '丹凤县', '丹凤', 3), (2916, 2912, 611023, '商南县', '商南', 3), (2917, 2912, 611024, '山阳县', '山阳', 3), (2918, 2912, 611025, '镇安县', '镇安', 3), (2919, 2912, 611026, '柞水县', '柞水', 3), (2920, 0, 620000, '甘肃省', '甘肃', 1), (2921, 2920, 620100, '兰州市', '兰州', 2), (2922, 2921, 620102, '城关区', '城关', 3), (2923, 2921, 620103, '七里河区', '七里河', 3), (2924, 2921, 620104, '西固区', '西固', 3), (2925, 2921, 620105, '安宁区', '安宁', 3), (2926, 2921, 620111, '红古区', '红古', 3), (2927, 2921, 620121, '永登县', '永登', 3), (2928, 2921, 620122, '皋兰县', '皋兰', 3), (2929, 2921, 620123, '榆中县', '榆中', 3), (2930, 2920, 620200, '嘉峪关市', '嘉峪关', 2), (2931, 2920, 620300, '金昌市', '金昌', 2), (2932, 2931, 620302, '金川区', '金川', 3), (2933, 2931, 620321, '永昌县', '永昌', 3), (2934, 2920, 620400, '白银市', '白银', 2), (2935, 2934, 620402, '白银区', '白银', 3), (2936, 2934, 620403, '平川区', '平川', 3), (2937, 2934, 620421, '靖远县', '靖远', 3), (2938, 2934, 620422, '会宁县', '会宁', 3), (2939, 2934, 620423, '景泰县', '景泰', 3), (2940, 2920, 620500, '天水市', '天水', 2), (2941, 2940, 620502, '秦州区', '秦州', 3), (2942, 2940, 620503, '麦积区', '麦积', 3), (2943, 2940, 620521, '清水县', '清水', 3), (2944, 2940, 620522, '秦安县', '秦安', 3), (2945, 2940, 620523, '甘谷县', '甘谷', 3), (2946, 2940, 620524, '武山县', '武山', 3), (2947, 2940, 620525, '张家川回族自治县', '张家川', 3), (2948, 2920, 620600, '武威市', '武威', 2), (2949, 2948, 620602, '凉州区', '凉州', 3), (2950, 2948, 620621, '民勤县', '民勤', 3), (2951, 2948, 620622, '古浪县', '古浪', 3), (2952, 2948, 620623, '天祝藏族自治县', '天祝', 3), (2953, 2920, 620700, '张掖市', '张掖', 2), (2954, 2953, 620702, '甘州区', '甘州', 3), (2955, 2953, 620721, '肃南裕固族自治县', '肃南', 3), (2956, 2953, 620722, '民乐县', '民乐', 3), (2957, 2953, 620723, '临泽县', '临泽', 3), (2958, 2953, 620724, '高台县', '高台', 3), (2959, 2953, 620725, '山丹县', '山丹', 3), (2960, 2920, 620800, '平凉市', '平凉', 2), (2961, 2960, 620802, '崆峒区', '崆峒', 3), (2962, 2960, 620821, '泾川县', '泾川', 3), (2963, 2960, 620822, '灵台县', '灵台', 3), (2964, 2960, 620823, '崇信县', '崇信', 3), (2965, 2960, 620824, '华亭县', '华亭', 3), (2966, 2960, 620825, '庄浪县', '庄浪', 3), (2967, 2960, 620826, '静宁县', '静宁', 3), (2968, 2920, 620900, '酒泉市', '酒泉', 2), (2969, 2968, 620902, '肃州区', '肃州', 3), (2970, 2968, 620921, '金塔县', '金塔', 3), (2971, 2968, 620922, '瓜州县', '瓜州', 3), (2972, 2968, 620923, '肃北蒙古族自治县', '肃北', 3), (2973, 2968, 620924, '阿克塞哈萨克族自治县', '阿克塞', 3), (2974, 2968, 620981, '玉门市', '玉门', 3), (2975, 2968, 620982, '敦煌市', '敦煌', 3), (2976, 2920, 621000, '庆阳市', '庆阳', 2), (2977, 2976, 621002, '西峰区', '西峰', 3), (2978, 2976, 621021, '庆城县', '庆城', 3), (2979, 2976, 621022, '环县', '环县', 3), (2980, 2976, 621023, '华池县', '华池', 3), (2981, 2976, 621024, '合水县', '合水', 3), (2982, 2976, 621025, '正宁县', '正宁', 3), (2983, 2976, 621026, '宁县', '宁县', 3), (2984, 2976, 621027, '镇原县', '镇原', 3), (2985, 2920, 621100, '定西市', '定西', 2), (2986, 2985, 621102, '安定区', '安定', 3), (2987, 2985, 621121, '通渭县', '通渭', 3), (2988, 2985, 621122, '陇西县', '陇西', 3), (2989, 2985, 621123, '渭源县', '渭源', 3), (2990, 2985, 621124, '临洮县', '临洮', 3), (2991, 2985, 621125, '漳县', '漳县', 3), (2992, 2985, 621126, '岷县', '岷县', 3), (2993, 2920, 621200, '陇南市', '陇南', 2), (2994, 2993, 621202, '武都区', '武都', 3), (2995, 2993, 621221, '成县', '成县', 3), (2996, 2993, 621222, '文县', '文县', 3), (2997, 2993, 621223, '宕昌县', '宕昌', 3), (2998, 2993, 621224, '康县', '康县', 3), (2999, 2993, 621225, '西和县', '西和', 3), (3000, 2993, 621226, '礼县', '礼县', 3), (3001, 2993, 621227, '徽县', '徽县', 3), (3002, 2993, 621228, '两当县', '两当', 3), (3003, 2920, 622900, '临夏回族自治州', '临夏', 2), (3004, 3003, 622901, '临夏市', '临夏', 3), (3005, 3003, 622921, '临夏县', '临夏', 3), (3006, 3003, 622922, '康乐县', '康乐', 3), (3007, 3003, 622923, '永靖县', '永靖', 3), (3008, 3003, 622924, '广河县', '广河', 3), (3009, 3003, 622925, '和政县', '和政', 3), (3010, 3003, 622926, '东乡族自治县', '东乡', 3), (3011, 3003, 622927, '积石山保安族东乡族撒拉族自治县', '积石山', 3), (3012, 2920, 623000, '甘南藏族自治州', '甘南', 2), (3013, 3012, 623001, '合作市', '合作', 3), (3014, 3012, 623021, '临潭县', '临潭', 3), (3015, 3012, 623022, '卓尼县', '卓尼', 3), (3016, 3012, 623023, '舟曲县', '舟曲', 3), (3017, 3012, 623024, '迭部县', '迭部', 3), (3018, 3012, 623025, '玛曲县', '玛曲', 3), (3019, 3012, 623026, '碌曲县', '碌曲', 3), (3020, 3012, 623027, '夏河县', '夏河', 3), (3021, 0, 630000, '青海省', '青海', 1), (3022, 3021, 630100, '西宁市', '西宁', 2), (3023, 3022, 630102, '城东区', '城东', 3), (3024, 3022, 630103, '城中区', '城中', 3), (3025, 3022, 630104, '城西区', '城西', 3), (3026, 3022, 630105, '城北区', '城北', 3), (3027, 3022, 630121, '大通回族土族自治县', '大通', 3), (3028, 3022, 630122, '湟中县', '湟中', 3), (3029, 3022, 630123, '湟源县', '湟源', 3), (3030, 3021, 630200, '海东市', '海东', 2), (3031, 3030, 630202, '乐都区', '乐都', 3), (3032, 3030, 630203, '平安区', '平安', 3), (3033, 3030, 630222, '民和回族土族自治县', '民和', 3), (3034, 3030, 630223, '互助土族自治县', '互助', 3), (3035, 3030, 630224, '化隆回族自治县', '化隆', 3), (3036, 3030, 630225, '循化撒拉族自治县', '循化', 3), (3037, 3021, 632200, '海北藏族自治州', '海北', 2), (3038, 3037, 632221, '门源回族自治县', '门源', 3), (3039, 3037, 632222, '祁连县', '祁连', 3), (3040, 3037, 632223, '海晏县', '海晏', 3), (3041, 3037, 632224, '刚察县', '刚察', 3), (3042, 3021, 632300, '黄南藏族自治州', '黄南', 2), (3043, 3042, 632321, '同仁县', '同仁', 3), (3044, 3042, 632322, '尖扎县', '尖扎', 3), (3045, 3042, 632323, '泽库县', '泽库', 3), (3046, 3042, 632324, '河南蒙古族自治县', '河南', 3), (3047, 3021, 632500, '海南藏族自治州', '海南', 2), (3048, 3047, 632521, '共和县', '共和', 3), (3049, 3047, 632522, '同德县', '同德', 3), (3050, 3047, 632523, '贵德县', '贵德', 3), (3051, 3047, 632524, '兴海县', '兴海', 3), (3052, 3047, 632525, '贵南县', '贵南', 3), (3053, 3021, 632600, '果洛藏族自治州', '果洛', 2), (3054, 3053, 632621, '玛沁县', '玛沁', 3), (3055, 3053, 632622, '班玛县', '班玛', 3), (3056, 3053, 632623, '甘德县', '甘德', 3), (3057, 3053, 632624, '达日县', '达日', 3), (3058, 3053, 632625, '久治县', '久治', 3), (3059, 3053, 632626, '玛多县', '玛多', 3), (3060, 3021, 632700, '玉树藏族自治州', '玉树', 2), (3061, 3060, 632701, '玉树市', '玉树', 3), (3062, 3060, 632722, '杂多县', '杂多', 3), (3063, 3060, 632723, '称多县', '称多', 3), (3064, 3060, 632724, '治多县', '治多', 3), (3065, 3060, 632725, '囊谦县', '囊谦', 3), (3066, 3060, 632726, '曲麻莱县', '曲麻莱', 3), (3067, 3021, 632800, '海西蒙古族藏族自治州', '海西', 2), (3068, 3067, 632801, '格尔木市', '格尔木', 3), (3069, 3067, 632802, '德令哈市', '德令哈', 3), (3070, 3067, 632821, '乌兰县', '乌兰', 3), (3071, 3067, 632822, '都兰县', '都兰', 3), (3072, 3067, 632823, '天峻县', '天峻', 3), (3073, 0, 640000, '宁夏回族自治区', '宁夏', 1), (3074, 3073, 640100, '银川市', '银川', 2), (3075, 3074, 640104, '兴庆区', '兴庆', 3), (3076, 3074, 640105, '西夏区', '西夏', 3), (3077, 3074, 640106, '金凤区', '金凤', 3), (3078, 3074, 640121, '永宁县', '永宁', 3), (3079, 3074, 640122, '贺兰县', '贺兰', 3), (3080, 3074, 640181, '灵武市', '灵武', 3), (3081, 3073, 640200, '石嘴山市', '石嘴山', 2), (3082, 3081, 640202, '大武口区', '大武口', 3), (3083, 3081, 640205, '惠农区', '惠农', 3), (3084, 3081, 640221, '平罗县', '平罗', 3), (3085, 3073, 640300, '吴忠市', '吴忠', 2), (3086, 3085, 640302, '利通区', '利通', 3), (3087, 3085, 640303, '红寺堡区', '红寺堡', 3), (3088, 3085, 640323, '盐池县', '盐池', 3), (3089, 3085, 640324, '同心县', '同心', 3), (3090, 3085, 640381, '青铜峡市', '青铜峡', 3), (3091, 3073, 640400, '固原市', '固原', 2), (3092, 3091, 640402, '原州区', '原州', 3), (3093, 3091, 640422, '西吉县', '西吉', 3), (3094, 3091, 640423, '隆德县', '隆德', 3), (3095, 3091, 640424, '泾源县', '泾源', 3), (3096, 3091, 640425, '彭阳县', '彭阳', 3), (3097, 3073, 640500, '中卫市', '中卫', 2), (3098, 3097, 640502, '沙坡头区', '沙坡头', 3), (3099, 3097, 640521, '中宁县', '中宁', 3), (3100, 3097, 640522, '海原县', '海原', 3), (3101, 0, 650000, '新疆维吾尔自治区', '新疆', 1), (3102, 3101, 650100, '乌鲁木齐市', '乌鲁木齐', 2), (3103, 3102, 650102, '天山区', '天山', 3), (3104, 3102, 650103, '沙依巴克区', '沙依巴克', 3), (3105, 3102, 650104, '新市区', '新市', 3), (3106, 3102, 650105, '水磨沟区', '水磨沟', 3), (3107, 3102, 650106, '头屯河区', '头屯河', 3), (3108, 3102, 650107, '达坂城区', '达坂城', 3), (3109, 3102, 650109, '米东区', '米东', 3), (3110, 3102, 650121, '乌鲁木齐县', '乌鲁木齐', 3), (3111, 3101, 650200, '克拉玛依市', '克拉玛依', 2), (3112, 3111, 650202, '独山子区', '独山子', 3), (3113, 3111, 650203, '克拉玛依区', '克拉玛依', 3), (3114, 3111, 650204, '白碱滩区', '白碱滩', 3), (3115, 3111, 650205, '乌尔禾区', '乌尔禾', 3), (3116, 3101, 650400, '吐鲁番市', '吐鲁番', 2), (3117, 3116, 650402, '高昌区', '高昌', 3), (3118, 3116, 650421, '鄯善县', '鄯善', 3), (3119, 3116, 650422, '托克逊县', '托克逊', 3), (3120, 3101, 650500, '哈密市', '哈密', 2), (3121, 3120, 650502, '伊州区', '伊州', 3), (3122, 3120, 650521, '巴里坤哈萨克自治县', '巴里坤', 3), (3123, 3120, 650522, '伊吾县', '伊吾', 3), (3124, 3101, 652300, '昌吉回族自治州', '昌吉', 2), (3125, 3124, 652301, '昌吉市', '昌吉', 3), (3126, 3124, 652302, '阜康市', '阜康', 3), (3127, 3124, 652323, '呼图壁县', '呼图壁', 3), (3128, 3124, 652324, '玛纳斯县', '玛纳斯', 3), (3129, 3124, 652325, '奇台县', '奇台', 3), (3130, 3124, 652327, '吉木萨尔县', '吉木萨尔', 3), (3131, 3124, 652328, '木垒哈萨克自治县', '木垒', 3), (3132, 3101, 652700, '博尔塔拉蒙古自治州', '博尔塔拉', 2), (3133, 3132, 652701, '博乐市', '博乐', 3), (3134, 3132, 652702, '阿拉山口市', '阿拉尔', 3), (3135, 3132, 652722, '精河县', '精河', 3), (3136, 3132, 652723, '温泉县', '温泉', 3), (3137, 3101, 652800, '巴音郭楞蒙古自治州', '巴音郭楞', 2), (3138, 3137, 652801, '库尔勒市', '库尔勒', 3), (3139, 3137, 652822, '轮台县', '轮台', 3), (3140, 3137, 652823, '尉犁县', '尉犁', 3), (3141, 3137, 652824, '若羌县', '若羌', 3), (3142, 3137, 652825, '且末县', '且末', 3), (3143, 3137, 652826, '焉耆回族自治县', '焉耆', 3), (3144, 3137, 652827, '和静县', '和静', 3), (3145, 3137, 652828, '和硕县', '和硕', 3), (3146, 3137, 652829, '博湖县', '博湖', 3), (3147, 3101, 652900, '阿克苏地区', '阿克苏', 2), (3148, 3147, 652901, '阿克苏市', '阿克苏', 3), (3149, 3147, 652922, '温宿县', '温宿', 3), (3150, 3147, 652923, '库车县', '库车', 3), (3151, 3147, 652924, '沙雅县', '沙雅', 3), (3152, 3147, 652925, '新和县', '新和', 3), (3153, 3147, 652926, '拜城县', '拜城', 3), (3154, 3147, 652927, '乌什县', '乌什', 3), (3155, 3147, 652928, '阿瓦提县', '阿瓦提', 3), (3156, 3147, 652929, '柯坪县', '柯坪', 3), (3157, 3101, 653000, '克孜勒苏柯尔克孜自治州', '克孜勒苏柯尔克孜', 2), (3158, 3157, 653001, '阿图什市', '阿图什', 3), (3159, 3157, 653022, '阿克陶县', '阿克陶', 3), (3160, 3157, 653023, '阿合奇县', '阿合奇', 3), (3161, 3157, 653024, '乌恰县', '乌恰', 3), (3162, 3101, 653100, '喀什地区', '喀什', 2), (3163, 3162, 653101, '喀什市', '喀什', 3), (3164, 3162, 653121, '疏附县', '疏附', 3), (3165, 3162, 653122, '疏勒县', '疏勒', 3), (3166, 3162, 653123, '英吉沙县', '英吉沙', 3), (3167, 3162, 653124, '泽普县', '泽普', 3), (3168, 3162, 653125, '莎车县', '莎车', 3), (3169, 3162, 653126, '叶城县', '叶城', 3), (3170, 3162, 653127, '麦盖提县', '麦盖提', 3), (3171, 3162, 653128, '岳普湖县', '岳普湖', 3), (3172, 3162, 653129, '伽师县', '伽师', 3), (3173, 3162, 653130, '巴楚县', '巴楚', 3), (3174, 3162, 653131, '塔什库尔干塔吉克自治县', '塔什库尔干', 3), (3175, 3101, 653200, '和田地区', '和田', 2), (3176, 3175, 653201, '和田市', '和田', 3), (3177, 3175, 653221, '和田县', '和田', 3), (3178, 3175, 653222, '墨玉县', '墨玉', 3), (3179, 3175, 653223, '皮山县', '皮山', 3), (3180, 3175, 653224, '洛浦县', '洛浦', 3), (3181, 3175, 653225, '策勒县', '策勒', 3), (3182, 3175, 653226, '于田县', '于田', 3), (3183, 3175, 653227, '民丰县', '民丰', 3), (3184, 3101, 654000, '伊犁哈萨克自治州', '伊犁', 2), (3185, 3184, 654002, '伊宁市', '伊宁', 3), (3186, 3184, 654003, '奎屯市', '奎屯', 3), (3187, 3184, 654004, '霍尔果斯市', '霍尔果斯', 3), (3188, 3184, 654021, '伊宁县', '伊宁', 3), (3189, 3184, 654022, '察布查尔锡伯自治县', '察布查尔', 3), (3190, 3184, 654023, '霍城县', '霍城', 3), (3191, 3184, 654024, '巩留县', '巩留', 3), (3192, 3184, 654025, '新源县', '新源', 3), (3193, 3184, 654026, '昭苏县', '昭苏', 3), (3194, 3184, 654027, '特克斯县', '特克斯', 3), (3195, 3184, 654028, '尼勒克县', '尼勒克', 3), (3196, 3101, 654200, '塔城地区', '塔城', 2), (3197, 3196, 654201, '塔城市', '塔城', 3), (3198, 3196, 654202, '乌苏市', '乌苏', 3), (3199, 3196, 654221, '额敏县', '额敏', 3), (3200, 3196, 654223, '沙湾县', '沙湾', 3), (3201, 3196, 654224, '托里县', '托里', 3), (3202, 3196, 654225, '裕民县', '裕民', 3), (3203, 3196, 654226, '和布克赛尔蒙古自治县', '和布克赛尔', 3), (3204, 3101, 654300, '阿勒泰地区', '阿勒泰', 2), (3205, 3204, 654301, '阿勒泰市', '阿勒泰', 3), (3206, 3204, 654321, '布尔津县', '布尔津', 3), (3207, 3204, 654322, '富蕴县', '富蕴', 3), (3208, 3204, 654323, '福海县', '福海', 3), (3209, 3204, 654324, '哈巴河县', '哈巴河', 3), (3210, 3204, 654325, '青河县', '青河', 3), (3211, 3204, 654326, '吉木乃县', '吉木乃', 3), (3212, 3101, 659001, '石河子市', '石河子', 2), (3213, 3101, 659002, '阿拉尔市', '阿拉尔', 2), (3214, 3101, 659003, '图木舒克市', '图木舒克', 2), (3215, 3101, 659004, '五家渠市', '五家渠', 2), (3216, 3101, 659005, '北屯市', '北屯', 2), (3217, 3101, 659006, '铁门关市', '铁门关', 2), (3218, 3101, 659007, '双河市', '双河', 2), (3219, 3101, 659008, '可克达拉市', '可克达拉', 2), (3220, 3101, 659009, '昆玉市', '昆玉', 2);
<reponame>zshnb/qiangdongserver<filename>src/test/resources/test-file/data.sql insert into user(id, username, nickname, avatar, mobile, password, introduction, coin, create_at, last_login_time, update_at, role, qq_account, email, auth_name, id_card, user_sign_status, sex, address, level_id, deleted, signature, recommend_ticket, wall_ticket, type_id, birthday, secrecy_config, chat_status) values (1, 'user1', 'author 1', '', '13715166405', 'd41d8cd98f00b204e9800998ecf8427e', '', 20000, '2020-02-20 00:00:00', '2020-02-20 00:00:00', '2020-02-02 00:00:00', 2, '', '', '', '', 0, 0, '', 1, 0, '', 1000, 10, 0, '2020-02-20 00:00:00', '{}', 1); insert into user(id, username, nickname, avatar, mobile, password, introduction, coin, create_at, last_login_time, role, qq_account, email, auth_name, id_card, user_sign_status, sex, address, level_id, deleted, signature, recommend_ticket, wall_ticket, type_id, birthday, secrecy_config, chat_status) values (2, 'user2', 'author 2', '13715166404', '', 'user2', '', 20000, '2020-02-20 00:00:00', '2020-02-20 00:00:00', 1, '', '', '', '', 0, 1, '', 1, 0, '', 0, 0, 0, '2020-02-20 00:00:00', '{}', 1); insert into user(id, username, nickname, avatar, mobile, password, introduction, coin, create_at, last_login_time, role, qq_account, email, auth_name, id_card, user_sign_status, sex, address, level_id, deleted, signature, recommend_ticket, wall_ticket, type_id, birthday, secrecy_config, chat_status) values (3, 'user3', '', '', '13715166407', 'e10adc3949ba59abbe56e057f20f883e', '', 0, '2020-06-08 22:35:07', '2020-06-08 22:35:07', 2, '', '', '', '', 0, 1, '', 1, 0, '', 0, 0, 0, '2020-02-20 00:00:00', '{}', 1); insert into user(id, username, nickname, avatar, mobile, password, introduction, coin, create_at, last_login_time, role, qq_account, email, auth_name, id_card, user_sign_status, sex, address, level_id, deleted, signature, recommend_ticket, wall_ticket, type_id, birthday, secrecy_config, chat_status) values (4, 'QD011', '无缺', '', '13715166403', '', '', 0, '2020-06-16 15:22:14', '2020-06-16 15:22:14', 3, '1409482236', '<EMAIL>', '周华', '', 0, 1, '', 0, 0, '', 0, 0, 3, '2000-02-20 00:00:00', '{}', 1); insert into user(id, username, nickname, avatar, mobile, password, introduction, coin, create_at, last_login_time, update_at, role, qq_account, email, auth_name, id_card, user_sign_status, sex, address, level_id, deleted, signature, recommend_ticket, wall_ticket, type_id, birthday, secrecy_config, chat_status) values (5, 'admin', '', '', '13715166406', '', '', 0, '2020-06-16 15:22:14', '2020-06-16 15:22:14', '2020-02-02 00:00:00', 4, '1409482236', '<EMAIL>', '周华', '', 0, 1, '', 0, 0, '', 0, 0, 1, '2000-02-20 00:00:00', '{}', 1); insert into novel(id, cover, author_id, word_count, update_status, contract_status, show_status, create_at, update_at, deleted, name, collect_count, recommend_ticket, wall_ticket, coin, type_id, click_count, description, foreword, authorization_status, topic_id) values (1, '', 1, 200000, 1, 1, 1, '2020-02-02 00:00:00', '2020-02-21 00:00:00', 0, 'novel1', 0, 0, 0, 0, 3, 0, '', '', 1, 1); insert into novel(id, cover, author_id, word_count, update_status, contract_status, show_status, create_at, update_at, deleted, name, collect_count, recommend_ticket, wall_ticket, coin, type_id, click_count, description, foreword, authorization_status, topic_id) values (2, '', 1, 1, 1, 1, 1, '2020-02-02 00:00:00', '2020-02-20 00:00:00', 0, 'novel2', 0, 0, 0, 0, 3, 0, '', '', 1, 1); insert into novel_chapter(id, novel_id, title, word_count, txt_url, progress, create_at, update_at, deleted, `index`, type, review_status, price, author_words) values (1, 1, 'novel chapter 1', 70000, '', 0.0, '2020-02-20 00:00:00', '2020-02-20 00:00:00', 0, 1, 2, 2, 10.0, ''); insert into novel_chapter(id, title, novel_id, price, word_count, progress, `index`, type, review_status, author_words, txt_url) values (2, 'novel chapter 2', 1, 10.0, 10, 0.0, 2, 1, 0, '', ''); insert into novel_chapter(id, title, novel_id, price, word_count, progress, `index`, type, review_status, author_words, txt_url) values (3, 'novel chapter 1', 2, 10.0, 10, 0.0, 1, 1, 0, '', ''); insert into novel_chapter(id, title, novel_id, price, word_count, progress, `index`, type, review_status, author_words, txt_url) values (4, 'novel chapter 2', 2, 10.0, 10, 0.0, 2, 1, 0, '', ''); insert into comic(id, name, cover, author_id, update_status, contract_status, show_status, create_at, update_at, deleted, collect_count, recommend_ticket, wall_ticket, coin, type_id, click_count, description, authorization_status, topic_id, picture_count) values (1, 'comic1', '', 1, 1, 1, 1, '2020-02-02 00:00:00', '2020-02-21 00:00:00', 0, 0, 0, 0, 0, 3, 0, '', 1, 1, 1); insert into comic(id, name, cover, author_id, update_status, contract_status, show_status, create_at, update_at, deleted, collect_count, recommend_ticket, wall_ticket, coin, type_id, click_count, description, authorization_status, topic_id, picture_count) values (2, 'comic2', '', 1, 1, 1, 1, '2020-02-02 00:00:00', '2020-02-20 00:00:00', 0, 0, 0, 0, 0, 3, 0, '', 1, 1, 1); insert into comic_chapter(id, comic_id, title, progress, picture_url, `index`, type, review_status, price, picture_count, author_words) values (1, 1, 'comic chapter 1-1', 0.0, '', 1, 2, 2, 10.0, 1, ''); insert into comic_chapter(id, comic_id, title, progress, picture_url, `index`, type, review_status, price, picture_count, author_words) values (2, 1, 'comic chapter 1-2', 0.0, '', 2, 1, 2, 10.0, 1, ''); insert into comic_chapter(id, comic_id, title, progress, picture_url, `index`, type, review_status, price, picture_count, author_words) values (3, 2, 'comic chapter 2-1', 0.0, '', 1, 1, 0, 10.0, 1, ''); insert into comic_chapter(id, comic_id, title, progress, picture_url, `index`, type, review_status, price, picture_count, author_words) values (4, 2, 'comic chapter 2-2', 0.0, '', 2, 1, 0, 10.0, 1, ''); insert into type values (1, '分类1', 0, 2, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type values (2, '分类2', 0, 2, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type values (3, '分类1-novel', 1, 2, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type values (4, '分类2-novel', 2, 2, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type(id, name, parent_id, belong, create_at, update_at) values (5, '分类2-novel-1', 4, 2, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type(id, name, parent_id, belong, create_at, update_at) values (6, '分类1-comic', 0, 1, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into type(id, name, parent_id, belong, create_at, update_at) values (7, '分类2-comic', 0, 1, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (1, 1, 'content', 1, 1, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top, create_at) values (11, 1, 'top content', 3, 1, 1, 1, '', 1, '2020-06-20 00:00:00'); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top, create_at) values (12, 1, 'top content', 3, 1, 1, 1, '', 1, '2020-02-02 00:00:00'); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (2, 1, 'content', 1, 2, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (3, 1, 'content', 3, 1, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (4, 1, 'content', 3, 2, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (5, 1, 'content', 2, 1, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (6, 1, 'content', 2, 2, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (7, 1, 'content', 4, 1, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) values (8, 1, 'content', 4, 2, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) VALUES (9, 1, 'content', 6, 1, 1, 1, '', 0); insert into comment(id, user_id, content, type, associate_id, agree_count, against_count, images, top) VALUES (10, 1, 'content', 5, 9, 1, 1, '', 0); insert into function_area(id, name, icon, parent_id, create_at, update_at) values (1, '功能1', '', null, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into function_area(id, name, icon, parent_id, create_at, update_at) values (2, '功能2', '', null, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into function_area(id, name, icon, parent_id, create_at, update_at) values (3, '功能1-1', '', 1, '2020-02-20 00:00:00', '2020-02-20 00:00:00'); insert into swiper(id, item_id, link, cover, type, `index`, link_type) values (1, 1, '', '', 1, 2, 1); insert into swiper(id, item_id, link, cover, type, `index`, link_type) values (2, 2, '', '', 1, 2, 1); insert into swiper(id, item_id, link, cover, type, `index`, link_type) values (3, 1, '', '', 2, 2, 1); insert into swiper(id, item_id, link, cover, type, `index`, link_type) values (4, 0, '', '', 2, 2, 2); insert into user_level values (1, 1, 'LV1', '2020-06-17 11:17:49', '2020-06-17 11:17:49'); insert into user_level values (2, 2, 'LV2', '2020-06-17 11:17:53', '2020-06-17 11:17:53'); insert into user_level values (3, 3, 'LV3', '2020-06-17 11:18:03', '2020-06-17 11:18:03'); insert into user_level values (4, 4, '白银', '2020-06-17 11:18:14', '2020-06-17 11:18:14'); insert into user_level values (5, 5, '黄金', '2020-06-17 11:18:22', '2020-06-17 11:18:22'); insert into user_level values (6, 6, '大神', '2020-06-17 11:18:35', '2020-06-17 11:18:35'); insert into works_tag (id, works_id, works_type, tag_name, group_name, create_at, update_at) values (1,1,2,'冒险', '风格', '2020-06-16 15:22:14', '2020-06-16 15:22:14'); insert into works_tag (id, works_id, works_type, tag_name, group_name, create_at, update_at) values (2,1,2,'学院', '故事流派', '2020-06-16 15:22:34', '2020-06-16 15:22:34'); insert into works_tag (id, works_id, works_type, tag_name, group_name, create_at, update_at) values (3,1,2,'热血', '故事流派', '2020-06-16 15:22:50', '2020-06-16 15:22:50'); insert into works_tag (id, works_id, works_type, tag_name, group_name, create_at, update_at) values (4,2,2,'仙侠', '故事流派', '2020-06-16 15:23:06', '2020-06-16 15:23:06'); insert into user_apply values (1,1,1,'apply',1,0,0,'2020-06-16 19:38:03','2020-06-16 19:38:03'); insert into works_topic values (1, 2, 2, 'new Topic', 'this is topic', '', '2020-06-24 10:40:35', '2020-06-24 10:40:35'); insert into works_topic values (2, 2, 2, '小说专题', '值得一看', '', '2020-07-24 10:40:35', '2020-06-24 10:40:35'); insert into user_activity(id, user_id, activity_data, type, top) values (1, 1, '{"createActivity":{"content":"content1","shareCount":1,"commentCount":3,"agreeCount":5,"againstCount":5, "images": ["image"]}}', 1, 1); insert into user_activity(id, user_id, activity_data, type, top) values (2, 1, '{"createActivity":{"content":"content2","shareCount":2,"commentCount":6,"agreeCount":3,"againstCount":7}}', 1, 1); insert into user_activity(id, user_id, activity_data, type, top) values (3, 2, '{"createActivity":{"content":"content3","shareCount":0,"commentCount":0,"agreeCount":0,"againstCount":0}}', 1, 1); insert into follow_relation(id, follower_id, followed_id, follow_each) values (1, 1, 2, 1); insert into follow_relation(id, follower_id, followed_id, follow_each) values (2, 2, 1, 1); insert into draft(id, title, user_id, works_id, type, txt_url, picture_url, author_words) VALUES (1, 'draft title', 1, 1, 1, '', '', ''); insert into works_faq(id, user_id, works_id, works_type, faq_type, read_status, question, answer) values (1, 1, 1, 2, 1, 1, 'xxx', ''); insert into works_faq(id, user_id, works_id, works_type, faq_type, read_status, question, answer) values (2, 1, 2, 2, 1, 1, 'xxxx', ''); insert into works_faq(id, user_id, works_id, works_type, faq_type, read_status, question, answer) values (3, 1, 1, 2, 4, 0, 'xxx', 'Hi,BOY'); insert into book_stand(id, associate_id, associate_type, user_id, create_at, update_at) values (1, 1, 2, 1, '2020-06-16 15:22:14', '2020-06-16 15:22:14'); insert into book_stand(id, associate_id, associate_type, user_id, create_at, update_at) values (2, 1, 1, 1, '2020-06-16 15:22:14', '2020-06-16 15:22:14'); INSERT INTO notice (id, title, subtitle, content, type, cover, create_at, update_at, user_id, deleted) VALUES(1,'test Title','test subTitle','test content',2,'test imgUrl','2020-07-06 18:14:33','2020-07-06 18:14:33',10,0); INSERT INTO notice (id, title, subtitle,content, type, cover, create_at, update_at, user_id, deleted) VALUES(2,'test Title2','test subTitle2','test content2',1,'test imgUrl2','2020-07-06 18:14:33','2020-07-06 18:14:33',10,0); INSERT INTO app_info (id, version_code, version_name, download_url, version_info, type, platform, update_type)VALUES (1, 1, 'test name1', 'test url1', 'test content1', 1, 2, 2); INSERT INTO app_info (id, version_code, version_name, download_url, version_info, type, platform, update_type, create_at)VALUES (2, 1, 'test name2', 'test url2', 'test content2', 1, 2, 2, '2020-02-20 00:00:00'); INSERT INTO help_feedback (id, content, answer, type, user_id, images) VALUES (1,'content','test content1', 'answer', 1, ''); INSERT INTO help_feedback (id, content, answer, type, user_id, images) VALUES (2,'content','test content2', 'answer', 2, ''); INSERT INTO user_agreement(id, version, content, enabled, type)VALUES (1, 'test name1', 'test content1', 0, 1); INSERT INTO user_agreement(id, version, content, enabled, type, update_at)VALUES (2, 'test name2', 'test content2', 1, 2, '2020-01-01 00:00:00'); insert into topic(id, user_id, name, reference_count, cover) VALUES (1, 2, 'topic1', 0, ''); insert into topic(id, user_id, name, reference_count, cover) VALUES (2, 2, 'topic2', 0, ''); insert into topic(id, user_id, name, reference_count, cover) VALUES (3, 2, 'topic3', 0, ''); INSERT INTO activity_read_history(id, user_id, activity_id) VALUES (1, 1, 1); INSERT INTO activity_read_history(id, user_id, activity_id) VALUES (2, 4, 1); insert into works_read_history(id, user_id, works_id, works_type, last_read_chapter_index) VALUES (1, 1, 1, 2, 1); insert into works_read_history(id, user_id, works_id, works_type, last_read_chapter_index, update_at) VALUES (2, 1, 2, 2, 1, '2020-02-02 00:00:00'); insert into works_read_history(id, user_id, works_id, works_type, last_read_chapter_index) VALUES (3, 2, 1, 2, 1); insert into works_read_history(id, user_id, works_id, works_type, last_read_chapter_index) VALUES (4, 1, 1, 1, 1); INSERT INTO user_prefer_type VALUES (1, 1, 1, '2020-07-17 15:23:55', '2020-07-17 15:23:55'); INSERT INTO user_prefer_type VALUES (2, 1, 2, '2020-07-17 15:25:55', '2020-07-18 15:25:55'); insert into user_consumption(id, description, user_id, associate_id, count, type, create_at, update_at) VALUES (1, '', 1, 1, 10, 1, '2020-07-17 15:25:55', '2020-07-18 15:25:55'); insert into user_consumption(id, description, user_id, associate_id, count, type, create_at, update_at) VALUES (2, '', 2, 1, 20, 1, '2020-07-17 15:25:55', '2020-07-18 15:25:55'); INSERT INTO user_credit_record (id, description, price, coin, user_id, order_number, transaction_way, create_at, update_at, status, deleted) VALUES (1, '', 10.00, 10, 1, 1, '1', '2020-07-15 17:40:21', '2020-07-15 17:40:21', 1, 0); INSERT INTO user_credit_record (id, description, price, coin, user_id, order_number, transaction_way, create_at, update_at, status, deleted) VALUES (2, '', 10.00, 10, 1, 2, '1', '2020-07-15 17:40:49', '2020-07-15 17:40:49', 1, 0); INSERT INTO user_credit_record (id, description, price, coin, user_id, order_number, transaction_way, create_at, update_at, status, deleted) VALUES (3, '', 50.00, 50, 2, 3, '1', '2020-07-15 17:41:07', '2020-07-15 17:41:07', 1, 0); INSERT INTO user_credit_record (id, description, price, coin, user_id, order_number, transaction_way, create_at, update_at, status, deleted) VALUES (4, '', 20.00, 20, 3, 4, '1', '2020-07-14 17:41:23', '2020-07-22 11:49:37', 1, 0); INSERT INTO user_credit_record (id, description, price, coin, user_id, order_number, transaction_way, create_at, update_at, status, deleted) VALUES (5, '', 30.00, 30, 1, 5, '1', '2020-07-15 17:41:46', '2020-07-15 17:41:49', 0, 0); INSERT INTO user_activity_collection(id, user_id, user_activity_id) VALUES (1, 2, 1); INSERT INTO user_activity_collection(id, user_id, user_activity_id) VALUES (2, 2, 2); insert into block_user(id, user_id, target_user_id, create_at) VALUES (1, 1, 2, '2020-07-18 15:25:55'); insert into fate_board (id, user_id, status, content, interest, match_sex, goods_id) values (1, 1, 1, 'content', '["aa", "bb"]', 1, 1); insert into fate_board (id, user_id, status, content, interest, match_sex, goods_id) values (2, 2, 1, 'content', '["aa", "bb"]', 1, 1); insert into message(id, user_id, associate_id, type, read_status) VALUES (1, 2, 1, 1, 2); insert into message(id, user_id, associate_id, type, read_status) VALUES (2, 2, 1, 2, 2); insert into message(id, user_id, associate_id, type, read_status) VALUES (3, 2, 1, 3, 2); insert into message(id, user_id, associate_id, type, read_status) VALUES (4, 2, 1, 4, 2); INSERT INTO subscribe(id, associate_id, works_id, associate_type, user_id, create_at, update_at, auto, coin) VALUES (1, 1, 1, 2, 1, '2020-07-29 10:38:36', '2020-07-29 10:38:36', 0, 3); INSERT INTO subscribe(id, associate_id, works_id, associate_type, user_id, create_at, update_at, auto, coin) VALUES (2, 4, 2, 2, 1, '2020-07-29 10:38:46', '2020-07-29 10:49:02', 0, 3); INSERT INTO subscribe(id, associate_id, works_id, associate_type, user_id, create_at, update_at, auto, coin) VALUES (3, 3, 2, 2, 1, '2020-07-29 10:43:05', '2020-07-29 10:48:58', 0, 5); INSERT INTO subscribe(id, associate_id, works_id, associate_type, user_id, create_at, update_at, auto, coin) VALUES (4, 3, 2, 2, 2, '2020-07-29 10:49:34', '2020-07-29 10:49:34', 0, 5); insert into user_login_count(id, count, create_at) values (1, 1, '2020-07-18 15:25:55'); insert into user_login_count(id, count, create_at) values (2, 1, '2020-06-18 15:25:55'); insert into user_login_count(id, count, create_at) values (3, 1, '2020-05-18 15:25:55'); insert into user_login_count(id, count, create_at) values (4, 1, '2020-09-18 15:25:55'); insert into user_login_count(id, count, create_at) values (5, 1, '2020-09-19 15:25:55'); insert into goods(id, type, resource, coin) VALUES (1, 1, '{"fateBoardGoods": {"upAppearance": "aa","downAppearance": "bb", "name": "board1"}}', 0.0); insert into goods(id, type, resource, coin) VALUES (2, 1, '{"fateBoardGoods": {"upAppearance": "aa","downAppearance": "bb", "name": "board2"}}', 20.0); insert into user_goods(id, user_id, goods_id) VALUES (1, 1, 2); INSERT INTO reward(id, user_id, count, create_at, update_at, works_id, works_type) VALUES (1, 3, 100, '2020-07-29 06:34:22', '2020-07-29 19:34:22', 1, 2); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (1, 1, 2, 1, 0, '你好', 1, 'xxx', 1, '2020-08-10 02:43:55', '0000-00-00 00:00:00', 2, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (2, 2, 1, 1, 0, '你好', 1, 'xxx', 1, '2020-08-10 02:44:12', '0000-00-00 00:00:00', 1, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (3, 1, 3, 1, 0, 'Hi', 1, 'xxx', 1, '2020-08-10 03:01:46', '0000-00-00 00:00:00', 2, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (4, 3, 1, 1, 0, 'Hi', 1, 'xxx', 1, '2020-08-10 03:01:43', '0000-00-00 00:00:00', 1, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (5, 2, 1, 2, 0, 'HI,很高兴认识你', 1, 'xxx', 1, '2020-08-10 02:55:58', '2020-08-10 02:56:00', 2, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (6, 1, 2, 2, 0, 'HI,很高兴认识你', 1, 'xxx', 1, '2020-08-10 02:56:16', '2020-08-10 02:56:21', 1, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (7, 2, 1, 2, 0, '理理我', 1, 'xxx', 1, '2020-08-10 03:09:36', '2020-08-10 03:09:36', 2, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (8, 1, 2, 2, 0, '理理我', 1, 'xxx', 1, '2020-08-10 03:09:36', '2020-08-10 03:09:36', 1, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (9, 3, 1, 2, 0, 'hellow', 1, 'xxx', 1,'2020-08-10 03:10:18', '2020-08-10 03:10:18', 2, 1, 0); INSERT INTO user_chat(id, user_id, chat_user_id, sender, type, message, top, username, chat_tag, create_at, update_at, read_status, status, deleted) VALUES (10, 1, 3, 2, 0, 'hellow', 1, 'xxx', 1, '2020-08-10 03:10:18', '2020-08-10 03:10:18', 1, 1, 0); INSERT INTO user_hobby(id, user_id, name, type, create_at) VALUES (1, 1, '篮球', 3, '2020-08-17 18:26:02'); INSERT INTO user_hobby(id, user_id, name, type, create_at) VALUES (2, 1, '美食', 3, '2020-08-17 18:27:02'); insert into withdraw_record(id, user_id, money) VALUES (1, 1, 1.00); insert into withdraw_record(id, user_id, money) VALUES (2, 3, 2.00); insert into user_activity_topic(id, user_activity_id, topic_id) VALUES (1, 1, 1); insert into user_activity_topic(id, user_activity_id, topic_id) VALUES (2, 2, 1); insert into user_activity_topic(id, user_activity_id, topic_id) VALUES (3, 1, 2);
<reponame>opengauss-mirror/Yat<filename>openGaussBase/testcase/SQL/INNERFUNC/StatisticsInfo/Opengauss_Function_Statisticsinfo_Bfetched_Case0002.sql -- @testpoint: pg_stat_get_blocks_fetched(oid)函数的异常校验,合理报错 -- -- testpoint:空值、多参、少参、oid错误、超范围、表不存在 select pg_stat_get_blocks_fetched('') from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_blocks_fetched(a.oid,a.oid,a.oid) from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_blocks_fetched() from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_blocks_fetched('&^%^&*') from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_blocks_fetched(99999999999998789) from PG_CLASS a where a.relname = 'sales'; select pg_stat_get_blocks_fetched(a.oid) from PG_CLASS a where a.relname = 'sales';
<filename>database/data/cmd_rating.sql<gh_stars>0 -- -- PostgreSQL database dump -- SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'SQL_ASCII'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET search_path = public, pg_catalog; -- -- Data for Name: cmd_rating; Type: TABLE DATA; Schema: public; Owner: steve -- COPY cmd_rating (id, name, effect) FROM stdin; 1 Magnificent 2 2 Highly Efficient 1 3 Competent 0 4 Doddering Fool -1 5 Blithering Idiot -2 \. -- -- Name: cmd_rating_id_seq; Type: SEQUENCE SET; Schema: public; Owner: steve -- SELECT pg_catalog.setval('cmd_rating_id_seq', 1, false); -- -- PostgreSQL database dump complete --
<filename>src/PipelineMetastoreDatabase/dbo/StoredProcedures/usp_insert_metadata.sql<gh_stars>0 CREATE PROCEDURE [dbo].[usp_insert_metadata](@serverName NVARCHAR(50) , @databaseName NVARCHAR(50), @schemaName NVARCHAR(50), @tableName NVARCHAR(50), @fileSystemName NVARCHAR(50), @rootFolderPath NVARCHAR(50), @topLevelPipelineName NVARCHAR(50) , @metadataControleTable nvarchar(100) ) AS BEGIN -- DECLARE -- @serverName NVARCHAR(50) = 'testServer', -- @databaseName NVARCHAR(50) = 'testDB', -- @schemaName NVARCHAR(50) = 'testShema', -- @tableName NVARCHAR(50) = 'testTable', -- @fileSystemName NVARCHAR(50) = 'testFilesystem', -- @topLevelPipelineName NVARCHAR(50) = 'MetadataDrivenCopyTask_TopLevel', -- @rootFolderPath NVARCHAR(50) = 'testRoot', -- @metadataControleTable nvarchar(100)= 'MainControlTable' SET NOCOUNT ON; CREATE TABLE [dbo].[#MainControlTable] ( [SourceObjectSettings] NVARCHAR (MAX) NULL, [SourceConnectionSettingsName] VARCHAR (MAX) NULL, [CopySourceSettings] NVARCHAR (MAX) NULL, [SinkObjectSettings] NVARCHAR (MAX) NULL, [SinkConnectionSettingsName] VARCHAR (MAX) NULL, [CopySinkSettings] NVARCHAR (MAX) NULL, [CopyActivitySettings] NVARCHAR (MAX) NULL, [TopLevelPipelineName] VARCHAR (MAX) NULL, [TriggerName] NVARCHAR (MAX) NULL, [DataLoadingBehaviorSettings] NVARCHAR (MAX) NULL, [TaskId] INT NULL, [CopyEnabled] BIT NULL ); DECLARE @MainControlMetadata NVARCHAR(max) = N'{ "SourceObjectSettings": { "schema": "'+ @schemaName + N'", "table": "'+ @tableName + N'" }, "SinkObjectSettings": { "fileName": "'+ @schemaName + @tableName + N'.csv", "folderPath": "'+ @rootFolderPath + N'/'+ @serverName + N'/'+ @databaseName + N'", "fileSystem": "'+ @fileSystemName + N'" }, "CopySourceSettings": { "partitionOption": "None", "sqlReaderQuery": null, "partitionLowerBound": null, "partitionUpperBound": null, "partitionColumnName": null, "partitionNames": null }, "CopyActivitySettings": { "translator": null }, "TopLevelPipelineName": "'+ @topLevelPipelineName + N'", "TriggerName": [ "Sandbox", "Manual", "Trigger" ], "DataLoadingBehaviorSettings": { "dataLoadingBehavior": "FullLoad" }, "TaskId": 0, "CopyEnabled": 1 }' INSERT INTO [dbo].[#MainControlTable] ( [SourceObjectSettings], [SourceConnectionSettingsName], [CopySourceSettings], [SinkObjectSettings], [SinkConnectionSettingsName], [CopySinkSettings], [CopyActivitySettings], [TopLevelPipelineName], [TriggerName], [DataLoadingBehaviorSettings], [TaskId], [CopyEnabled]) SELECT * FROM OPENJSON(@MainControlMetadata) WITH ([SourceObjectSettings] [nvarchar](max) AS JSON, [SourceConnectionSettingsName] [varchar](max), [CopySourceSettings] [nvarchar](max) AS JSON, [SinkObjectSettings] [nvarchar](max) AS JSON, [SinkConnectionSettingsName] [varchar](max), [CopySinkSettings] [nvarchar](max) AS JSON, [CopyActivitySettings] [nvarchar](max) AS JSON, [TopLevelPipelineName] [varchar](max), [TriggerName] [nvarchar](max) AS JSON, [DataLoadingBehaviorSettings] [nvarchar](max) AS JSON, [TaskId] [int], [CopyEnabled] [bit]); DECLARE @sql NVARCHAR(max) = ' INSERT INTO [dbo].['+ @metadataControleTable +'] ( [SourceObjectSettings], [SourceConnectionSettingsName], [CopySourceSettings], [SinkObjectSettings], [SinkConnectionSettingsName], [CopySinkSettings], [CopyActivitySettings], [TopLevelPipelineName], [TriggerName], [DataLoadingBehaviorSettings], [TaskId], [CopyEnabled]) SELECT * FROM #MainControlTable ' exec(@sql) RETURN 0 END; GO
create table EG_REGIONALHEIRARCHY ( id bigint NOT NULL, code bigint not null, parent bigint, name character varying(512) NOT NULL, type bigint NOT NULL, ishistory boolean default false, createddate timestamp without time zone, lastmodifieddate timestamp without time zone, createdby bigint, lastmodifiedby bigint, version bigint ); CREATE SEQUENCE seq_eg_regionlaHeirarchy; ALTER TABLE ONLY EG_REGIONALHEIRARCHY ADD CONSTRAINT pk_eg_REGIONALHEIRARCHY PRIMARY KEY (id);
<reponame>geophile/sql-layer<filename>fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/rule/pick-joins-and-indexes/cross-product.sql<gh_stars>0 SELECT iid, aid FROM items, addresses WHERE state = 'MA' AND sku = '1234'
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.0.4 -- http://www.phpmyadmin.net -- -- Client: localhost -- Généré le: Ven 03 Juillet 2015 à 10:28 -- Version du serveur: 5.6.12-log -- Version de PHP: 5.4.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Base de données: `videoludique` -- CREATE DATABASE IF NOT EXISTS `videoludique` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; USE `videoludique`; -- -------------------------------------------------------- -- -- Structure de la table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `firstName` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `mail` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `pass` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `country_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ; -- -- Contenu de la table `user` -- INSERT INTO `user` (`id`, `name`, `firstName`, `mail`, `pass`, `country_id`) VALUES (4, 'Mickael', 'Mickael', '<EMAIL>', 'mika', 0); -- -------------------------------------------------------- -- -- Structure de la table `videos` -- CREATE TABLE IF NOT EXISTS `videos` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=44 ; -- -- Contenu de la table `videos` -- INSERT INTO `videos` (`id`, `url`) VALUES (24, 'https://video-ams2-1.xx.fbcdn.net/hvideo-xpt1/v/t42.1790-2/11371446_1016484935058393_1380682436_n.mp4?efg=eyJybHIiOjE2NzQsInJsYSI6NTEyfQ%3D%3D&oh=94e5a23c597f2c38d04397b85df90b50&oe=55968143'), (25, 'https://video-ams2-1.xx.fbcdn.net/hvideo-xft1/v/t42.1790-2/11387372_997292630310957_1696754581_n.mp4?efg=eyJybHIiOjgxOSwicmxhIjo1MTJ9&oh=b664ad4f2419008d85715711ee78b3fb&oe=559671EE'), (31, 'https://video-ams2-1.xx.fbcdn.net/hvideo-xat1/v/t42.1790-2/11536666_10153433094103270_1300325159_n.mp4?efg=eyJybHIiOjExNDQsInJsYSI6NTEyfQ%3D%3D&oh=55f7ba589eb8f0d267000ab920810de8&oe=55967CB2'), (32, 'https://video-ams2-1.xx.fbcdn.net/hvideo-xtf1/v/t43.1792-2/11538015_10153128377638732_1131121007_n.mp4?efg=eyJybHIiOjE1NzgsInJsYSI6MTAyNH0%3D&oh=9adff80951ed2cbe7a3910fc3c09a46a&oe=55968AD3'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Apr 29, 2020 at 09:40 AM -- Server version: 5.7.21 -- PHP Version: 7.2.4 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `local it job finder` -- -- -------------------------------------------------------- -- -- Table structure for table `description` -- DROP TABLE IF EXISTS `description`; CREATE TABLE IF NOT EXISTS `description` ( `title` varchar(200) DEFAULT NULL, `link` varchar(300) DEFAULT NULL, `Salary` varchar(300) DEFAULT NULL, `JobRequirements` varchar(5000) DEFAULT NULL, `JobResponsibilities` varchar(5000) DEFAULT NULL, `Vacancy` varchar(300) DEFAULT NULL, `DeadLine` varchar(300) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `description` -- INSERT INTO `description` (`title`, `link`, `Salary`, `JobRequirements`, `JobResponsibilities`, `Vacancy`, `DeadLine`) VALUES ('Graphic/ Web Designer', 'http://job.com.bd/jobs/details/?i=73579', 'Negotiable', '*)Bachelor or Master degree in Computer Science or related field. B.Sc in Computer Science Or Masters in Computer Science or any other relevant field.\n*)2 to 5 year(s)', '*)Graphic Design and Image Editing using Adobe Photoshop, Illustrator and other components of Adobe Creative suite \n*)Making brochures, posters, billboard, newspaper ad, leaflet, icons, logos and other marketing materials \n*)Output setting, banding, spot &amp; foil good idea. \n*)Designing vector graphics for internal use and for external projects \n*)Crafting content like social posts, banner ads, print ads, etc. \n*)Design Shop Sign, Brochure, Leaflet, mockup and Hangtag \n*)Digital marketing on digital media. \n*)Knowledge on PHP, MySQL, Wordpress, CSS3, Bootstrap3, JavaScript, jQuery, Angular, XML and AJAX integration. \n*)Knowledge on Laravel with vue.js will be plus. \n*)Should have the ability of Pixel Perfect wordpress theme design &amp; development is mandatory. \n*)Must have experience in wordpress website maintaining. \n*)Expert in PSD to Wordpress theme development. \n*)Extensive knowledge in Pixel Perfection. Adobe Photoshop, Flash, Action Script and motion/animation techniques - will be plus \n*)Sound understanding of relevant W3C standards and best practices. \n*)Should have knowledge on SEO (Search Engine Optimization) to develop &amp; maintain website according to its requirements. \n*)Expert in online radio, tv, news site design &amp; develop.', '1', '19 May, 2020'), ('PYTHON/ Senior PYTHON Developer', 'http://job.com.bd/jobs/details/?i=73580', 'Negotiable', '*)B.Sc in computer science, or related subject from a reputed university.\n*)4 to 8 year(s)', '*)Write effective, scalable code. \n*)Follow best development practices like code review, automated testing, CD/CI. \n*)Develop back-end components to improve responsiveness and overall performance. \n*)Integrate user-facing elements into applications. \n*)Test and debug programs. \n*)Implement components in a micro-service architecture. \n*)Assess and prioritize feature requests. \n*)Coordinate with internal teams to understand user requirements and provide technical solutions.', '1', '30 April, 2020'), ('Senior Software Engineer - C#/ ASP.NET', 'http://job.com.bd/jobs/details/?i=73572', 'Negotiable', '*)Bachelors\n*)At least 5 year(s)', '*).NET developer responsible for building .NET applications using .NET technologies (preferably experienced in .Net Core). \n*)Your primary responsibility will be to design and develop our applications, and to coordinate with the rest of the team working on different layers of the infrastructure. A commitment to collaborative problem solving, sophisticated design, and quality code is essential. \n*)Javascript and TypeScript skill is must. \n*)Good at MS SQL Server and MongoDB \n*)You must be good at both in backend and front end development. For frontend we normally use Angular 8+ or React JS or Vue JS which means you need to be good at least any of these front end framework/library. \n*)Node js experience will be considered as a plus \n*)Hands on experience in AWS will be considered as plus', '1', '12 May, 2020'), ('IT Officer', 'http://job.com.bd/jobs/details/?i=73570', '', '*)Bachelor Degree especially in Computer Science/Electronics/Telecommunication/Applied Physics with a minimum research profile in VLSI and Micro-Electronics.\n*)1 to 3 year(s)', '*)Installing, configuring, testing, and maintaining operating systems, system management tools, and applications software for both servers/clients \n*)Monitoring the security, backup, and sluggish approaches of users (students/other users) \n*)Maintaining third-party service providers to oversee systems and fix issues \n*)Providing Tier 2 and Tier 3 support both on-site and remotely \n*)Managing desktop imaging process, including creating and updating of Cadence (VLSI) software tools \n*)Reporting daily Lab status to respective Coordinator of the Lab', '1', '10 May, 2020'), ('Personalized Internet Assessor – Bangladesh', 'https://www.careerjet.com.bd/job/63f4f57a419983ecc94e0095ffb01193.html', 'Negotiable', 'Check out the job source!', 'Are you looking for a role that gives you the opportunity to work with one of America’s top 100 most trusted Companies while also increasing your income from the comfort of your home? Then why not join Lionbridge as a part-time Independent Contractor. We are currently recruiting for the role of Personalized Internet Assessors based in Bangladesh. What does the role involve? In this role you will be reviewing online search results in order to improve their content and quality. You will be required to provide feedback and analysis on content found in search engine results and provide ratings on their relevance to the search terms used. Another aspect of this role will involve reviewing the language used in the search results by examining grammar, tone and cultural relevance. Through this work you will be making a valuable contribution by expressing your opinion on the quality and content of what is currently out there on the web. You will play a part in improving the quality of one of the largest search engines in the world using both your PC and required Smartphone device. Who is suitable for this role? We are currently seeking dynamic and creative people who have a strong interest in social media, specifically those who are an active daily user of their Gmail account. We also require suitable candidates to own & use a smartphone – Android or iPhone – and have a familiarity with other forms of social media and Google products. You should also be flexible, reliable and have the ability to interpret and follow established guidelines. You will have the flexibility and freedom to work from your own home, working your own hours. Hours for this role are a minimum of 10 up to 20 hours per week depending on task availability. We are currently seeking people who have a specific smartphone device (Android V4.2 or higher or iPhone running iOS version 9.0 or higher) to complete tasks. What are the main requirements for the role? You must be fluent in both written and verbal English You must be living in Bangladesh for the last 5 consecutive years You must own and use a Smartphone (Android V4.2 or higher or iPhone running iOS version 9.0 or higher) to complete tasks All task types will require you to log on using both your desktop/laptop and smartphone device Gmail must be your primary email account Active daily user of Gmail and other forms of social media (Twitter & Facebook) You must have familiarity with current and historical business, media, sport, news, social media and cultural affairs in Bangladesh Access to and use of a broadband internet connection and associated computer and software to perform the work, all provided at your own expense Experience in use of web browsers to navigate and interact with a variety of content Lionbridge Global Sourcing Solutions Inc. Number of employees: From 51 to 200 Lionbridge Technologies, Inc. is a multinational software and professional services company specializing in language translation, localization, software testing, e-learning translation, internationalization, interpretation, software development & testing, and content development services. Job Context Part time, Independent Contractor, Work from Home Role Personalized Internet Assessor - Bangladesh (English Language) Are you looking for a role that gives you the o... Job Context Online Teaching job to perform interactive online tutoring for different subjects. Preferred subjects are: Math, Physics, Chemistry, English, Biology, Bangla, Account... Job Context Intelligent Image Management Limited, Dhaka is a BIDA (Bangladesh Investment Development Authority, earlier known as BOI) approved and a wholly owned subsidiary of IIM...', 'Unspecified', 'Unspecified'), ('Personalized Internet Assessor - Bangladesh (English Language)', 'https://www.careerjet.com.bd/job/666890fb34b7119ce33600d7c2fbd173.html', 'Negotiable', 'Check out the job source!', ' \n What does the role involve?\n \n In this role you will be reviewing online search results in order to improve their content and quality. You will be required to provide feedback and analysis on content found in search engine results and provide ratings on their relevance to the search terms used. Another aspect of this role will involve reviewing the language used in the search results by examining grammar, tone and cultural relevance.\n \n Through this work you will be making a valuable contribution by expressing your opinion on the quality and content of what is currently out there on the web. You will play a part in improving the quality of one of the largest search engines in the world using both your PC and required Smartphone device.\n \n Who is suitable for this role?\n \n We are currently seeking dynamic and creative people who have a strong interest in social media, specifically those who are an active daily user of their Gmail account. We also require suitable candidates to own &amp; use a smartphone - Android or iPhone - and have a familiarity with other forms of social media and Google products. You should also be flexible, reliable and have the ability to interpret and follow established guidelines.\n \n You will have the flexibility and freedom to work from your own home, working your own hours. Hours for this role are a minimum of 10 up to 20 hours per week depending on task availability. We are currently seeking people who have a specific smartphone device (Android V4.2 or higher or iPhone running iOS version 9.0 or higher) to complete tasks.\n \n', 'Unspecified', 'Unspecified'), ('API, Web & Back End Developer', 'https://www.careerjet.com.bd/job/909ef958f092dec95a3fd45c46832358.html', 'Tk. 20,000-35,000 per month', ' \n Bachelor of Science (BSc), Masters in Computer Application (MCA)\n \n \n 4 to 6 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age 20 to 40 years\n \n Both males and females are allowed to apply\n \n Minimum 5 years Experience\n \n', ' \n Web Development\n \n Laravel Expertise\n \n Java-script Expertise\n \n API Experience (Both Building and Using)\n \n Firebase\n \n MySQL\n \n Mobile Development (Android &amp; IOS) plus\n \n', 'Unspecified', 'Unspecified'), ('Senior Software Engineer (.NET Developer)', 'https://www.careerjet.com.bd/job/f76b8bc985381a94132df07f01957ecd.html', 'Negotiable', ' \n Bachelor of Science (BSc) in CSE\n \n \n At least 5 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age at least 28 years\n \n Both males and females are allowed to apply\n \n NoSQL Database\n \n D3JS, NodeJS, ReactJS\n \n Software Development Architecture, Software Development Life Cycle\n \n', ' \n C#, ASP.Net, MVC, WebAPI\n \n MS SQL Server, Oracle, No SQL\n \n HTML5, CSS3, Bootstrap\n \n JavaScript, JQuery\n \n Design Pattern\n \n Code Optimization\n \n TFS, Git, Devops\n \n Proven experience as a .NET Developer or Application Developer. Ability to resolve any complex problem.\n \n Write clean, scalable code using .NET programming languages.\n \n Improve existing Projects.\n \n Strong background in object-oriented development techniques.\n \n Familiar with architecture styles/APIs (REST, RPC)\n \n Excellent troubleshooting and communication skills.\n \n Ability to lead multiple projects and its team members.\n \n', 'Unspecified', 'Unspecified'), ('Senior Software Developer (ReactJS Developer)', 'https://www.careerjet.com.bd/job/5c5453b95397f1081b48bf4a0256e9f0.html', 'Negotiable', ' \n Bachelor of Science (BSc) in CSE\n \n \n At least 5 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age at least 28 years\n \n Both males and females are allowed to apply\n \n Good working knowledge of algorithms and data structures.\n \n Understanding of platform architecture and technology, the process of software deployment and environment management.\n \n', ' \n JavaScript frameworks and libraries like ReactJs, jQuery, Flux.\n \n HTML5, Bootstrap 3, CSS3, JavaScript, Typescript and XML.\n \n Design Pattern\n \n Code Optimization\n \n TFS, Git\n \n Proven experience as a frontend application Developer. Ability to resolve any complex problem.\n \n Write clean, scalable code using ReactJS programming languages.\n \n Improve existing Projects.\n \n Familiar with architecture styles/APIs\n \n Excellent troubleshooting and communication skills.\n \n Ability to lead multiple projects and its team members.\n \n', 'Unspecified', 'Unspecified'), ('Software Engineer (C++)', 'https://www.careerjet.com.bd/job/d40db6c3b548ab0f9dbf52fe52bd96ab.html', 'Negotiable', ' \n Bachelor in Engineering (BEngg)\n \n Skills Required: C++, C++/ VC++, C++programing, Python, Python Programmer, Shell Scripting, Software Developer\n \n \n 2 to 6 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age 22 to 36 years\n \n Both males and females are allowed to apply\n \n The applicants should have experience in the following area(s):\n \n • C++ Development Skill with Data Structure / Class Design.\n \n • Scripting Skill like, Python Programing and shell Programming ( BASH, CSH)\n \n • Knowledge of Linux OS like, File management and Commands\n \n • Knowledge of EE/ECS Concepts like Ohms Law, KCL, KVL, Etc\n \n • Testing skill like Unit Testing and Regression Skills\n \n • Knowledge of using Lex/Yacc parser, Multi CPU Software, Multi GPU CUDA Software Development.\n \n', ' \n Design, code, test and implement according to software design specifications following standard coding styles and practices.\n \n Analyze the requirements and understand the deliverable.\n \n Develop software solutions by studying information needs, systems flow, data usage, and work processes.\n \n Measure the code coverage after the testing. Continue the test and analysis unless the coverage reaches to an acceptable level.\n \n Closely working with planning, scheduling, coordinating and supervising to cross functional team.\n \n Create visualizations and reports for requested projects\n \n Identify the actual requirements of the project\n \n Carry out stress testing, performance testing, functional testing and scalability testing\n \n Write and execute test scripts,run manual and automated tests\n \n Test in different environments including web and server\n \n Work towards departmental and project deadlines\n \n Provide objective feedback to software development project teams and ensuring quality work\n \n Work on multiple projects at one time\n \n Travel to different project sites like, Japan\n \n Create daily, weekly and monthly work/ project reports.\n \n Communicate with international engineers and express the project in technical language\n \n', 'Unspecified', 'Unspecified'), ('Senior/ Mid Level Java Engineer', 'https://www.careerjet.com.bd/job/64420de1ddce355b7d53497dac29d992.html', 'Negotiable', ' \n Bachelor in Engineering (BEngg) in Computer Science Engineering\n \n \n 2 to 5 year(s)\n \n \n The candidate must have a willingness to grow technically and assume larger responsibilities, when required.\n \n The candidate must have the ability to fit in a friendly environment and wear casual dresses in office.\n \n', ' \n Excellent knowledge on Java language.\n \n Spring - expert level skills with the Core Spring Framework.\n \n Great to have experience with spring MVC, spring Security, spring Integration.\n \n Must have good knowledge and experience in standard SQL.\n \n Experience with ORM tools will be a plus.\n \n Application Servers - general understanding of application server platforms Apache Tomcat or any other like JBoss, Websphere, Jetty is a must.\n \n Other programming language - general comfortable in more than one programming language and have a firm grasp of fundamental web/internet technologies. Experience/Knowledge in Perl, Python, C# is a plus.\n \n Testing - experience with JUnit, mockito or other mock object tools is a great plus.\n \n Familiarity with Development methodology like SCRUM, TDD is must.\n \n Data Mining - Experience and/knowledge of general data mining, statistics, machine learning techniques will be a huge plus.\n \n', 'Unspecified', 'Unspecified'), ('Web Developer, PHP/Laravel', 'https://www.careerjet.com.bd/job/cdc26335fea1e2ed8967a629cf0bd4c7.html', 'Negotiable', ' \n Bachelor / Masters in Computer Science\n \n \n 3 to 5 year(s)\n \n \n Age 25 to 30 years\n \n 3 to 5 years of working experience in web development\n \n Best in Laravel 6+ development\n \n Best in PHP 7+, MySQL\n \n Very Good in OPP Programming\n \n Good knowledge in API, API Resource, Eloquent ORM, DB Migration\n \n Expert in JWT or Laravel Passport\n \n Expert in MySQL query\n \n Know version control like as git\n \n Good knowledge in\n \n Good in MVC frameworkology\n \n Should have strong communication skills in both Bengali and English\n \n', ' \n The incumbent will report to Senior Manager, Information Technology. S/he will be primarily responsible to -\n \n Development of mobile/web front ends and cross platform clients with online/offline functionality based on agreed upon scope and requirements.\n \n Rapidly build prototypes/simulations from mockups that can be directly implemented\n \n Create clean interfaces and smooth interactions based on UI/UX designs and documentation for a range of devices, including mobiles, tablets and desktops.\n \n Create and build cross platform mobile applications using cross platform SDKs\n \n Unit-test code for robustness, including edge cases, usability, and general reliability\n \n Continuously discover, evaluate, and implement new technologies to maximize development\n \n', 'Unspecified', 'Unspecified'), ('Web Developer, Node.js/Angular', 'https://www.careerjet.com.bd/job/13a2ae0d45748aacee5db01206c4040b.html', 'Negotiable', ' \n Bachelor / Masters in Computer Science\n \n \n 3 to 5 year(s)\n \n \n Age 25 to 30 years\n \n 3 to 5 years of working experience in web development\n \n Node.js or Angular 8+ development\n \n Typescript\n \n Good is TSLint\n \n Good knowledge in Angular Module, Service, Interface, Pipe, Component with Input/Output\n \n Expert in Angular reactive forms.\n \n Know version control like as git\n \n Clear Knowledge about Resource API Implement\n \n Have to know JWT\n \n Good in SPA frameworkology\n \n Very Good in OPP Programming\n \n Should have strong communication skills in both Bengali and English\n \n', ' \n The incumbent will report to Senior Manager, Information Technology. S/he will be primarily responsible to -:\n \n Development of mobile/web front ends and cross platform clients with online/offline functionality based on agreed upon scope and requirements.\n \n Rapidly build prototypes/simulations from mockups that can be directly implemented\n \n Create clean interfaces and smooth interactions based on UI/UX designs and documentation for a range of devices, including mobiles, tablets and desktops.\n \n Create and build cross platform mobile applications using cross platform SDKs\n \n Unit-test code for robustness, including edge cases, usability, and general reliability\n \n Continuously discover, evaluate, and implement new technologies to maximize development\n \n', 'Unspecified', 'Unspecified'), ('Senior PHP Developer (Symfony)', 'https://www.careerjet.com.bd/job/8aff3dbcac25d36542bf487d0de6e0e6.html', 'Negotiable', ' \n Bachelor of Science (BSc)\n \n Skills Required: PHP, PHP (OOP)\n \n \n 8 to 15 year(s)\n \n \n Good knowledge of modern PHP, Symfony Framework\n \n Knowledge of other PHP frameworks and experience solving complexity with OOP and SOLID principles\n \n ECMAScript, knowledge of other programming languages is considered as a plus\n \n Knowledge and work experience with frontend frameworks\n \n Basic knowhow of Docker, Kubernetes and Ansible will be added bonus.\n \n Very good English communications skills\n \n An entrepreneurial mindset\n \n', ' \n Work in a multi-functional, self-organising team based on Agile principles (Scrum or Scrumban);\n \n Proactively engage in the planning, design, implementation and support of Paysera products;\n \n Follow and contribute to development best-practices, give and receive code reviews on a daily basis;\n \n Constantly improve as a developer and a team member, share knowledge and help other team members grow;\n \n Any other task as assigned by the management.\n \n', 'Unspecified', 'Unspecified'), ('Graphic/ Web Designer', 'https://www.careerjet.com.bd/job/a584be0dcdd58788f9342236c72a69c8.html', 'Negotiable', ' \n Bachelor or Master degree in Computer Science or related field.\n \n B.Sc in Computer Science Or Masters in Computer Science or any other relevant field.\n \n \n 2 to 5 year(s)\n \n \n Age 25 to 30 years\n \n Both males and females are allowed to apply\n \n The applicants should have experience in the following area(s): Web Developer/ Web Designer\n \n Must meet deadlines and proactively communicate progress\n \n Must be accountable, self-motivated and have meticulous attention to detail\n \n Must have an eye for fine details and a passion to work with graphics\n \n Familiarity with tools like Microsoft Office and adobe creative suite\n \n Willingness and ability to learn new technologies and think out of the box to come up with creative ideas\n \n Self-motivated and open to accept ideas from team members\n \n Strong verbal and written communication, interpersonal skill, good work ethic\n \n Only Skill, Knowledge &amp; Ability will be preferred.\n \n At Least 2 year experience on web developing company.\n \n Front-end and back-end development experience\n \n', ' \n Graphic Design and Image Editing using Adobe Photoshop, Illustrator and other components of Adobe Creative suite\n \n Making brochures, posters, billboard, newspaper ad, leaflet, icons, logos and other marketing materials\n \n Output setting, banding, spot &amp; foil good idea.\n \n Designing vector graphics for internal use and for external projects\n \n Crafting content like social posts, banner ads, print ads, etc.\n \n Design Shop Sign, Brochure, Leaflet, mockup and Hangtag\n \n Digital marketing on digital media.\n \n Knowledge on PHP, MySQL, Wordpress, CSS3, Bootstrap3, JavaScript, jQuery, Angular, XML and AJAX integration.\n \n Knowledge on Laravel with vue.js will be plus.\n \n Should have the ability of Pixel Perfect wordpress theme design &amp; development is mandatory.\n \n Must have experience in wordpress website maintaining.\n \n Expert in PSD to Wordpress theme development.\n \n Extensive knowledge in Pixel Perfection. Adobe Photoshop, Flash, Action Script and motion/animation techniques - will be plus\n \n Sound understanding of relevant W3C standards and best practices.\n \n Should have knowledge on SEO (Search Engine Optimization) to develop &amp; maintain website according to its requirements.\n \n Expert in online radio, tv, news site design &amp; develop.\n \n', 'Unspecified', 'Unspecified'), ('IT Associate', 'https://www.careerjet.com.bd/job/aeba99772050ba686a452b620d982ff4.html', 'Tk. 15,000-20,000 per month', 'Check out the job source!', ' \n Responsible for all electronics devices across all offices\n \n Ensure 24/7 offices internet\n \n Ensuring all the workstations are ready to work with all the required IT accessories (Laptop, Keyboard, Mouse, Monitor, etc.)\n \n Installing and configuring computer software, systems, network, printers and scanners\n \n All the PCs and peripheral devices (Ex: Mouse, keyboard, HDMI cable, Monitor) are working properly, and Identify faulty IT devices and take action accordingly\n \n Ensure all the printers are connected with the proper network and ready to use\n \n Testing new technology/devices and propose a plan to improvise our current systems\n \n Maintain the inventory effectively where all the electronic devices are listed with specifications and locations\n \n Update inventory in real-time for including/excluding electronic devices\n \n Maintain confidentiality strictly\n \n Ensure and monitoring everyone is following ISMS protocols/standards\n \n Assists in maintaining information security through controlled hardware AND/OR software installation and training\n \n Follow the emergency plan for equipment, power or security failures when necessary and protect data and ensure security\n \n Business continuity plan for IT failures\n \n Monitoring CCTV cameras are working properly\n \n Build strong relationships with the vendors (ISP, IPS, etc.) and Interacts and communicates effectively with internal/external contacts\n \n Create and update maintenance log for all the electronic devices (AC, Fridge, IPS, etc.) and ensuring maintenance is being done on time\n \n Troubleshooting, support, and repair when IT equipment or network malfunction\n \n Express new ideas and suggestions in a positive manner\n \n Provide purchasing proposal with estimated cost, benefits and deadline\n \n', 'Unspecified', 'Unspecified'), ('Junior Software Engineer', 'https://www.careerjet.com.bd/job/d58b06eebab5e0f1a4ab22d8493ab29d.html', 'Negotiable', 'Check out the job source!', ' \n We expect efficiency and pragmatic problem-solving skills\n \n Be well versed in data structures and algorithms\n \n Experience in writing test code. Must be capable of generating complex test cases\n \n Excellent debugging skills\n \n Good communication and team-working skills\n \n Idea about Agile development environment\n \n Participating in online/offline programming contest is a plus\n \n Fluency in written and spoken English\n \n', 'Unspecified', 'Unspecified'), ('PYTHON/ Senior PYTHON Developer', 'https://www.careerjet.com.bd/job/847d377d1941f22c90a45fe3a28ff11f.html', 'Negotiable', ' \n B.Sc in computer science, or related subject from a reputed university.\n \n \n 4 to 8 year(s)\n \n \n 4 to 8 years working experience.\n \n Work experience as a Python Developer.\n \n Expertise in at least one popular Python framework (like Django, Flask or Pyramid).\n \n Knowledge of object-relational mapping (ORM).\n \n Familiarity with front-end technologies (like JavaScript and HTML5).\n \n Team spirit.\n \n Good problem-solving skills.\n \n', ' \n Write effective, scalable code.\n \n Follow best development practices like code review, automated testing, CD/CI.\n \n Develop back-end components to improve responsiveness and overall performance.\n \n Integrate user-facing elements into applications.\n \n Test and debug programs.\n \n Implement components in a micro-service architecture.\n \n Assess and prioritize feature requests.\n \n Coordinate with internal teams to understand user requirements and provide technical solutions.\n \n', 'Unspecified', 'Unspecified'), ('Full Stack Web Developer', 'https://www.careerjet.com.bd/job/db7533bd14862e7fe034ee3783775090.html', 'Negotiable', ' \n Bachelor of Science (BSc) in Computer Science &amp; Engineering\n \n Skills Required: Agile methodology, AWS, iquery, JavaScript, Laravel Framework, PHP, PostgreSQL\n \n \n 4 to 5 year(s)\n \n \n Successfully contribute to client-facing software projects by individual effort\n \n Ability to think out of the box, problem-solving skills\n \n Regularly meet delivery estimates set by the client\n \n Demonstrate initiative to present to others about what they have learned\n \n Build productive internal and external working relationships\n \n Work under Pressure, Passion for learning and growth\n \n Must meet the deadline.\n \n Adapt to new technology quickly.\n \n Excellent time management and multitasking skills.\n \n Able to work independently or in a full team.\n \n', ' \n Fluent in spoken English and Writing\n \n Lend your knowledge as a PHP (Laravel), JavaScript, NodeJs (Express Js) expert to design and build great web applications.\n \n Extensive knowledge on jQuery or any JavaScript framework.\n \n Experience with the Laravel framework is must.\n \n Experience with the Express.js framework.\n \n Build solutions that leverage object-oriented and programming best practices\n \n Good understanding of developing APIs, web services.\n \n Excellent verbal and written English communication skill is a must.\n \n Test, troubleshoot and optimize application components for maximum speed, security, and scalability\n \n Proactively follow application security and data protection best practices\n \n Create and Translate UI/UX wireframes into production elements, workflows and development plans. Extensive knowledge on UI/UX\n \n Contribute to all aspects of the web application life cycle from concept to deployment to updates\n \n Be part of a team where sharing knowledge, continuous learning and the pursuit of excellence are vital.\n \n Researches and suggests frameworks and other methods of reducing coding.\n \n Proficiency in MySQL or PostgreSQL and professional experiences to work with large datasets\n \n Experience interfacing with third-party APIs and frameworks\n \n Experience with NodeJS will add values\n \n Competent with revision control systems (Git)\n \n Code optimization, performance improvements, work on complex code refactoring and database queries\n \n Passionate about writing beautiful and clean code\n \n Excellent written and verbal communication skills\n \n Demonstrable ability to work as a team as well as individually\n \n A passion for development trends, best practices and the energy to share knowledge with your team.\n \n', 'Unspecified', 'Unspecified'), ('Auto Cad Designeer', 'https://www.careerjet.com.bd/job/eb8c56fc463b9f7b9d45bca95dd6505a.html', 'Negotiable', 'Check out the job source!', '<p class=\"title_p\"></p>', 'Unspecified', 'Unspecified'), ('Senior Software Engineer - C#/ ASP.NET', 'https://www.careerjet.com.bd/job/062759a94c1ced25728a31c62a736b29.html', 'Negotiable', 'Check out the job source!', ' \n .NET developer responsible for building .NET applications using .NET technologies (preferably experienced in .Net Core).\n \n Your primary responsibility will be to design and develop our applications, and to coordinate with the rest of the team working on different layers of the infrastructure. A commitment to collaborative problem solving, sophisticated design, and quality code is essential.\n \n Javascript and TypeScript skill is must.\n \n Good at MS SQL Server and MongoDB\n \n You must be good at both in backend and front end development. For frontend we normally use Angular 8+ or React JS or Vue JS which means you need to be good at least any of these front end framework/library.\n \n Node js experience will be considered as a plus\n \n Hands on experience in AWS will be considered as plus\n \n', 'Unspecified', 'Unspecified'), ('Software Engineer (application & web developments)', 'https://www.careerjet.com.bd/job/dcfbbf30dbd9dc304e82ccf32f1310f3.html', 'Negotiable', ' \n Bachelor of Science (BSc)\n \n \n At least 3 year(s)\n \n \n Age at least 25 years\n \n Both males and females are allowed to apply\n \n Skilled on HTML/ XHTML, CSS, PHP, SQL, AJAX, jQuery XML, WordPress, MySQL.\n \n A PHP Developer writes beautiful, fast PHP to a high standard, in a timely and salable way that improves the code-base of our products in meaningful ways. You will be a part of a full-stack Technical team that is responsible for all aspects of the ongoing software development from the initial specification, through to developing, testing, and launching\n \n', ' \n PHP based Web application Development.\n \n Knowledge of object-oriented PHP programming\n \n Strong knowledge of PHP web frameworks Laravel and Code Igniter\n \n Design, build, and maintain high performance, reusable, and reliable code\n \n Demonstrable knowledge of web technologies including HTML, CSS, Javascript, AJAX etc.\n \n Sound knowledge of RDBMS like Oracle, MS SQL &amp; Mysql\n \n Write clean, structured and documented Code. .\n \n Proficient understanding of code versioning tools, such as Git\n \n Ability to understand business requirements and translate them into technical requirements.\n \n Familiarity with RESTful APIs to connect applications to back-end services\n \n Must have Knowledge in Responsive Design.\n \n Integrate data from various back-end services and databases.\n \n Up-to-date with the latest Web trends, techniques, and technologies.\n \n Strong logical, analytical skills.\n \n Expert in PHP (MVC), MySQL, HTML5, CSS\n \n Working experience on Laravel/ Code Igniter\n \n Ability to build complex query on Mysql Database\n \n Clear knowledge on javascript, Ajax, Jquery, JSON, XML\n \n Must have experience on API\n \n Must have good OOP practices and use MVC framework/CMS\n \n Very good and well experienced in debugging code to find out bug\n \n', 'Unspecified', 'Unspecified'), ('Software Quality Assurance Engineer', 'https://www.careerjet.com.bd/job/aafb1adb962e17712afab5a6f13f3307.html', 'Negotiable', 'Check out the job source!', 'Dynamic Solution Innovators (DSi), a software company based in Dhaka, Bangladesh, has been successfully providing software services in global industry since 2001. DSi is also known for being a great place to work and build a career. @DSi, we team up with our clients to build next generation products loved by their customers. We believe quality is more important than quantity. Currently DSi is seeking for few passionate SQA Engineers who wants to contribute something for the overall industry, by joining our awesome QA team. Requirements * Liaise with offshore teams (e.g. developers and business analysts) to identify system requirements. Review requirements, specifications and technical design documents to provide timely and meaningful feedback. Create detailed, comprehensive and well-structured test plans and test cases. Execute test cases (manual or automated) and analyze results. Identify, isolate, and track and report bugs throughout testing. Identify any potential problems that users might encounter Monitor debugging process results. Conduct post-release/ post-implementation testing. Work with cross-functional teams to ensure quality throughout the software development lifecycle. Expected to have the following skills: Very good attention to detail. Experience in writing clear, concise and comprehensive test plans and test cases. Strong knowledge of software QA methodologies, tools and processes. Research new tools, technologies, and testing processes Time management skills Working knowledge of test management software. Analytical mind and problem-solving aptitude. Excellent communication and organizational skills. Excellent troubleshooting and debugging skills. Able to work independently as well as collaboratively in a team. Good knowledge of programming languages like Java, JavaScript or others. Good to have but not mandatory: Experience with functional automation tools such as TestComplete, Selenium, Cucumber, etc. Fluency in written and spoken English Bachelor’s degree in computer science or equivalent Experience Requirements: 0 to 1 year(s) Benefits Work with some of the best and most experienced talents in the country In-campus free lunch, snacks Two festival bonuses Yearly increments Learn more... Job Context Your role is integral to the creation of software systems and technical products including vehicles, electronic goods and healthcare. You might work on individual proj... Job Context You don`t need to be a CS major to work here, but you need to be ridiculously smart and you have to like getting things done. You will architect, write code, and guide... Job Context We are looking for candidates who want to be a passionate software engineer to design, develop and install software solutions. A Junior Software Engineer responsibilit...', 'Unspecified', 'Unspecified'), ('Senior/Mid level Java Engineer', 'https://www.careerjet.com.bd/job/3d0071b93fb0a88e8f730c2da9ded29a.html', 'Negotiable', 'Check out the job source!', 'Dynamic Solution Innovators (DSi), a software company based in Dhaka, Bangladesh, has been successfully providing software services in global industry since 2001. DSi is also known for being a great place to work and build a career. @DSi, we team up with our clients to build next generation products loved by their customers. We believe quality is more important than quantity. Currently DSi is seeking for few passionate Programmers/Developers who wants to contribute something for the overall industry, by joining our awesome development team. Requirements Excellent knowledge on Java language. Spring - expert level skills with the Core Spring Framework. Great to have experience with spring MVC, spring Security, spring Integration. Must have good knowledge and experience in standard SQL. Experience with ORM tools will be a plus. Application Servers - general understanding of application server platforms Apache Tomcat or any other like JBoss, Websphere, Jetty is a must. Other programming language - general comfortable in more than one programming language and have a firm grasp of fundamental web/internet technologies. Experience/Knowledge in Perl, Python, C# is a plus. Testing - experience with JUnit, mockito or other mock object tools is a great plus. Familiarity with Development methodology like SCRUM, TDD is must. Data Mining - Experience and/knowledge of general data mining, statistics, machine learning techniques will be a huge plus. Additional Job Requirements: The candidate must have a willingness to grow technically and assume larger responsibilities, when required. The candidate must have the ability to fit in a friendly environment and wear casual dresses in office. Experience Requirements: 2 to 5 year(s) Benefits Work with some of the best and most experienced talents in the country In-campus free lunch, snacks Two festival bonuses Yearly increments Learn more... Job Responsibilities Excellent knowledge on Java language. Spring - expert level skills with the Core Spring Framework. Great to have experience with spring MVC, spring Securit... Job Responsibilities Professional experience developing software using J2EE multi-tiered applications. Database development: experience in creating and querying SQL databases. ... Job Responsibilities C#, ASP.Net, MVC, WebAPI MS SQL Server, Oracle, No SQL HTML5, CSS3, Bootstrap JavaScript, JQuery Design Pattern Code Optimization TFS, Git, Devops Pro...', 'Unspecified', 'Unspecified'), ('Frontend Developer (Vue.js)', 'https://www.careerjet.com.bd/job/b0dfa1ba9292513c5fde70ea5b7f38d4.html', 'Negotiable', 'Check out the job source!', ' \n Integration RESTful API services using Vue.js\n \n Translate UI/UX wireframes into working user interfaces.\n \n Build all the user-facing web pages and product features for your team\n \n Develop new user-facing features\n \n Collaborate with other team members.\n \n Design and build applications and UI features\n \n', 'Unspecified', 'Unspecified'), ('Mobile Device Management (MDM) Func Lead', 'https://www.careerjet.com.bd/job/0e089a5be9fd2e69b2fa87c612269684.html', 'Negotiable', ' \n Masters in Computer Application (MCA), Master of Business Administration (MBA), Bachelor in Engineering (BEngg)\n \n \n At least 8 year(s)\n \n \n Age at least 32 years\n \n Strong functional knowledge across Oracle Utilities components particularly Mobile Device Management (MDM) components\n \n Minimum 5 years of experience as Architect for Oracle Utilities product suite\n \n Minimum 2 years on experience in architectonic and delivering Oracle Utilities Mobile Device Management (MDM) as Techno Functional Consultant\n \n Atleast 2 full implementation experience of Mobile Device Management (MDM) as Solution Architecture\n \n Good work experience on Customer to Meter (C2M)\n \n', ' \n Conduct module specific requirement workshop, capture and align business requirement\n \n Prepare module wise detailed fit/gap analysis and identify customization components\n \n Prepare module specific Functional specification\n \n Prepare module wise Configuration master sheet which translates the \"Fit\" items to the technology\n \n Identify customization/extension requirement and communicate to Technical consultants\n \n Prepare detailed technical specification for both customization and integration components\n \n Configure the product as per the design worksheet and bring up the individual business process\n \n', 'Unspecified', 'Unspecified'), ('Customer Care and Billing (CC&B) Func Lead (Oracle Utilities Expert)', 'https://www.careerjet.com.bd/job/0da56bc4b37055a4cb484cb4db834a61.html', 'Negotiable', ' \n Masters in Computer Application (MCA), Master of Business Administration (MBA), Bachelor in Engineering (BEngg)\n \n \n At least 8 year(s)\n \n \n Age at least 32 years\n \n Minimum 7 years of experience as Architect for Oracle Utilities product suite\n \n Minimum 2 years on experience in architecture and delivering Oracle Utilities Customer Care and Billing (CC&amp;B) as Techno Functional Consultant\n \n At least 2 full implementation experience of Customer Care and Billing (CC&amp;B) as Solution Architecture\n \n Good work experience on Oracle Utilities Customer to Meter (C2M)\n \n', ' \n Conduct module specific requirement workshop, capture and align business requirement\n \n Prepare module wise detailed fit/gap analysis and identify customization components\n \n Prepare module specific Functional specification\n \n Prepare module wise Configuration master sheet which translates the \"Fit\" items to the technology\n \n Identify customization/extension requirement and communicate to Technical consultants\n \n Prepare detailed technical specification for both customization and integration components\n \n Configure the product as per the design worksheet and bring up the individual business process\n \n', 'Unspecified', 'Unspecified'), ('Software Engineer (PHP)', 'https://www.careerjet.com.bd/job/f3d39fa5b367b2a708a0e5d4e36b68d7.html', 'Negotiable', ' \n Bachelor of Science (BSc) in CSC,CSE,ETE or IT related discipline\n \n Skills Required: JSON, Laravel Framework, MVC Pattern\n \n \n 4 to 6 year(s)\n \n The applicants should have experience in the following business area(s):\n \n \n Age 26 to 32 years\n \n Both males and females are allowed to apply\n \n Strong programming skills &amp; highly proficient in PHP Framework Laravel\n \n Experience in PHP-based application development\n \n Experience with JSON data\n \n Solid understanding on MVC pattern\n \n Applicant must have excellent knowledge on modern Web Technologies like HTML5, CSS3, Bootstrap, jQuery, AJAX\n \n Clear understanding of OOP &amp; design patterns\n \n Must be familiar with RDBMS\n \n Must have hands on SQL query writing skill for complex business requirements\n \n Solid experience to working with Unix Platform\n \n Experience with NodeJs and AngularJS application development will add extra preference\n \n Strong verbal and written communication skills\n \n Effective organizational, time management and planning skills\n \n Problem-solving skills\n \n', ' \n API Integration with different platform\n \n Design, code, test and implement according to software design specifications following standard coding styles and practice\n \n Analyze the requirements and understand the deliverable\n \n Develop software solutions by studying information needs, systems flow, data usage, and work processes\n \n Document and demonstrate solutions by developing documentation, flowcharts, layouts, diagrams, charts, code comments and clear readable code\n \n Participate in code/ design reviews after investigating current software development projects\n \n Seek out new technologies and ideas to add value to project\n \n Collaborate with team members and ensure knowledge transfer\n \n While this job description is intended to be an accurate reflection of the requirements of the position, management reserves the right to assign any other lawful activities as and when required in the interest of business situation\n \n', 'Unspecified', 'Unspecified'), ('Java Developer', 'https://www.careerjet.com.bd/job/55245279989714ed6ccb0d3febc6a29a.html', 'Negotiable', ' \n B. Sc. in Computer Science or related field.\n \n \n 1 to 2 year(s)\n \n Freshers are also encouraged to apply.\n \n \n Have solid knowledge of core tools and frameworks along with experience in common library frameworks.\n \n Have strong knowledge of core Java JVM and have worked with databases like - PostgreSQL, MySQL, MongoDB etc.\n \n Pay strong attention to detail and deliver work that is of a high standard\n \n Highly motivated, ability to work with a team in stressful situations\n \n Excellent written, verbal communication and collaboration skills\n \n', ' \n Writing well-designed, testable and efficient code.\n \n Debugging advanced level modular software applications and frameworks.\n \n Working as a part of a dynamic team to deliver winning products.\n \n Incorporating Agile way of working within the team.\n \n Providing code documentation and other inputs to technical documents.\n \n Supporting continuous improvement by investigating alternatives and new technologies and presenting these for architectural review.\n \n Troubleshooting and debugging to optimize performance.\n \n Participating in release and sprint planning sessions.\n \n', 'Unspecified', 'Unspecified'), ('Web Developer (Front-end)', 'https://www.careerjet.com.bd/job/e1fe98c951a8dbc617e24a1f5a0d0ad3.html', 'Negotiable', ' \n Bachelor of Science (BSc) in Computer Applications\n \n Educational background may be relaxed based on experiences and expertise.\n \n Skills Required: Angular Js, Bootstrap, HTML5 and CSS3, JavaScript, jQuery, React Application\n \n \n 2 to 4 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age 20 to 28 years\n \n Both males and females are allowed to apply\n \n Should be cooperative and self-motivated.\n \n Must be flexible and able to work under pressure.\n \n', ' \n Primary goals will be to design the next generation of web application and mobile web.\n \n Collaborate with cross-functional teams throughout the design process.\n \n Participate in the development process from definition, through design, build, test, release, and maintenance.\n \n Research and track advancements in web and mobile application design patterns.\n \n Must have very good knowledge and practical experience doing the jobs in an actual production environment using Adobe Photoshop, Illustrator, Adobe XD (Adobe Experience Design) and other relevant design tools.\n \n Proficiency in HTML5, CSS3, and JavaScript for rapid prototyping.\n \n Having an in depth knowledge of the jQuery Library.\n \n Have an understanding and experience with responsive design using Bootstrap 3 or later framework.\n \n Skill in developing web pages with cross-browser support, and with fluid, elastic or responsive designs.\n \n Understanding of UI/UX principles.\n \n', 'Unspecified', 'Unspecified'), ('Programmer (Full-Stack Python)', 'https://www.careerjet.com.bd/job/dc299c1ba61e7c44a377731dd78db19f.html', 'Tk. 25,000-35,000 per month', ' \n Bachelor of Science (BSc) in CSE\n \n \n At least 1 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Both males and females are allowed to apply\n \n Strong programming fundamentals\n \n Expert in Python with knowledge of Python web framework\n \n Proficiency with fundamental front end languages such as HTML, CSS, and JavaScript.\n \n Strong unit test and debugging skills\n \n Familiarity with database technology such as MySQL, MongoDB\n \n Expertise with JIRA is a PLUS\n \n Committed to following best practices\n \n Superior organizational skills, unflagging attention to detail &amp; demonstrated commitment to the accuracy and completeness of the information\n \n Able to learn quickly and take on new responsibilities as priorities change\n \n Highly motivated, self-directed &amp; possessing a driven personality capable of working within tight deadlines\n \n Should be willing to work according to shift plan of the organization considering we are open 24/7, with the exception of female candidates to align with our cultural notes\n \n', ' \n Creating data heavy charts, analyzing and visualize in online dashboard\n \n Performing extremely complicated survey questionnaire programming\n \n Harvest social media data\n \n Building data algorithm\n \n Writing reusable, testable, and efficient code\n \n Implement security and data protection solutions\n \n Actively collaborate and communicate with other key team members\n \n', 'Unspecified', 'Unspecified'); INSERT INTO `description` (`title`, `link`, `Salary`, `JobRequirements`, `JobResponsibilities`, `Vacancy`, `DeadLine`) VALUES ('Junior Software Engineer', 'https://www.careerjet.com.bd/job/3cfdf039da2a2dbb7f11e4c8e6937f3a.html', 'Negotiable', ' \n B?Sc degree in Computer Science or relevant field is an advantage but not required!\n \n \n At most 1 year(s)\n \n Freshers are also encouraged to apply.\n \n \n Age 24 to 40 years\n \n Both males and females are allowed to apply\n \n Fluent English communication is must.\n \n Having hand on experience in Java, Ruby on Rails, .Net or other programming languages\n \n Excellent knowledge of relational databases, SQL, OOP and ORM technologies\n \n Experience developing web applications using at least one popular web framework will be an added advantage.\n \n You are inspiring team member and proactive communicator\n \n You understand the requirements of our international clients\n \n You are humble and know how to encourage your team members.\n \n Good and friendly character / able to work in a team\n \n Go-minded spirit (\"yes, we can...\")\n \n You want to reach your targets.\n \n', ' \n Write clean, maintainable and efficient code\n \n Design robust, scalable and secure features\n \n Contribute in all phases of the development lifecycle\n \n Follow best practices (test-driven development, continuous integration, SCRUM, refactoring and code standards)\n \n Drive continuous adoption and integration of relevant new technologies into design\n \n', 'Unspecified', 'Unspecified'), ('Senior PHP Developer', 'https://www.careerjet.com.bd/job/1019d7ed5c763a15663b1b559de87d17.html', 'Negotiable', 'Check out the job source!', 'Senior PHP Developer Paysera is looking for a Senior PHP Developer to help us improve and extend our FinTech systems. Paysera is a safe, cheap and easy way to perform payments and send or receive money online. We are working each day to make difficult and complex processes simpler and expensive services cheaper. The strength of Paysera is its solid and ambitious team, seeking to grow and evolve together. Our goal is to create a world where electronic payments have no boundaries, are simple, fast, and accessible to everyone, everywhere, and anytime. We are looking for hard-working and responsible people who aim to constantly improve. Are you one of them? Join us! You will be responsible for: working in a multi-functional, self-organising team based on Agile principles (Scrum or Scrumban); proactively engaging in the planning, design, implementation and support of Paysera products; following and contributing to development best-practices, giving and receiving code reviews on a daily basis; constantly improving as a developer and a team member, sharing knowledge and helping other team members grow. We expect your inner motivation and: 5+ years of experience working in a team of developers on complex, sophisticated projects; good knowledge of PHP or other programming languages (we’re still looking for a PHP developer, but it’s ok if you’re willing to switch from Java, C# or any other language); knowledge in working with frameworks, solving complexity with OOP and SOLID principles; a mindset of always combining your code with unit or functional tests. Some of the technologies that we use daily: PHP 7, Symfony framework, PHPUnit; React, Webpack, Jest; Docker, Kubernetes, Ansible; experience with these can give bonus points, but it is not required - we provide the time, tools and resources needed for learning all the necessary technologies, methodologies and conventions. You can read more about the way we do things in our SALARY 2000 – 4000 EU (Gross) Job Context This is a very senior individual contributor permanent position, leading up to the country. team leader of the project, subject performance and potential of the select... Job Responsibilities The incumbent will report to Senior Manager, Information Technology. S/he will be primarily responsible to - Development of mobile/web front ends and cross ... KickBack is a mobile entertainment app studio established in 2010. Our apps have garnered over 100 million downloads and have millions of registered users. We are always looking fo...', 'Unspecified', 'Unspecified'), ('iOS Developer', 'https://www.careerjet.com.bd/job/5fce63e4b981cebf619156954a8dec5a.html', 'Tk. 25,000-40,000 per month', 'Check out the job source!', '<p class=\"new_p\"></p>', 'Unspecified', 'Unspecified'), ('Senior WordPress Developer', 'https://www.careerjet.com.bd/job/d0197abd82567c452f457a9fbb4925ee.html', 'Tk. 20,000-35,000 per month', 'Check out the job source!', '<p class=\"title_p\"></p>', 'Unspecified', 'Unspecified'), ('Web Developer', 'https://www.careerjet.com.bd/job/c75375d55caa49c5d5b82d4e83bc3a7e.html', 'Tk. 25,000-40,000 per month', 'Check out the job source!', '<p class=\"new_p\"></p>', 'Unspecified', 'Unspecified'), ('Android Developer', 'https://www.careerjet.com.bd/job/ae3eee5c34a679862e7f5c48deecdd55.html', 'Tk. 25,000-40,000 per month', 'Check out the job source!', '<p class=\"new_p\"></p>', 'Unspecified', 'Unspecified'), ('UI/ UX Engineer (Software Development)', 'https://www.careerjet.com.bd/job/e618f1256e0d98409d7562321a81f21c.html', 'Negotiable', ' \n Degree in Design, Fine Arts or related field is a plus\n \n Skills Required: Adobe XD, UI Design pattern, UIUX, UIUX Design, UX Design\n \n \n 1 to 5 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age 24 to 40 years\n \n Both males and females are allowed to apply\n \n Proven graphic designing experience\n \n A strong portfolio of illustrations or other graphics\n \n Up-to-date knowledge of design software and technologies (such as XD, InDesign, Illustrator, Dreamweaver, Photoshop)\n \n A keen eye for aesthetics and details\n \n Excellent communication skills\n \n Ability to work methodically and meet deadlines\n \n Proven work experience as a Graphic/UI Designer or similar role is an advantage\n \n Portfolio of design projects\n \n Team spirit; strong communication skills to collaborate with various stakeholders\n \n Good time-management skills\n \n', ' \n Collaborate with software engineers to improve the usability\n \n Get feedback from, and build solutions for users and customers\n \n Develop UI mockups and prototypes that clearly illustrate how sites function and look like\n \n Adhere to style standards on fonts, colors and images\n \n Ensure final graphics and layouts are visually appealing and on-brand\n \n Illustrate design ideas using storyboards, process flows and sitemaps\n \n Design graphic user interface elements, like menus, tabs and widgets\n \n Build page navigation buttons and search fields\n \n Ensure high quality graphic standards and brand consistency\n \n Design creative promotional and branding post for social media.\n \n Conceptualize visuals based on requirements\n \n Prepare rough drafts and present ideas\n \n Use the appropriate colors and layouts for each graphic\n \n Test graphics across various media\n \n Amend designs after feedback\n \n Create original graphic designs (e.g. images, sketches and tables)\n \n Prepare and present rough drafts to internal teams and key stakeholders\n \n', 'Unspecified', 'Unspecified'), ('Web Developer-Wordpress', 'https://www.careerjet.com.bd/job/248b8df43447e22b2fd6dd8d92e6001d.html', 'Tk. 20,000-35,000 per month', 'Check out the job source!', 'Job Description Position: Web Developer (Wordpress) Vacancy: 3 Educational Requirements: Bachelor degree in any discipline Experience Requirements: Minimum 1-year experience in related field (Fresher can apply but experienced candidate gets priority) Skills Requirement: WordPress Theme and Plugin development and customization. Setup of WordPress options, plugin installation and configuration Development within multiple server configurations. Employment Status: Full-time. Salary: BDT 20000 to BDT 35000 (Monthly) Salary will be negotiable for highly skillful developers. Thousand Careers Website: www.thousand.careers Email: <EMAIL> Mobile: 01778272439 (Saturday to Thursday 9AM-5PM) Address: House No-01(Lift-5), Road-12, Block-A, Uposhohor (Beside Settlement office), Sylhet. Learn more... Job Description Position: Senior WordPress Developer Company Name: Staff-Asia Location: Sylhet. Job responsibilities: - Designing and implementing new features and functio... Job Description Position: Wordpress Developer Company: Staff India Location: Sylhet Vacancy: 5 Job Context A leading outsourcing company serving UK/US/EU clients is looki... Job Description We are looking for 2 Senior Wordpress Developers (Male only) WordPress Developer duties and responsibilities: Able to Develop Themes and Plugins Designing and...', 'Unspecified', 'Unspecified'), ('Web Developer -PHP/LARAVEL', 'https://www.careerjet.com.bd/job/ca91c2073df2784bfc7b97010c658bb6.html', 'Tk. 20,000-35,000 per month', 'Check out the job source!', 'Job Description Position: Web Developer (PHP/LARAVEL) Vacancy: 3 Educational Requirements: Graduate in any discipline from any reputed university Experience Requirements: Minimum 1-year experience in related field (Fresher can apply but experienced candidate gets priority) Skills Requirements: PHP:- Thorough understanding of PHP and Most importantly PHP LARAVEL framework. Other frameworks/ Magento Development and HTML, CSS, jQuery, JavaScript. Employment Status: Full-time. Salary: BDT 20000 to BDT 35000 (Monthly) Salary will be negotiable for highly skillful developers. Thousand Careers Website: www.thousand.careers Email: <EMAIL> Mobile: 01778272439 (Saturday to Thursday 9AM-5PM) Address: House No-01(Lift-5), Road-12, Block-A, Uposhohor (Beside Settlement office), Sylhet. Learn more... Job Description Job Responsibilities: Taking responsibilities to develop and maintenance of small and large scale project Revision, modification, and integration of existing ... Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 03 Job Context A leading outsourcing company serving UK/US/EU clients is loo... Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 10 Job Context A leading outsourcing company serving UK/US/EU clients is loo...', 'Unspecified', 'Unspecified'), ('Software Support Engineer', 'https://www.careerjet.com.bd/job/5ae63f42c2b860c725fbd7e00d233720.html', 'Negotiable', ' \n Diploma in Computer Science or Bachelor of Science (BSc) in CSE.\n \n Applicants from other educational background can also apply if you have at least six months training on any computer application with good IT sense.\n \n \n Freshers can apply\n \n 1 to 2 years experience will be an advantage.\n \n \n Only males are allowed to apply\n \n Minimum written and spoken English is required\n \n Must be proactive, energetic and determined to meet the deadline\n \n Open to learning new technologies.\n \n', ' \n Frequently, visit our clients at anywhere in Bangladesh\n \n Network and Software Setup.\n \n Provide training to our clients to operate the software.\n \n Provide remote customer support.\n \n Excellent understanding of client requirements.\n \n Day to day report to the office on client satisfaction label.\n \n', 'Unspecified', 'Unspecified'), ('Junior .Net Developer', 'https://www.careerjet.com.bd/job/cbd8b808f48b09dec32206d2ddfdc129.html', 'Negotiable', ' \n Bachelor of Science (BSc) in CSE\n \n \n 1 to 2 year(s)\n \n The applicants should have experience in the following area(s): ASP.NET, ASP.NET MVC, Entity Framework\n \n \n Both males and females are allowed to apply\n \n Fluency in written and spoken English is required\n \n Must be proactive, energetic and determined to meet the deadline\n \n Open to learning new technologies.\n \n A mindset to code and do code review for continuous improvement.\n \n Strong ability to use an innovative problem-solving technique to solve the complex business problems\n \n Having well experienced to provide client support will be added advantage\n \n Be Self-driven and able to work independently as well as in a team\n \n', ' \n At least 1 years professional work experience in design, development and deployment of applications using C# and ASP.NET Core.\n \n Excellent knowledge of C#, ASP.NET (MVC), ASP.NET Core, Entity Framework 6, Entity Framework Core.\n \n Good knowledge and understanding of ASP.NET Web API, OData, Entity Framework code\n \n First, Asynchronous Programming in C#, TPL, LINQ, Lambdas.\n \n Very good knowledge of OOP and OOD, design patterns, n-tier applications.\n \n Experienced with UI frameworks in general; Angular and Angular material.\n \n Need to optimize and customize existing code as per business requirement.\n \n Write complex and faster SQL queries, Store Procedure, Function and develop database.\n \n Perform complex data analysis.\n \n Maintain documentation in accordance with QMS standard set by the Company.\n \n', 'Unspecified', 'Unspecified'), ('Information System Engineer', 'https://www.careerjet.com.bd/job/30b2998fb88ebe3b4db1598bfe6e355c.html', 'Negotiable', 'Check out the job source!', ' \n Basic Computer &amp; Hardware and Information system trouble shooting.\n \n Operating System setup\n \n Prepare LAN cables\n \n Configure WiFi router\n \n Trouble shoot basic Office software issues\n \n Daily maintenance (Telephone, internet, printer, surveillance, attendance etc.)\n \n Any Other task assigned by supervisor.\n \n', 'Unspecified', 'Unspecified'), ('IT Support Specialist', 'https://www.careerjet.com.bd/job/10f80a34c3a6d1a98e570e8f1ea9cb76.html', 'Negotiable', ' \n B. Sc or Diploma in Computer Science or related fields.\n \n \n 1 to 2 year(s)\n \n Freshers are also encouraged to apply.\n \n \n 1-2 years experience in relevant sectors\n \n General understanding of servers, networks, and ability to assist in troubleshooting\n \n Experience with Windows 7, Microsoft Office 2010 Suite\n \n Understanding configuration of Windows Services\n \n Experience of working in an oil and gas industry is preferred\n \n Excellent written, verbal communication and collaboration skills\n \n Ability to work effectively in a team\n \n Highly motivated, able to work in stressful situations\n \n', ' \n Follow IT department guidelines and procedures related to computer setup, software installation and general;\n \n Install and remove software, hardware or equipment for employee use, performing or ensuring proper installation of cable, operating systems and appropriate software;\n \n Maintain record of daily data communication transactions, problems and remedial action taken, and installation activities, thoroughly document issues and resolution;\n \n Read technical manuals, confer with users, and conduct computer diagnostics to investigate and resolve problems and to provide technical assistance and support;\n \n Refer major hardware or software problems or defective products to vendors or technicians for service;\n \n Install and perform minor repairs to hardware, software, and peripheral equipment, following design or installation specifications\n \n', 'Unspecified', 'Unspecified'), ('Senior Front-End Developer', 'https://www.careerjet.com.bd/job/24f17f11af82b7ccadbb3aaac4a679cc.html', 'Negotiable', 'Check out the job source!', 'Senior Front-End Developer Paysera is looking for a Senior Front-End Developer to help us improve and extend our FinTech systems. Paysera is a safe, cheap and easy way to perform payments and send or receive money online. We are working each day to make difficult and complex processes simpler and expensive services cheaper. The strength of Paysera is its solid and ambitious team, seeking to grow and evolve together. Our goal is to create a world where electronic payments have no boundaries, are simple, fast, and accessible to everyone, everywhere, and anytime. We are looking for hard-working and responsible people who aim to constantly improve. Are you one of them? Join us! You will be responsible for: programming of functional components using React library; creating pages by applying programmed components; reviewing codes created by other team members; improving functionality and code aiming at better quality for both users and programmers. We expect your inner motivation and: knowledge of JavaScript (ES6+) (at least 4 years of experience); not being afraid of REST API; knowledge of React library, but not too attached to it; ability to tell the difference between ES5 and ES6; knowledge of Unit test; knowledge of good frontend practices and tools; ability to turn wireframe/mockup into code using not only JS, but also your HTML5 knowledge; knowledge of good UX practices; experience with large-scope projects; willingness to improve your skills individually. SALARY 2000 – 4000 EU (Gross) KickBack is a mobile entertainment app studio established in 2010. Our apps have garnered over 100 million downloads and have millions of registered users. We are always looking fo... Job Responsibilities Primary goals will be to design the next generation of web application and mobile web. Collaborate with cross-functional teams throughout the design process... KickBack is a mobile entertainment app studio established in 2010. Our apps have garnered over 100 million downloads and have millions of registered users. We are always looking fo...', 'Unspecified', 'Unspecified'), ('Sr. Software Engineer (ASP.NET) - Work From Home', 'https://www.careerjet.com.bd/job/89110287c40a2a8a0438af5092d2aaf3.html', 'Negotiable', ' \n Bachelor of Science (BSc) in CSE\n \n \n At least 4 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age 23 to 34 years\n \n Both males and females are allowed to apply\n \n Must have Good knowledge ASP.Net,VB, C#,MVC, Entity Framework, AngularJs, JQuery, Ajax, HTML, CSS etc.\n \n Must have Good knowledge of MS SQL Server 2016 or higher\n \n Must be familiar with Microsoft Visual Studio 2015 or higher\n \n Must have good knowledge of object oriented software development\n \n Knowledge in Product Software development will be plus\n \n Must have experience in developing web-based solution in asp.net mvc\n \n Candidates should provide their recent projects list with their application.\n \n Should be able to work in a team\n \n Able to work under pressure.\n \n Able to meet deadline strictly.\n \n Having working knowledge of Umbraco will be preferred\n \n', ' \n Develop Website and web based Application using ASP.NET (VB), ASP.NET MVC (C#)\n \n Excellent capability to translate complex client requirement to technical implementation.\n \n', 'Unspecified', 'Unspecified'), ('Computer Network Architect', 'https://www.careerjet.com.bd/job/9c4617a2084b2aebab52a8b8986bccfd.html', 'Negotiable', ' \n B. Sc. in Computer Science, Information Systems, Engineering, or a related field.\n \n MBA in Information Systems would be preferable.\n \n \n 2 to 3 year(s)\n \n Freshers are also encouraged to apply.\n \n \n Applicants need to have experience in related occupation such as information technology (IT) systems, network administrator, database administrator, computer systems analyst, etc.\n \n Must have strong commutation skill in English, both written &amp; spoken\n \n Aptitude for learning new technology\n \n Sound interpersonal and team working skills.\n \n Ability to work on multiple assignments simultaneously.\n \n Must keep track of company network needs\n \n Should be able to quickly solve the network issues\n \n Focus on new network systems\n \n', ' \n Develop and maintain project reporting systems.\n \n Use computer-aided design (CAD) software packages to optimize network designs.\n \n Coordinate installation of new equipment, network operations, maintenance, repairs, or upgrades.\n \n Coordinate network or design activities with designers of associated networks.\n \n Design, build, or operate equipment configuration prototypes, including network hardware, software, servers, and server operation systems.\n \n Develop and implement solutions for network problems.\n \n Develop conceptual, logical, or physical network designs and network-related documentation.\n \n Develop or recommend network security measures, such as firewalls, network security audits, or automated security probes.\n \n Develop procedures to track project, report network availability, reliability, capacity, and utilization.\n \n Prepare detailed network specifications, including diagrams, charts, equipment configurations, and recommended technologies.\n \n', 'Unspecified', 'Unspecified'), ('Full Stack Web Developer', 'https://www.careerjet.com.bd/job/be8fa4b1f4aff419d52d36805b2e0b18.html', 'Tk. 18,000-35,000 per month', 'Check out the job source!', 'Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 03 Job Context A leading outsourcing company serving UK/US/EU clients is looking to hire a few energetic and experienced web developers to work remotely from our Sylhet Office. ***This job is based in our Sylhet Office. ONLY APPLY IF YOU CAN WORK IN SYLHET. The applicants should have experience any of the following PHP and Word Press Development We work 8 hours a day, 5 days a week. Educational Requirements Bachelor degree in any discipline Experience Requirements At least 1 year(s) The applicants should have experience in the following area(s): Web Development (PHP- Laravel) Or Web Development (Wordpress theme development and customization. Web Design. Job Requirements PHP: Thorough understanding of PHP and PHP framework- Laravel. WORDPRESS: WordPress Theme and Plugin development and customization. Setup of WordPress options, plugin installation, and configuration Development within multiple server configurations. HTML, CSS, jQuery, JavaScript, bootstrap. Must be able to communicate well in ENGLISH. Ability to work individually or as part of a collaborative team. Completing all tasks on time Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 10 Job Context A leading outsourcing company serving UK/US/EU clients is loo... Job Description Job Responsibilities: Taking responsibilities to develop and maintenance of small and large scale project Revision, modification, and integration of existing ... Job Description Position: Web Developer (Wordpress) Vacancy: 3 Educational Requirements: Bachelor degree in any discipline Experience Requirements: Minimum 1-year expe...', 'Unspecified', 'Unspecified'), ('WordPress Developer', 'https://www.careerjet.com.bd/job/241fdcb79d5c5a859d9bf1730137e7b5.html', 'Tk. 20,000-35,000 per month', 'Check out the job source!', 'Job Description Position: Wordpress Developer Company: Staff India Location: Sylhet Vacancy: 5 Job Context A leading outsourcing company serving UK/US/EU clients is looking to hire a few energetic and experienced web developers to work remotely from our Sylhet Office. ***This job is based in our Sylhet Office. ONLY APPLY IF YOU CAN WORK IN SYLHET. The applicants should have experience in Word Press Development. We work 8 hours a day, 5 days a week. Educational Requirements Bachelor degree in any discipline Experience Requirements At least 1 year(s) The applicants should have experience in the following area(s): Web Development (Wordpress theme development and customization. Web Design. Job Requirements WORDPRESS: WordPress Theme and Plugin development and customization. Setup of WordPress options, plugin installation, and configuration Development within multiple server configurations. HTML, CSS, jQuery, JavaScript, bootstrap. Must be able to communicate well in ENGLISH. Ability to work individually or as part of a collaborative team. Completing all tasks on time Job Description Position: Senior WordPress Developer Company Name: Staff-Asia Location: Sylhet. Job responsibilities: - Designing and implementing new features and functio... Job Description Position: Web Developer (Wordpress) Vacancy: 3 Educational Requirements: Bachelor degree in any discipline Experience Requirements: Minimum 1-year expe... Job Description We are looking for 2 Senior Wordpress Developers (Male only) WordPress Developer duties and responsibilities: Able to Develop Themes and Plugins Designing and...', 'Unspecified', 'Unspecified'), ('Web Designer', 'https://www.careerjet.com.bd/job/9ec5eefa964f3ea2ef20ee1d5475a790.html', 'Tk. 15,000 per month', 'Check out the job source!', 'Job Description Job Title: Web Designer Vacancies: 3 Salary: 15000 Company: TIMES Location: Sylhet Educational Requirements Graduate from CSE/ EEE/ BSC Engineering/ Computer Diploma are preferable. But applicants from any other discipline with excellent designing skill are also encouraged to apply. Required Skills Should have good skill on Web Designing. Must have excellent written and verbal communications skills in English. knowledge of HTML,CSS, Bootstrap Knowledge of Javascrit, Photoshop and Illustrator Deadline: 30th July 2018 Job Description Company: Staff India Location: Sylhet Job Responsibilities We are looking forward to hiring Graphics Designers who are capable and dedicated to being part of... Job Description Vacancy: 3 Job Context: We are looking for a Graphics Designer who will be responsible for driving the creative direction of campaigns by producing attractiv... Job Description Job Title: IT Instructor Company: Academy of International Management Studies (AIMS) Vacancy 01 Job Context Graphics Designer, SEO & Freelancing Instruc...', 'Unspecified', 'Unspecified'), ('Hiring SEO Expert', 'https://www.careerjet.com.bd/job/da88857c969ed0ee5770e9fc8e26ee03.html', 'Tk. 12,000-18,000 per month', 'Check out the job source!', ' \n MUST HAVE EXCELLENT WRITTEN AND VERBAL COMMUNICATIONS SKILLS IN ENGLISH.\n \n Previous experience in SEO work will get preference.\n \n Must be flexible about any shift timings\n \n We work 8 hours a day, 5 days a week.\n \n', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/5e91ebdf16624285a569110512ce9282.html', 'Negotiable', 'Check out the job source!', 'Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must skill in computer. -Graphics Design, MS word, MS excel, Bangla & English Typing. -Experienced Candidate must preferable. Deadline: 30th April 2018 Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Sh... Job Description Vacancy 01 Job Context N/A Job Description / Responsibility N/A Job Nature Full-time Educational Requirements Graduate Experience Requirement...', 'Unspecified', 'Unspecified'), ('ICT Teacher', 'https://www.careerjet.com.bd/job/63dfbcdf9a20ee1ceff9bb97f176bc72.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring ICT Teacher Institution: SAARC International College Bangladesh Location: Sylhet Educational Requirements: Bachelor/Master in CSE from any reputed university. Job Description / Responsibility To conduct classes; preparing notes and lecture sheets. Take of class tests. Check exam papers; monitor student discipline. Perform any other work assigned by the management. Additional Skills: Hard working. Team player. Experience: 1 Year Salary: Negotiable Deadline: 25th February 2018 Job Description Hiring ICT Teacher- Male Institution: Shahjalal Model Madrasha Location: Sylhet Educational Requirements Bachelor of Science/CSE from any reputed universi... Job Description Hiring ICT Teacher Institution: Sylhet Cambrian School and College Location: Sylhet Educational Requirements Bachelor of CSE/Diploma in Computer Engineeri... Job Description Job Description Institute Name: Classic International School and Collage, Sylhet. Post name: Assistant teacher (Math, Physics, Chemistry, ICT) Location: s...', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/64a50d80639c4441082f495d43937164.html', 'Negotiable', 'Check out the job source!', 'Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requirements: Only males are allowed to apply Expert in computer operating Educational Requirement: Minimum HSC. Salary: 5000-12000. Working Hour: 09:00 AM To 09:00 PM (6 Days/Week). Application Deadline: 05/01/2019 Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must s... Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Sh... Job Description Vacancy 01 Job Context N/A Job Description / Responsibility N/A Job Nature Full-time Educational Requirements Graduate Experience Requirement...', 'Unspecified', 'Unspecified'), ('ICT Teacher- Male', 'https://www.careerjet.com.bd/job/5cc9330e460237de59a9dd3a0806fd2b.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring ICT Teacher- Male Institution: Shahjalal Model Madrasha Location: Sylhet Educational Requirements Bachelor of Science/CSE from any reputed university Only Science background candidates are requested to apply Job Description / Responsibility Prepare lesson plan as per curriculum. Maintain enjoyable classroom environment. Prepare, co-operate and evaluate class test, quiz and term Exams. Monitor the progress of the student to counsel them and assist them to improve. Ensure active participation of students in the class. Experience: N/A Working Hour: 8:00 AM To 02:00 PM (6 Days) Salary: Negotiable Job Description Hiring ICT Teacher Institution: SAARC International College Bangladesh Location: Sylhet Educational Requirements: Bachelor/Master in CSE from any reputed univ... Job Description Hiring ICT Teacher Institution: Sylhet Cambrian School and College Location: Sylhet Educational Requirements Bachelor of CSE/Diploma in Computer Engineeri... Job Description Post Name: Marketing Officer (Male/Female) Qualification: Minimum HSC/ Running student also can apply. Salary: Negotiable Job Location: Sylhet City Job re...', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/fe04058b0c9eab569b4fb51807f32846.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Should have good Typing speed (English and Bangla) Microsoft Word, Microsoft Excel, Microsoft PowerPoint etc. Working Hour: 8:00 am To 2:00 pm (6 Days). Salary: 4500 To 7000 BDT Apply Through Thousand Careers Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must s... Job Description Vacancy 01 Job Context N/A Job Description / Responsibility N/A Job Nature Full-time Educational Requirements Graduate Experience Requirement...', 'Unspecified', 'Unspecified'), ('Full Stack PHP Laravel Developer', 'https://www.careerjet.com.bd/job/11cfb2640402a650ebef5cf46c76c962.html', 'Negotiable', ' \n Bachelor degree in any discipline\n \n \n Solve Problems with codes.\n \n Rock-solid skill on PHP Laravel Framework.\n \n Knowledge of Core PHP.\n \n A clear understanding of Bootstrap.\n \n Strong Knowledge about MySQL.\n \n An understanding of HTTP, Apache, DNS, FTP, SSH is a PLUS\n \n Good English skills- both in writing as well as speaking\n \n Take over responsibility for a project and run by yourself.\n \n Ability to work with us for at least 12 months (rather longer).\n \n Analytical skills, quick perception, and the ability for abstract thinking.\n \n Strong interest in technology\n \n<p class=\"new_p\"></p>', 'Job Description Title: Full Stack PHP Laravel Developer Company: Staff India Location: Sylhet Vacancy: 4 Job Context Apply only if you have rock-solid skills on PHP Laravel Framework. A clear understanding of Raw PHP & Bootstrap. ***This job is based in our Sylhet Office. ONLY APPLY IF YOU CAN WORK IN SYLHET. We work 8 hours a day, 5 days a week. Educational Requirements Bachelor degree in any discipline Experience Requirements Solve Problems with codes. Rock-solid skill on PHP Laravel Framework. Knowledge of Core PHP. A clear understanding of Bootstrap. Strong Knowledge about MySQL. An understanding of HTTP, Apache, DNS, FTP, SSH is a PLUS Good English skills- both in writing as well as speaking Take over responsibility for a project and run by yourself. Ability to work with us for at least 12 months (rather longer). Analytical skills, quick perception, and the ability for abstract thinking. Strong interest in technology Employment Status Full time Additional Requirements Additional Requirements Age 22 to 30 years * Both males and females are allowed to apply Fresher with Skill can Apply. Good communication skills and excellent problem-solving skills. Have an understanding of software development methodologies. Ability to meet deadlines and achieve specified results. Have to maintain Office hours Salary TK.18000 - 35000 (Monthly)( Based on skillset) Salary will be negotiable for highly skillful developers. Job Description Position: Web Developer (PHP/LARAVEL) Vacancy: 3 Educational Requirements: Graduate in any discipline from any reputed university Experience Requirements... Job Description Job Responsibilities: Taking responsibilities to develop and maintenance of small and large scale project Revision, modification, and integration of existing ... Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 03 Job Context A leading outsourcing company serving UK/US/EU clients is loo...', 'Unspecified', 'Unspecified'), ('Microsoft Excel Expert', 'https://www.careerjet.com.bd/job/97d56b72c27cede1f80b817f33c4cad0.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring Microsoft Excel Expert Company: Silk Road Supply Location: Sylhet Educational Requirements HSC/ Graduate from any reputed university. Job Requirements: Work with Microsoft Excel and PowerPoint to create data sheets Analyze data and placing it on various sheets. understanding and knowledge of Microsoft Excel and should have good typing speed Detail orientation is a must. Salary: Negotiable Deadline: 5th November 2017 Job Description Hiring SEO Expert Vacancy 4 Job Context Hiring SEO Expert. A leading outsourcing company serving UK/US/EU clients is looking to hire a few energetic and e... Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Position: Research/Data Analyst Company Name: Staff-Asia Location: Sylhet. Job Context: Staff Asia, a growing e-learning firm is seeking a Research Analys...', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/23ee53aaff5970335efdac9b75a45f66.html', 'Negotiable', 'Check out the job source!', 'Job Description Vacancy 01 Job Context N/A Job Description / Responsibility N/A Job Nature Full-time Educational Requirements Graduate Experience Requirements At least 2 year(s) The applicants should have experience in the following area(s): Computer operator Job Requirements Only males are allowed to apply. Must have experience as Computer Operator. Job Location Sylhet (Sylhet Sadar) Salary Range Negotiable As per company policy. Other Benefits As per company policy. Applicant must have to meet the required requirement. Application Deadline : Apr 9, 2018 Apply through Thousand Careers. Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must s... Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Sh...', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/2c0969e73ef8ee804bce77b902da4b93.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring Computer Operator Institution: Students Home School Location: Sylhet Educational Requirements HSC/Graduate from any reputed university. Additional Requirements: Should have good Typing speed Have strong interpersonal and communication skill Should have Strong Oral and written communication skills. Should be pro-active, self-motivated and self-driven. High level of professional integrity well groomed & energetic. Salary: Negotiable Deadline: 5th November 2017 Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must s... Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Sh...', 'Unspecified', 'Unspecified'), ('Teacher- ICT', 'https://www.careerjet.com.bd/job/fa52658f99138034581c0868f6b70d70.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring ICT Teacher Institution: Sylhet Cambrian School and College Location: Sylhet Educational Requirements Bachelor of CSE/Diploma in Computer Engineering. Job Description / Responsibility Create instructional resources for use in the classroom. Plan, prepare and deliver instructional activities Create a positive educational climate for students learning. Meet course and school-wide student performance goals. Prepare and distribute required reports. Observe and evaluate student’s performance. Manage student behavior in the classroom by invoking approved disciplinary procedures. Working Hour: 09:00 AM To 1:30 PM Salary: Negotiable Deadline: 10th December 2017 Job Description Hiring ICT Teacher Institution: SAARC International College Bangladesh Location: Sylhet Educational Requirements: Bachelor/Master in CSE from any reputed univ... Job Description Hiring ICT Teacher- Male Institution: Shahjalal Model Madrasha Location: Sylhet Educational Requirements Bachelor of Science/CSE from any reputed universi... Job Description Job Description Institute Name: Classic International School and Collage, Sylhet. Post name: Assistant teacher (Math, Physics, Chemistry, ICT) Location: s...', 'Unspecified', 'Unspecified'), ('Full Stack Web Developer', 'https://www.careerjet.com.bd/job/753449e5433c91fcd7eae4f6966f53dc.html', 'Negotiable', ' \n Bachelor degree in any discipline\n \n \n At least 1 year(s)\n \n The applicants should have experience in the following area(s):\n \n \n Age at least 22 years\n \n', 'Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 10 Job Context A leading outsourcing company serving UK/US/EU clients is looking to hire a few energetic and experienced web developers to work remotely from our Sylhet Office. ***This job is based in our Sylhet Office. ONLY APPLY IF YOU CAN WORK IN SYLHET. The applicants should have experience any of the following PHP and Word Press Development We work 8 hours a day, 5 days a week. Educational Requirements Bachelor degree in any discipline Experience Requirements At least 1 year(s) The applicants should have experience in the following area(s): Web Development (PHP- Laravel) Or Web Development (Wordpress theme development and customization. Web Design. Job Requirements PHP: Thorough understanding of PHP and PHP framework- Laravel. WORDPRESS: WordPress Theme and Plugin development and customization. Setup of WordPress options, plugin installation and configuration Development within multiple server configurations. HTML, CSS, jQuery, JavaScript, bootstrap. Must be able to communicate well in ENGLISH. Ability to work individually or as part of a collaborative team. Completing all tasks on time Employment Status Full time- Contractual. Additional Requirements Age at least 22 years Salary TK.20000 - 30000 (Monthly) Salary will be negotiable for highly skillful developers. Job Description Title: Full Stack Web Developer Company: Staff India Location: Sylhet Vacancy: 03 Job Context A leading outsourcing company serving UK/US/EU clients is loo... Job Description Job Responsibilities: Taking responsibilities to develop and maintenance of small and large scale project Revision, modification, and integration of existing ... Job Description Position: Web Developer (Wordpress) Vacancy: 3 Educational Requirements: Bachelor degree in any discipline Experience Requirements: Minimum 1-year expe...', 'Unspecified', 'Unspecified'), ('Wordpress Developer', 'https://www.careerjet.com.bd/job/0b1657835b1d37e35fea9922ca0a21b9.html', 'Negotiable', 'Check out the job source!', 'Job Description We are looking for 2 Senior Wordpress Developers (Male only) WordPress Developer duties and responsibilities: Able to Develop Themes and Plugins Designing and implementing new features and functionality Able to convert HTML/PSD into Wordpress Establishing and guiding the website’s architecture Ensuring high-performance and availability, and managing all technical aspects of the CMS Helping formulate an effective, responsive design and turning it into a working theme and plugin. WordPress Developer requirements: Good understanding of front-end technologies, including HTML5, CSS3, JavaScript, jQuery, Angular.js etc. Good knowledge in PHP framework (Codeigniter, Laravel etc) would be an advantage. Experience building user interfaces for websites and/or web applications Experience designing and developing responsive design websites Comfortable working with debugging tools like Firebug, Chrome inspector, etc. Ability to understand CSS changes and their ramifications to ensure consistent style across platforms and browsers Ability to convert comprehensive layout and wireframes into working HTML pages Knowledge of how to interact with RESTful APIs and formats (JSON, XML) Proficient understanding of code versioning tools {{such as Git, SVN, and Mercurial}} Strong understanding of PHP back-end development Excellent communication skills in English and Bengali required Experience: Minimum 1 year of experience Salary: Negotiable Working hour: 2pm to 10pm (Mon-Fri) [Following UK Time] Benefits: Salary Increment depending on skill. Government Holidays Daily Evening Snacks 2 Festival Bonus* Job Description Position: Senior WordPress Developer Company Name: Staff-Asia Location: Sylhet. Job responsibilities: - Designing and implementing new features and functio... Job Description Position: Web Developer (Wordpress) Vacancy: 3 Educational Requirements: Bachelor degree in any discipline Experience Requirements: Minimum 1-year expe... Job Description Position: Wordpress Developer Company: Staff India Location: Sylhet Vacancy: 5 Job Context A leading outsourcing company serving UK/US/EU clients is looki...', 'Unspecified', 'Unspecified'), ('Computer Operator', 'https://www.careerjet.com.bd/job/4da66b1a71bf8b9a34df6004573ee8cc.html', 'Negotiable', 'Check out the job source!', 'Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirements HSC/Running student in any reputed university. Additional Requirements: Should have good Typing speed (Bangla and English) Have strong interpersonal and communication skill Should have Strong Oral and written communication skills. Should be pro-active, self-motivated and self-driven. High level of professional integrity well groomed & energetic. Salary: Negotiable Deadline: 17th September, 2018 Job Description Vacancy: 03 Skills Required: Microsoft Word, Microsoft Excel, Microsoft Power Point Graphics Design: Photo Shop Typing: English & Bengla Additional Requi... Job Description Job Title: Computer Operator. Salary: Negotiable Location: Sylhet Vacancies: 2 Educational Requirements: Minimum HSC. Duty / Responsibility -He must s... Job Description Hiring Computer Operator Institution: Sylhet International School and College Location: Sylhet Educational Requirement: Minimum HSC Required Skills: Sh...', 'Unspecified', 'Unspecified'), ('Looking Web Developer (Remote Job)', 'https://www.careerjet.com.bd/job/64e349ba1d1d6fadb1b9ba6ffed7b66f.html', 'Tk. 15,000-20,000 per month', 'Check out the job source!', '?Expert in customizing any WordPress themes/plugins to meet the requirement. ?Strong knowledge of the Woocommerce plugin. ?Deep knowledge in using Git. ?Able to Design and convert a responsive website using different technologies like HTML5 / CSS / Bootstrap / jQuery etc. ?Prepare documentation and test after develop, design, or build. ?Good Knowledge of SEO/WordPress SEO tools. ?Learning mentality to improve skills from the web. ?Knowledge of CSS popular libraries. ?Knowledge of JavaScript popular libraries. ?Ability to work independently and as part of a team. ?Fast working speed. ?Ability to work under tight deadlines and achieve specified results. ?English writing And Speaking. ?Ability to communicate effectively & professionally. ?PHP Laravel Codeigniter based application development considered. ?Design and develop a WordPress theme considered. ?Design and develop a WordPress plugin considered. ?Understanding of MVC Pattern considered. ?Understanding of Note JS, Angular JS considered. ?Laravel/ Codeigniter developers are welcome to apply. ?Good understanding of implementing Restful APIs and also building integrations with 3rd party SOAP/REST API providers. Job Responsibilities The incumbent will report to Senior Manager, Information Technology. S/he will be primarily responsible to - Development of mobile/web front ends and cross ... Job Responsibilities The incumbent will report to Senior Manager, Information Technology. S/he will be primarily responsible to -: Development of mobile/web front ends and cross... Job Context We are looking for passionate Full-stack Web Developer to join our R&D center in Bangladesh. The ideal candidate will be an enthusiastic developer eager to learn and g...', 'Unspecified', 'Unspecified'), ('Android Mobile Application Developer intern', 'https://www.careerjet.com.bd/job/e143c77d9f156f388ae02e20f03fa3a7.html', 'Tk. 25,000-35,000 per month', 'Check out the job source!', '<p class=\"new_p\"></p>', 'Unspecified', 'Unspecified'), ('Sales Person For IT & Telecom', 'https://www.careerjet.com.bd/job/a30a62242c348dbb7f6a5ec0b2e15182.html', 'Tk. 15,000-18,000 per month', 'Check out the job source!', 'Sound Knowledge on the Latest Seo Developments and Search Engine Industry Trends to Ensure Seo Strategy is Up- to-date. Job Context Data Analytics working based in the USA; catering to the top 10 marketing research and analytics companies in the world. We are looking for someone responsible for man... Job Context A Renowned Shipping & Logistics Company is looking for a Sales Manager to lead and coach a winning, effective and sustainable sales organization which will deliver and... Job Context Siegwerk Bangladesh Limited is a German MNC manufacturing Printing Inks for Packaging. The Company is hiring for Account Management Sales/AMS role for their new Projec...', 'Unspecified', 'Unspecified'), ('COMPUTER TEACHER', 'https://www.careerjet.com.bd/job/6bb5f25dd78c7208206451d5df6ce769.html', 'Negotiable', 'Check out the job source!', 'About the role (????????? ???? ? ??????? ???????? ???? ?????? ????? ???? ???) About the role We are looking for urgently 10 computer operator for entry data. Job Location:Jatrabari Requirement: Minimum H,s,c to BACHELOR. Age 18-27yrs old MALE ONLY Co... FHI 360 is preparing a proposal in response to the upcoming USAID Bangladesh Shobai Miley Pori (“Everyone Reads Together”) opportunity, and seeks qualified candidates for senior te... Job Context A Specialized Engineering Services Company in the Oil & Gas sector is looking for an energetic, smart, sincere, honest and stable career conscious person for the posit...', 'Unspecified', 'Unspecified'); INSERT INTO `description` (`title`, `link`, `Salary`, `JobRequirements`, `JobResponsibilities`, `Vacancy`, `DeadLine`) VALUES ('Male or Female Marketing Executive for Software firm', 'https://www.careerjet.com.bd/job/e922bde39294053d53096f3164357646.html', 'Negotiable', 'Check out the job source!', 'We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experience : Minimum 2 Years Experience with Software Develop Company. Job Description / Responsibility To develop IT related targeted sales and services in the assigned location To achieve sales target. To generate demand through professional marketing with proper and effective communication. To develop & maintain good relationship with customers, institutions and organizations. To formulate business plan of an area to achieve monthly, quarterly & yearly sales target. To visit Market, Corporate House, Organizations & Institutions in view to build professional relationship and secure order from them Analyze competitor activity and counteract locally Job Nature Part-time / Full-time Educational Requirements H.S.C to Graduate Additional Job Requirements Age 20 to 35 year(s) Good communication & negotiation skill Marketing and Sales knowledge of Software and IT services. Must have excellent communication skills in English. Self-motivated, results orientated Willing to work anywhere in Bangladesh, if company desires. Job Location Dhaka Salary Range Negotiable Other Benefits As per company policy. Apply within November 2018 Send your c.v. to this following address: Different IT Solutions <EMAIL> www.differentitsolutions.com Cell: 01712807553 We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experi... ???? Job Context ?Customer relation developments, creative sales business developments ?Tale marketing ?Public relations ?event executive ???? Job Responsibilities: ??C... About the role JOB RESPONSIBILITIES: -- The applicants must have wish to work in the following areas: Customer Supports, Facebook and others social media Live Presenter on heal...', 'Unspecified', 'Unspecified'), ('Marketing Executive for Software and IT firm', 'https://www.careerjet.com.bd/job/90d672fd87f0d6afe4317cbcbe6c5a72.html', 'Negotiable', 'Check out the job source!', 'We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experience : Minimum 2 Years Experience with Software Develop Company. Job Description / Responsibility To develop IT related targeted sales and services in the assigned location To achieve sales target. To generate demand through professional marketing with proper and effective communication. To develop & maintain good relationship with customers, institutions and organizations. To formulate business plan of an area to achieve monthly, quarterly & yearly sales target. To visit Market, Corporate House, Organizations & Institutions in view to build professional relationship and secure order from them Analyze competitor activity and counteract locally Job Nature Part-time / Full-time Educational Requirements H.S.C to Graduate Additional Job Requirements Age 20 to 35 year(s) Good communication & negotiation skill Marketing and Sales knowledge of Software and IT services. Must have excellent communication skills in English. Self-motivated, results orientated Willing to work anywhere in Bangladesh, if company desires. Job Location Dhaka Salary Range Negotiable Other Benefits As per company policy. Apply within November 2018 Send your c.v. to this following address: Different IT Solutions <EMAIL> www.differentitsolutions.com Cell: 01712807553 Job Context Data Analytics working based in the USA; catering to the top 10 marketing research and analytics companies in the world. We are looking for someone responsible for man... We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experi... Job Responsibilities Create digital marketing strategies & apply to increase game/app downloads Write blog posts and other related contents for game/app Prepare app store conte...', 'Unspecified', 'Unspecified'), ('Male or Female Marketing Executive for Software Company', 'https://www.careerjet.com.bd/job/63c98a30c63111f6e8ac8c503007de94.html', 'Negotiable', 'Check out the job source!', 'We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experience : Minimum 2 Years Experience with Software Develop Company. Job Description / Responsibility To develop IT related targeted sales and services in the assigned location To achieve sales target. To generate demand through professional marketing with proper and effective communication. To develop & maintain good relationship with customers, institutions and organizations. To formulate business plan of an area to achieve monthly, quarterly & yearly sales target. To visit Market, Corporate House, Organizations & Institutions in view to build professional relationship and secure order from them Analyze competitor activity and counteract locally Job Nature Part-time / Full-time Educational Requirements H.S.C to Graduate Additional Job Requirements Age 20 to 35 year(s) Good communication & negotiation skill Marketing and Sales knowledge of Software and IT services. Must have excellent communication skills in English. Self-motivated, results orientated Willing to work anywhere in Bangladesh, if company desires. Job Location Dhaka Salary Range Negotiable Other Benefits As per company policy. Apply within November 2018 Send your c.v. to this following address: Different IT Solutions <EMAIL> www.differentitsolutions.com Cell: 01712807553 We are looking for smart energetic, self confident and hard working Male or Female Marketing Executive for Website, Software and IT Training Company. No. of Vacancies 3 Experi... ???? Job Context ?Customer relation developments, creative sales business developments ?Tale marketing ?Public relations ?event executive ???? Job Responsibilities: ??C... About the role JOB RESPONSIBILITIES: -- The applicants must have wish to work in the following areas: Customer Supports, Facebook and others social media Live Presenter on heal...', 'Unspecified', 'Unspecified'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE IF NOT EXISTS `user` ( `Approval` varchar(5) NOT NULL, `Type` varchar(6) NOT NULL, `Name` varchar(100) NOT NULL, `Password` varchar(100) NOT NULL, `Email` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`Approval`, `Type`, `Name`, `Password`, `Email`) VALUES ('1', 'admin', 'admin', 'admin', '<EMAIL>'), ('0', 'normal', 'asif', 'asif', '<EMAIL>'), ('1', 'normal', 'iftekhar', 'iftekhar', '<EMAIL>'); -- -- Indexes for dumped tables -- -- -- Indexes for table `description` -- ALTER TABLE `description` ADD FULLTEXT KEY `title` (`title`,`JobRequirements`,`JobResponsibilities`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>helton-hcs/advanced-sql-oracle -------------------------------------------------------------------------------- --Setup -------------------------------------------------------------------------------- define n_start = 1; define n_end = 50; -------------------------------------------------------------------------------- --Range -------------------------------------------------------------------------------- with get_range(n) as ( select &n_start from dual union all select n + 1 from get_range where n < &n_end ) select * from get_range ; -------------------------------------------------------------------------------- --Factorial -------------------------------------------------------------------------------- with get_range(n) as ( select &n_start from dual union all select n + 1 from get_range where n < &n_end ) , factorial(iter, fact) as ( select n iter , 1 fact from get_range where n = 1 union all select f.iter + 1 , f.fact * gr.n from factorial f join get_range gr on (f.iter + 1) = gr.n ) select iter as iteration , fact as factorial from factorial ; -------------------------------------------------------------------------------- --Fibonacci -------------------------------------------------------------------------------- with get_range(n) as ( select &n_start from dual union all select n + 1 from get_range where n < &n_end ) , fibonacci(iter, previous_fib, current_fib) as ( select n iter , 1 previous_fib , 1 current_fib from get_range where n = 1 union all select (f.iter + 1) as iter , f.current_fib as previous_fib , (f.previous_fib + f.current_fib) as current_fib from fibonacci f join get_range gr on (f.iter + 1) = gr.n ) select iter as iteration , current_fib as fibonacci from fibonacci ; /* select s seq from dual model return all rows dimension by (0 d) measures (0 s) rules iterate (&n) ( s[iteration_number] = decode( iteration_number, 0, 0, 1, 1, s[iteration_number-2] ) + nvl(s[iteration_number-1],0) ) */
 create view [dbo].[vw_ActualDomoGroupsWithFieldChecksum] as select i.*, CHECKSUM(isDefault,name) as FieldChecksum from dbo.ActualDOMOGroups i
DROP TABLE IF EXISTS meetups;
 CREATE View workflow.WorkflowStep_ForUpdate As Select ws.id , ws.Workflow_id , ws.Procedure_RepoObject_guid , ws.is_active , ws.is_PossibleReferenced , Workflow_Name = w.Name , ro.RepoObject_fullname From workflow.WorkflowStep As ws Inner Join workflow.Workflow As w On ws.Workflow_id = w.id Inner Join repo.RepoObject As ro On ws.Procedure_RepoObject_guid = ro.RepoObject_guid GO EXECUTE sp_addextendedproperty @name = N'RepoObject_guid', @value = 'a0bcd983-91fa-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '98448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Workflow_Name'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '95448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Workflow_id'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '99448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'RepoObject_fullname'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '96448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Procedure_RepoObject_guid'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '97448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'is_active'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = '94448fa7-00fb-eb11-850e-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'id'; GO EXECUTE sp_addextendedproperty @name = N'RepoObjectColumn_guid', @value = 'e01c2361-86fe-eb11-850f-a81e8446d5b0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'is_PossibleReferenced'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectList', @value = N'* [repo].[RepoObject] * [workflow].[Workflow] * [workflow].[WorkflowStep]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate'; GO EXECUTE sp_addextendedproperty @name = N'is_ssas', @value = N'0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate'; GO EXECUTE sp_addextendedproperty @name = N'is_repo_managed', @value = N'0', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate'; GO EXECUTE sp_addextendedproperty @name = N'AntoraReferencedList', @value = N'* xref:repo.RepoObject.adoc[] * xref:workflow.Workflow.adoc[] * xref:workflow.WorkflowStep.adoc[]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[Workflow].[Name]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Workflow_Name'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[WorkflowStep].[Workflow_id]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Workflow_id'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [repo].[RepoObject].[RepoObject_fullname]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'RepoObject_fullname'; GO GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[WorkflowStep].[Procedure_RepoObject_guid]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'Procedure_RepoObject_guid'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[WorkflowStep].[is_PossibleReferenced]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'is_PossibleReferenced'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[WorkflowStep].[is_active]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'is_active'; GO EXECUTE sp_addextendedproperty @name = N'ReferencedObjectColumnList', @value = N'* [workflow].[WorkflowStep].[id]', @level0type = N'SCHEMA', @level0name = N'workflow', @level1type = N'VIEW', @level1name = N'WorkflowStep_ForUpdate', @level2type = N'COLUMN', @level2name = N'id';
ALTER TABLE `admins` CHANGE `type` `type` CHAR(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'O', CHANGE `status` `status` CHAR(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'A';
DROP TABLE alunos; DROP TABLE aulas; DROP TABLE professores;
<gh_stars>1-10 CREATE TABLE `user` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `gender` varchar(20) NOT NULL, `age` SMALLINT NOT NULL DEFAULT '0', `is_member` tinyint(1) unsigned NOT NULL DEFAULT '1', `create_at` timestamp DEFAULT CURRENT_TIMESTAMP, `update_at` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ); CREATE TABLE `course` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `create_at` timestamp DEFAULT CURRENT_TIMESTAMP, `update_at` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) );
CREATE ROLE debezium REPLICATION LOGIN; CREATE SCHEMA debezium; CREATE TABLE debezium.debezium_heartbeat (heartbeat VARCHAR NOT NULL); GRANT USAGE ON SCHEMA debezium TO debezium; GRANT SELECT, INSERT, UPDATE, DELETE ON debezium.debezium_heartbeat TO debezium;
-- 2019-08-02T18:54:21.291Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET AD_UI_ElementGroup_ID=541086, SeqNo=140,Updated=TO_TIMESTAMP('2019-08-02 20:54:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=548111 ; -- 2019-08-02T18:54:59.341Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET AD_UI_ElementGroup_ID=540057, SeqNo=60,Updated=TO_TIMESTAMP('2019-08-02 20:54:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=548112 ; -- 2019-08-02T18:55:27.662Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_UI_Element WHERE AD_UI_Element_ID=560326 ; -- 2019-08-02T18:55:49.338Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsActive='Y',Updated=TO_TIMESTAMP('2019-08-02 20:55:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560337 ; -- 2019-08-02T18:57:11.445Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=60,Updated=TO_TIMESTAMP('2019-08-02 20:57:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560336 ; -- 2019-08-02T18:57:16.662Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=50,Updated=TO_TIMESTAMP('2019-08-02 20:57:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560337 ; -- 2019-08-02T18:58:40.506Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=150,Updated=TO_TIMESTAMP('2019-08-02 20:58:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=548111 ; -- 2019-08-02T18:59:32.139Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_UI_Element (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,AD_UI_ElementGroup_ID,AD_UI_Element_ID,AD_UI_ElementType,Created,CreatedBy,IsActive,IsAdvancedField,IsAllowFiltering,IsDisplayed,IsDisplayedGrid,IsDisplayed_SideList,IsMultiLine,MultiLine_LinesCount,Name,SeqNo,SeqNoGrid,SeqNo_SideList,Updated,UpdatedBy) VALUES (0,548190,0,540279,541086,560377,'F',TO_TIMESTAMP('2019-08-02 20:59:31','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','N','Y','N','N','N',0,'QtyToInvoice_Override',140,0,0,TO_TIMESTAMP('2019-08-02 20:59:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-08-02T19:00:20.275Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Abzurechnen abw. (Lagereinheit)', PrintName='Abzurechnen abw. (Lagereinheit)',Updated=TO_TIMESTAMP('2019-08-02 21:00:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1002360 AND AD_Language='de_DE' ; -- 2019-08-02T19:00:20.276Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1002360,'de_DE') ; -- 2019-08-02T19:00:20.292Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(1002360,'de_DE') ; -- 2019-08-02T19:00:20.294Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName=NULL, Name='Abzurechnen abw. (Lagereinheit)', Description='Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', Help='Für einen Rechnungslauf ist immer die "Zu berechn. Menge" maßgeblich. ggf. muss also nach einer Änderung dieses Wertes die nächste Aktualisierung abgewartet werden.' WHERE AD_Element_ID=1002360 ; -- 2019-08-02T19:00:20.295Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName=NULL, Name='Abzurechnen abw. (Lagereinheit)', Description='Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', Help='Für einen Rechnungslauf ist immer die "Zu berechn. Menge" maßgeblich. ggf. muss also nach einer Änderung dieses Wertes die nächste Aktualisierung abgewartet werden.' WHERE AD_Element_ID=1002360 AND IsCentrallyMaintained='Y' ; -- 2019-08-02T19:00:20.297Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET Name='Abzurechnen abw. (Lagereinheit)', Description='Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', Help='Für einen Rechnungslauf ist immer die "Zu berechn. Menge" maßgeblich. ggf. muss also nach einer Änderung dieses Wertes die nächste Aktualisierung abgewartet werden.' WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=1002360) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 1002360) ; -- 2019-08-02T19:00:20.306Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_PrintFormatItem pi SET PrintName='Abzurechnen abw. (Lagereinheit)', Name='Abzurechnen abw. (Lagereinheit)' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=1002360) ; -- 2019-08-02T19:00:20.308Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET Name='Abzurechnen abw. (Lagereinheit)', Description='Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', Help='Für einen Rechnungslauf ist immer die "Zu berechn. Menge" maßgeblich. ggf. muss also nach einer Änderung dieses Wertes die nächste Aktualisierung abgewartet werden.', CommitWarning = NULL WHERE AD_Element_ID = 1002360 ; -- 2019-08-02T19:00:20.310Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_WINDOW SET Name='Abzurechnen abw. (Lagereinheit)', Description='Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', Help='Für einen Rechnungslauf ist immer die "Zu berechn. Menge" maßgeblich. ggf. muss also nach einer Änderung dieses Wertes die nächste Aktualisierung abgewartet werden.' WHERE AD_Element_ID = 1002360 ; -- 2019-08-02T19:00:20.311Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Menu SET Name = 'Abzurechnen abw. (Lagereinheit)', Description = 'Der Benutzer kann eine abweichende zu berechnende Menge angeben. Diese wird bei der nächsten Aktualisierung des Rechnungskandidaten berücksichtigt.', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 1002360 ; -- 2019-08-02T19:00:26.285Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y', Name='Abzurechnen abw. (Lagereinheit)', PrintName='Abzurechnen abw. (Lagereinheit)',Updated=TO_TIMESTAMP('2019-08-02 21:00:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1002360 AND AD_Language='de_CH' ; -- 2019-08-02T19:00:26.286Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1002360,'de_CH') ; -- 2019-08-02T19:02:17.145Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:02:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576974 AND AD_Language='de_CH' ; -- 2019-08-02T19:02:17.146Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576974,'de_CH') ; -- 2019-08-02T19:02:19.737Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:02:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576974 AND AD_Language='de_DE' ; -- 2019-08-02T19:02:19.738Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576974,'de_DE') ; -- 2019-08-02T19:02:19.744Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(576974,'de_DE') ; -- 2019-08-02T19:03:06.155Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:03:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1251 AND AD_Language='de_CH' ; -- 2019-08-02T19:03:06.156Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1251,'de_CH') ; -- 2019-08-02T19:03:16.754Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Qty to Invoice eff.( stock unit)', PrintName='Qty to invoice eff. (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:03:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1251 AND AD_Language='en_US' ; -- 2019-08-02T19:03:16.755Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1251,'en_US') ; -- 2019-08-02T19:05:00.759Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Stock unit', PrintName='Stock unit',Updated=TO_TIMESTAMP('2019-08-02 21:05:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576969 AND AD_Language='en_US' ; -- 2019-08-02T19:05:00.760Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576969,'en_US') ; -- 2019-08-02T19:06:24.744Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Quantity (stock unit)', PrintName='Quantity (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:06:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=542270 AND AD_Language='en_US' ; -- 2019-08-02T19:06:24.746Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(542270,'en_US') ; -- 2019-08-02T19:07:14.693Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y', Name='Invoiced (stock unit)', PrintName='Invoiced (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:07:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576972 AND AD_Language='en_US' ; -- 2019-08-02T19:07:14.695Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576972,'en_US') ; -- 2019-08-02T19:07:17.651Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:07:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576972 AND AD_Language='de_DE' ; -- 2019-08-02T19:07:17.653Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576972,'de_DE') ; -- 2019-08-02T19:07:17.659Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(576972,'de_DE') ; -- 2019-08-02T19:07:20.379Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:07:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576972 AND AD_Language='de_CH' ; -- 2019-08-02T19:07:20.380Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576972,'de_CH') ; -- 2019-08-02T19:07:26.826Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:07:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576973 AND AD_Language='de_CH' ; -- 2019-08-02T19:07:26.828Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576973,'de_CH') ; -- 2019-08-02T19:07:29.774Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-08-02 21:07:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576973 AND AD_Language='de_DE' ; -- 2019-08-02T19:07:29.776Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576973,'de_DE') ; -- 2019-08-02T19:07:29.784Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(576973,'de_DE') ; -- 2019-08-02T19:07:46.273Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y', Name='Delivered (stock unit)', PrintName='Delivered (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:07:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576973 AND AD_Language='en_US' ; -- 2019-08-02T19:07:46.274Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576973,'en_US') ; -- 2019-08-02T19:11:56.490Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET Name='QtyDeliveredInUOM',Updated=TO_TIMESTAMP('2019-08-02 21:11:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560329 ; -- 2019-08-02T19:12:06.150Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET Name='QtyToInvoiceInUOM_Calc',Updated=TO_TIMESTAMP('2019-08-02 21:12:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560337 ; -- 2019-08-02T19:14:53.909Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsDisplayed,IsDisplayedGrid,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,568541,582550,0,540279,TO_TIMESTAMP('2019-08-02 21:14:53','YYYY-MM-DD HH24:MI:SS'),100,10,'de.metas.invoicecandidate','Y','N','N','N','N','N','N','N','Abzurechnen eff.',TO_TIMESTAMP('2019-08-02 21:14:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-08-02T19:14:53.910Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Field_ID=582550 AND NOT EXISTS (SELECT 1 FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- 2019-08-02T19:14:53.917Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_FieldTranslation_From_AD_Name_Element(576983) ; -- 2019-08-02T19:14:53.921Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Link WHERE AD_Field_ID=582550 ; -- 2019-08-02T19:14:53.924Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select AD_Element_Link_Create_Missing_Field(582550) ; -- 2019-08-02T19:15:32.486Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET AD_Field_ID=582550,Updated=TO_TIMESTAMP('2019-08-02 21:15:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=560337 ; -- 2019-08-02T19:15:47.923Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsDisplayed='Y', IsDisplayedGrid='Y', IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:15:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582550 ; -- 2019-08-02T19:22:58.973Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='To invoice override (stock unit)', PrintName='To invoice override (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:22:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1002360 AND AD_Language='en_US' ; -- 2019-08-02T19:22:58.975Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1002360,'en_US') ; -- 2019-08-02T19:24:29.190Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET Name='QtyToInvoice',Updated=TO_TIMESTAMP('2019-08-02 21:24:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=548111 ; -- 2019-08-02T19:25:34.846Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='To invoice eff.( stock unit)', PrintName='To invoice eff. (stock unit)',Updated=TO_TIMESTAMP('2019-08-02 21:25:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1251 AND AD_Language='en_US' ; -- 2019-08-02T19:25:34.848Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1251,'en_US') ; -- 2019-08-02T19:26:49.984Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y', Name='Invoiced', PrintName='Invoiced',Updated=TO_TIMESTAMP('2019-08-02 21:26:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=576971 AND AD_Language='en_US' ; -- 2019-08-02T19:26:49.986Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(576971,'en_US') ; -- 2019-08-02T19:28:01.574Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_UI_Element WHERE AD_UI_Element_ID=548112 ; -- 2019-08-02T19:32:38.268Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_UI_ElementField (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_UI_ElementField_ID,AD_UI_Element_ID,Created,CreatedBy,IsActive,SeqNo,Type,Updated,UpdatedBy) VALUES (0,546898,0,540399,541081,TO_TIMESTAMP('2019-08-02 21:32:38','YYYY-MM-DD HH24:MI:SS'),100,'Y',10,'widget',TO_TIMESTAMP('2019-08-02 21:32:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2019-08-02T19:33:50.345Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_UI_ElementField WHERE AD_UI_ElementField_ID=540399 ; -- 2019-08-02T19:39:05.228Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET IsReadOnly='N',Updated=TO_TIMESTAMP('2019-08-02 21:39:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=540665 ; -- 2019-08-02T19:39:32.292Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555482 ; -- 2019-08-02T19:39:35.463Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555483 ; -- 2019-08-02T19:39:37.167Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555484 ; -- 2019-08-02T19:39:38.914Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555485 ; -- 2019-08-02T19:39:41.341Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555488 ; -- 2019-08-02T19:39:42.474Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=555489 ; -- 2019-08-02T19:39:45.443Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582504 ; -- 2019-08-02T19:39:50.703Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582505 ; -- 2019-08-02T19:39:53.628Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582506 ; -- 2019-08-02T19:39:56.589Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:39:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582508 ; -- 2019-08-02T19:40:01.210Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:40:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582499 ; -- 2019-08-02T19:40:02.778Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:40:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582500 ; -- 2019-08-02T19:40:05.580Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:40:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582501 ; -- 2019-08-02T19:40:08.106Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:40:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582502 ; -- 2019-08-02T19:40:09.991Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2019-08-02 21:40:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=582503 ;
# # TABLE STRUCTURE FOR: Endereco_Agencia # USE comportamento_digital; INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (4060, 81207, 96263, '00461', '7231'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (963, 30493, 27203, '02133-64', '2552'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (383, 42884, 67725, '05598', '541'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (874, 86947, 73431, '14183-35', '3123'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (6662, 71272, 40703, '16403', '3721'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (5509, 43597, 8344, '18978', '8619'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (5398, 1035, 38365, '22642-61', '4617'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (3210, 57075, 57209, '26396', '7624'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (5299, 84909, 83867, '28705', '2749'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (4992, 96001, 97917, '33623', '4215'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (5051, 75643, 891, '39918', '9351'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (294, 48298, 55716, '52717-92', '2153'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (2594, 32746, 99409, '58609-35', '8913'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (9796, 61611, 31268, '60280', '5582'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (1454, 76942, 54215, '60695', '6679'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (2197, 32266, 7145, '78541-56', '9278'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (4927, 24976, 20600, '78893', '4669'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (2991, 86353, 18383, '88943-67', '2205'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (6840, 47549, 57890, '89462', '4908'); INSERT INTO `Endereco_Agencia` (`numero`, `codigo_banco`, `codigo_agencia`, `cep`, `complemento`) VALUES (9561, 29946, 33443, '90180', '9613');
drop table if exists `order`; drop table if exists menu; drop table if exists profile; create table profile ( profileId BINARY(16) not null, profileActivationToken CHAR(32), profileEmail VARCHAR(128) not null, profileName CHAR(97) not null, profilePassword VARCHAR(32) not null, profilePhone CHAR(10) not null, unique (profileEmail), index (profileEmail), primary key (profileId) ); create table menu ( menuId BINARY(16) not null, menuFoodTypes VARCHAR(16) not null, menuSize CHAR(16) not null, menuToppings VARCHAR(256) not null ); create table `order` ( orderMenuId BINARY(16) not null, orderProfileId BINARY(16), orderFulfillmentTime CHAR(4) not null, orderHistory VARCHAR(128), orderPaymentType CHAR(16) not null, orderQuantity VARCHAR(16) not null, orderType VARCHAR(64) not null, primary key (orderMenuId) );
USE Backbone; DROP TABLE IF EXISTS AddendumPreferences; CREATE TABLE AddendumPreferences ( Id INT(32) UNSIGNED NOT NULL AUTO_INCREMENT, Action varchar(10) NOT NULL, Name varchar(100) NOT NULL, Value varchar(100) NOT NULL, InsertedTS TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, UpdatedTS TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, KEY (Id) ); ALTER TABLE AddendumPreferences ADD CONSTRAINT PK_Id PRIMARY KEY(Id);
<gh_stars>0 CREATE TABLE meeting_agenda ( id serial PRIMARY KEY NOT NULL, created_at timestamptz DEFAULT now() NOT NULL, updated_at timestamptz NOT NULL, deleted_at timestamptz NOT NULL ); CREATE TABLE meeting_agenda_item ( id serial PRIMARY KEY NOT NULL, meeting_agenda_id bigint NOT NULL, item varchar NOT NULL, created_at timestamptz DEFAULT now() NOT NULL, FOREIGN KEY (meeting_agenda_id) REFERENCES meeting_agenda (id) ); ALTER TABLE general_meeting ADD COLUMN meeting_agenda_id bigint; ALTER TABLE general_meeting ADD CONSTRAINT fk_general_meeting_meeting_agenda_id FOREIGN KEY (meeting_agenda_id) REFERENCES meeting_agenda (id);
set max_threads = 16; SELECT number, number + 3 FROM numbers_mt (1000) where number > 5 order by number desc limit 3; SELECT number%3 as c1, number%2 as c2 FROM numbers_mt (10) order by c1 desc, c2 asc; EXPLAIN SELECT number%3 as c1, number%2 as c2 FROM numbers_mt (10) order by c1, number desc; SELECT number%3 as c1, number%2 as c2 FROM numbers_mt (10) order by c1, number desc; create table t1(id int); insert into t1 select number as id from numbers(10); select * from t1 order by id asc limit 3,3; select * from t1 order by id desc limit 3,3; drop table t1; -- sort with null SELECT number, null from numbers(3) order by number desc; SELECT '==Variant=='; CREATE TABLE IF NOT EXISTS t2(id Int null, var Variant null) Engine = Fuse; INSERT INTO t2 VALUES(1, parse_json('{"k":"v"}')), (2, parse_json('"abcd"')), (3, parse_json('[1,2,3]')), (4, parse_json('10')), (5, parse_json('null')), (6, parse_json('true')); SELECT id, var FROM t2 ORDER BY var ASC; SELECT id, var FROM t2 ORDER BY var DESC; DROP TABLE t2; SELECT '==Array(Int32)=='; CREATE TABLE IF NOT EXISTS t3(id Int null, arr Array(Int32) null) Engine = Fuse; INSERT INTO t3 VALUES(1, [1,2,3]), (2, [1,2,4]), (3, []), (4, [3,4,5]), (5, [4]), (6, [4,5]); SELECT id, arr FROM t3 ORDER BY arr ASC; SELECT id, arr FROM t3 ORDER BY arr DESC; DROP TABLE t3;
DROP TABLE IF EXISTS USER; CREATE TABLE USER ( `user_id` varchar(36) NOT NULL COMMENT '用户主键id', `user_name` varchar(55) DEFAULT NULL COMMENT '用户名', `password` varchar(55) DEFAULT NULL COMMENT '密码', `account` varchar(55) DEFAULT NULL COMMENT '登录账号', `create_time` datetime DEFAULT NULL COMMENT '创建日期', `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`user_id`), UNIQUE KEY `unique_key_email` (`account`) USING BTREE );
<reponame>PNNL-Comp-Mass-Spec/DBSchema_PgSQL_DMS<filename>dmsdev/_Extension_pg_stat_statements.sql -- -- Name: pg_stat_statements; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public; -- -- Name: EXTENSION pg_stat_statements; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQL statements executed';
DROP TABLE IF EXISTS primary_key; CREATE TABLE primary_key (d Date DEFAULT today(), x Int8) ENGINE = MergeTree(d, -x, 1); INSERT INTO primary_key (x) VALUES (1), (2), (3); SELECT x FROM primary_key ORDER BY x; SELECT 'a', -x FROM primary_key WHERE -x < -3; SELECT 'b', -x FROM primary_key WHERE -x < -2; SELECT 'c', -x FROM primary_key WHERE -x < -1; SELECT 'd', -x FROM primary_key WHERE -x < toInt8(0); DROP TABLE primary_key;
<gh_stars>1-10 set timezone 'Asia/Seoul'; --preparation drop table if exists tztest; create table tztest (id int, c_varchar varchar(2000),c_float float, c_tsltz1 timestampltz, c_dtltz1 datetimeltz, primary key (id,c_tsltz1)); create unique index idx_tsltz on tztest(c_dtltz1); insert into tztest values(1,'abcd',100,timestampltz'1990-1-1 12:00:00 PM +9:00',datetimeltz'2000-10-1 12:00:00 AM +9:00' ); insert into tztest values(2,'abcd',33,timestampltz'1990-1-3 12:00:00 AM +9:00',datetimeltz'2000-10-2 12:00:00 AM +9:00' ); insert into tztest values(2,'abcd',55,timestampltz'1993-1-2 12:00:00 AM +9:00',datetimeltz'2000-10-3 12:00:00 AM +9:00' ); insert into tztest values(4,'abcd',99,timestampltz'1993-1-4 12:00:00 AM +9:00',datetimeltz'2000-10-4 12:00:00 AM +9:00' ); insert into tztest values(2,'abcd',99,timestampltz'1990-1-4 12:00:00 AM +9:00',datetimeltz'2001-10-4 12:00:00 AM +9:00' ); insert into tztest values(6,'abcd',99,timestampltz'1992-1-4 12:00:00 AM +9:00',datetimeltz'2002-10-4 12:00:00 AM +9:00' ); --+++++++++++++++++Test case - timestampltz++++++++++++++++ select year(c_tsltz1),count(*) from tztest where c_tsltz1 > timestampltz'1990-1-1 12:00:00 AM +9:00' group by year(c_tsltz1) order by c_tsltz1; update tztest set c_varchar='updated' where exists (select * from tztest as B where tztest.id = B.id and tztest.c_tsltz1 = adddate(B.c_tsltz1, interval 1 DAY) ); select * from tztest where c_varchar='updated' order by 1; select A.id, A.c_tsltz1, max(A.c_float) from tztest as A, tztest as B where A.c_tsltz1 <= B.c_tsltz1 and A.id=B.id group by A.id having count( * ) <=3 order by 1; --+++++++++++++++++Test case - datetimeltz+++++++++++++++++ select c_dtltz1,count(*) from tztest where c_dtltz1 > datetimeltz'1990-1-1 12:00:00 AM +9:00' group by year(c_dtltz1) order by c_dtltz1; update tztest set c_varchar='updated1' where exists (select * from tztest as B where tztest.id = B.id and tztest.c_dtltz1 = adddate(B.c_dtltz1,interval 1 DAY) ); select A.id, A.c_dtltz1, max(A.c_float) from tztest as A, tztest as B where A.c_dtltz1 <= B.c_dtltz1 and A.id=B.id group by A.id having count( * ) <=3 order by 1; drop table tztest; --Test case timestampltz drop table if exists t1; CREATE TABLE t1 (task_id CHAR(10) NOT NULL PRIMARY KEY,start_date timestampltz NOT NULL,end_date timestampltz NOT NULL); INSERT INTO t1 VALUES (1, '1997-01-01', '1997-01-03'),(2, '1997-01-02', '1997-01-04'), (3, '1997-01-04', '1997-01-05'),(4, '1997-01-06', '1997-01-09'), (5, '1997-01-09', '1997-01-09'),(6, '1997-01-09', '1997-01-09'), (7, '1997-01-12', '1997-01-15'),(8, '1997-01-13', '1997-01-14'), (9, '1997-01-14', '1997-01-14'),(10, '1997-01-17', '1997-01-17'); SELECT T1.start_date, MAX(T2.end_date) FROM t1 AS T1, t1 AS T2 WHERE T1.start_date < T2.end_date AND NOT EXISTS (SELECT * FROM t1 AS T3, t1 AS T4 WHERE T3.end_date < T4.start_date AND T3.start_date >= T1.start_date AND T3.end_date <= T2.end_date AND T4.start_date >= T1.start_date AND T4.end_date <= T2.end_date AND NOT EXISTS (SELECT * FROM t1 AS T5 WHERE T5.start_date BETWEEN T3.start_date AND T3.end_date AND T5.end_date BETWEEN T4.start_date AND T4.end_date)) GROUP BY T1.start_date HAVING t1.start_date = MIN(t2.start_date) order by 1; drop table t1; -- Test case - datetimeltz drop table if exists t1; CREATE TABLE t1 (task_id CHAR(10) NOT NULL PRIMARY KEY,start_date datetimeltz NOT NULL,end_date datetimeltz NOT NULL); INSERT INTO t1 VALUES (1, '1997-01-01', '1997-01-03'),(2, '1997-01-02', '1997-01-04'), (3, '1997-01-04', '1997-01-05'),(4, '1997-01-06', '1997-01-09'), (5, '1997-01-09', '1997-01-09'),(6, '1997-01-09', '1997-01-09'), (7, '1997-01-12', '1997-01-15'),(8, '1997-01-13', '1997-01-14'), (9, '1997-01-14', '1997-01-14'),(10, '1997-01-17', '1997-01-17'); SELECT T1.start_date, MAX(T2.end_date) FROM t1 AS T1, t1 AS T2 WHERE T1.start_date < T2.end_date AND NOT EXISTS (SELECT * FROM t1 AS T3, t1 AS T4 WHERE T3.end_date < T4.start_date AND T3.start_date >= T1.start_date AND T3.end_date <= T2.end_date AND T4.start_date >= T1.start_date AND T4.end_date <= T2.end_date AND NOT EXISTS (SELECT * FROM t1 AS T5 WHERE T5.start_date BETWEEN T3.start_date AND T3.end_date AND T5.end_date BETWEEN T4.start_date AND T4.end_date)) GROUP BY T1.start_date HAVING t1.start_date = MIN(t2.start_date) order by 1; drop table t1;
<filename>Bundesliga/api/sql/available_teams.sql SELECT team_name, team_icon_url, team_id FROM api_team JOIN api_match am ON am.team_one_id = team_id WHERE am.league_season = {league_season}
DROP DATABASE IF EXISTS letsgo_db; CREATE DATABASE letsgo_db;
-- 1 SELECT COUNT(DISTINCT department_number) FROM employee; --2 SELECT MIN(salary), MAX(salary), department_number FROM employee GROUP BY department_number; --3 SELECT COUNT(DISTINCT project_number) FROM works_on; --4 SELECT project_number, SUM(hours) FROM works_on GROUP BY project_number; --5 SELECT count(ssn_number) FROM employee WHERE MONTHS_BETWEEN(SYSDATE,BIRTHDAY)/12>30; --6 SELECT department_number FROM employee GROUP BY department_number HAVING COUNT(department_number) >=3; --7 SELECT AVG(salary), department_number FROM employee GROUP BY department_number; --8 SELECT COUNT(dependent_name), employee FROM dependent GROUP BY employee; --9 SELECT count(ssn_number) FROM employee WHERE MONTHS_BETWEEN(SYSDATE,birthday)/12>60; --10 SELECT COUNT(department_number) FROM employee WHERE department_number IN(SELECT department_number FROM department WHERE department_name = 'Manufacture');
<reponame>JoannaCode/LeetCode-Sol-Res<filename>Database/Easy/DuplicateEmails.sql Write a SQL query to find all duplicate emails in a table named Person. +----+---------+ | Id | Email | +----+---------+ | 1 | <EMAIL> | | 2 | <EMAIL> | | 3 | <EMAIL> | +----+---------+ For example, your query should return the following for the above table: +---------+ | Email | +---------+ | <EMAIL> | +---------+ Note: All emails are in lowercase. ------- Group person by email Return count > 1 ------- SELECT Email FROM Person GROUP BY Email HAVING count(*) > 1 1. Use self join. SELECT DISTINCT a.Email FROM Person a JOIN Person b ON (a.Email = b.Email) WHERE a.Id <> b.Id 2. Use subquery with EXISTS: SELECT DISTINCT a.Email FROM Person a WHERE EXISTS( SELECT 1 FROM Person b WHERE a.Email = b.Email LIMIT 1, 1 ) 3. Basic idea is this query: SELECT DISTINCT Email FROM Person MINUS (SELECT Id, Email FROM Person GROUP BY Email) But since MySQL does not support MINUS, we use LEFT JOIN: SELECT DISTINCT a.Email FROM Person a LEFT JOIN (SELECT Id, Email from Person GROUP BY Email) b ON (a.email = b.email) AND (a.Id = b.Id) WHERE b.Email IS NULL
<filename>Query/Temporal/8.select most recent.sql<gh_stars>1-10 select p1.ProductID, p1.Price, p1.ProductName from dbo.Product for system_time all p1 left join dbo.Product for system_time all p2 on p2.ProductID = p1.ProductID and p2.[SysEndTime] > p1.[SysEndTime] where p2.ProductID is null --filter to most recent versions only order by ProductID
<filename>Scopus/Abt_Analysis/ETL/update_cci_s_tables.sql /* This script updates the main SCOPUS tables per the Abt ETL */ INSERT INTO cci_s_affiliations SELECT DISTINCT a.affiliation_id, a.parent_affiliation_id, a.scopus_author_count, a.scopus_document_count, a.affiliation_name, a.address, a.city, a.state, a.country, a.postal_code, a.organization_type FROM (cci_s_affiliations_staging a INNER JOIN (select affiliation_id, max(table_id) as table_id from cci_s_affiliations_staging group by affiliation_id) b ON a.affiliation_id=b.affiliation_id and a.table_id=b.table_id ) ON CONFLICT (affiliation_id) DO UPDATE SET affiliation_id = excluded.affiliation_id, parent_affiliation_id=excluded.parent_affiliation_id, scopus_author_count = excluded.scopus_author_count, scopus_document_count = excluded.scopus_document_count, affiliation_name = excluded.affiliation_name, address = excluded.address, city = excluded.city, state = excluded.state, country = excluded.country, postal_code = excluded.postal_code, organization_type = excluded.organization_type; INSERT INTO cci_s_documents SELECT DISTINCT a.scopus_id, a.title, a.document_type, a.scopus_cited_by_count, a.process_cited_by_count, a.publication_name, a.publisher, a.issn, a.volume, a.page_range, a.cover_date, a.publication_year, a.publication_month, a.publication_day, a.pubmed_id, a.doi, a.description, a.scopus_first_author_id, a.subject_areas, a.keywords FROM (cci_s_documents_staging a INNER JOIN (select scopus_id,max(table_id) as table_id from cci_s_documents_staging group by scopus_id) b ON a.scopus_id=b.scopus_id and a.table_id=b.table_id ) ON CONFLICT (scopus_id) DO UPDATE SET scopus_id = excluded.scopus_id, title = excluded.title,document_type = excluded.document_type, scopus_cited_by_count = excluded.scopus_cited_by_count, process_cited_by_count = excluded.process_cited_by_count, publication_name = excluded.publication_name,publisher = excluded.publisher, issn = excluded.issn, volume = excluded.volume, page_range = excluded.page_range, cover_date = excluded.cover_date, publication_year = excluded.publication_year, publication_month = excluded.publication_month, publication_day = excluded.publication_day, pubmed_id = excluded.pubmed_id, doi = excluded.doi, description = excluded.description, scopus_first_author_id = excluded.scopus_first_author_id, subject_areas = excluded.subject_areas, keywords = excluded.keywords; INSERT INTO cci_s_authors SELECT DISTINCT a.author_id, a.indexed_name, a.surname, a.given_name, a.initials, a.scopus_co_author_count, a.process_co_author_count, a.scopus_document_count, a.process_document_count, a.scopus_citation_count, a.scopus_cited_by_count, a.alias_author_id FROM (cci_s_authors_staging a INNER JOIN (select author_id, max(table_id) as table_id from cci_s_authors_staging group by author_id) b ON a.author_id=b.author_id and a.table_id=b.table_id ) ON CONFLICT (author_id) DO UPDATE SET author_id = excluded.author_id, indexed_name = excluded.indexed_name,surname = excluded.surname, given_name = excluded.given_name, initials = excluded.initials, scopus_co_author_count = excluded.scopus_co_author_count,process_co_author_count = excluded.process_co_author_count, scopus_document_count = excluded.scopus_document_count, process_document_count = excluded.process_document_count, scopus_citation_count = excluded.scopus_citation_count, scopus_cited_by_count = excluded.scopus_cited_by_count, alias_author_id = excluded.alias_author_id; INSERT INTO cci_s_author_affiliation_mappings SELECT DISTINCT author_id, affiliation_id FROM cci_s_author_affiliation_mappings_staging ON CONFLICT (author_id, affiliation_id) DO UPDATE SET author_id = excluded.author_id, affiliation_id = excluded.affiliation_id; INSERT INTO cci_s_author_document_mappings SELECT DISTINCT author_id,scopus_id FROM cci_s_author_document_mappings_staging ON CONFLICT (author_id, scopus_id) DO UPDATE SET author_id = excluded.author_id, scopus_id = excluded.scopus_id; INSERT INTO cci_s_document_affiliation_mappings SELECT DISTINCT scopus_id,affiliation_id FROM cci_s_document_affiliation_mappings_staging ON CONFLICT (scopus_id, affiliation_id) DO UPDATE SET scopus_id = excluded.scopus_id, affiliation_id = excluded.affiliation_id; INSERT INTO cci_s_documents_citations SELECT DISTINCT citing_scopus_id,cited_scopus_id FROM cci_s_documents_citations_staging ON CONFLICT (citing_scopus_id, cited_scopus_id) DO UPDATE SET citing_scopus_id = excluded.citing_scopus_id, cited_scopus_id = excluded.cited_scopus_id; INSERT INTO cci_s_author_search_results SELECT DISTINCT a.surname, a.given_name, a.author_id, a.award_number, a.first_year, a.manual_selection, a.query_string FROM cci_s_author_search_results_staging a ON CONFLICT (author_id, award_number, surname, given_name) DO UPDATE SET surname = excluded.surname, given_name = excluded.given_name, author_id = excluded.author_id, award_number = excluded.award_number, first_year = excluded.first_year, manual_selection = excluded.manual_selection,query_string = excluded.query_string; INSERT INTO cci_s_document_search_results SELECT DISTINCT a.submitted_title, a.submitted_doi, a.document_type, a.scopus_id, a.award_number, a.phase, a.first_year, a.manual_selection, a.query_string FROM (cci_s_document_search_results_stg a INNER JOIN (select scopus_id, award_number, submitted_title,max(table_id) as table_id from cci_s_document_search_results_stg group by scopus_id, award_number, submitted_title) b ON a.table_id=b.table_id ) WHERE a.submitted_doi!='' ON CONFLICT (scopus_id, award_number, submitted_title) DO UPDATE SET submitted_title = excluded.submitted_title, submitted_doi = excluded.submitted_doi, document_type = excluded.document_type, award_number = excluded.award_number, phase=excluded.phase, first_year = excluded.first_year, manual_selection = excluded.manual_selection, query_string = excluded.query_string;
<gh_stars>1-10 /* fix_job_agents_without_notification.sql This script fixes job agents w/o on-failure notifications. If there are no or more than 1 operators, the script terminates. Parameter(s) to be set in advance: None. Changelog --------- 2021-11-13 KMP Initial release. Known Issues ------------ - Exactly 1 operator may be defined, only. - Nothing included yet related to DBMail. The MIT License --------------- Copyright (c) 2021-2022 <NAME>. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ USE [master]; GO SET NOCOUNT ON; /* 1 - Check if SQL Server Agent service is up and running. */ RAISERROR (N'Check SQL Server Agent service ...', 10, 1) WITH NOWAIT; IF NOT EXISTS ( SELECT 1 FROM [master].[sys].[dm_server_services] WITH (NOLOCK) WHERE [servicename] LIKE 'SQL Server Agent%' AND [status] = 4 -- Running ) BEGIN RAISERROR (N'SQL Server Agent service is not running. Abort execution ...', 16, 1) WITH NOWAIT; RETURN; END; RAISERROR (N'done.', 10, 1) WITH NOWAIT; /* 2 - Get the operator's name. */ RAISERROR (N'Get the operator''s name/designation ...', 10, 2) WITH NOWAIT; DECLARE @operatorCount INT; DECLARE @operatorName NVARCHAR(128); SELECT @operatorCount = COUNT(*) FROM [msdb].[dbo].[sysoperators] OPTION (RECOMPILE); IF (@operatorCount = 0) BEGIN RAISERROR (N'No operators found. Abort execution ...', 16, 2) WITH NOWAIT; RETURN; END ELSE IF (@operatorCount > 1) BEGIN RAISERROR (N'%d operators found. Abort execution ...', 16, 2, @operatorCount) WITH NOWAIT; RETURN; END ELSE BEGIN SELECT @operatorName = [name] FROM [msdb].[dbo].[sysoperators] OPTION (RECOMPILE); END; RAISERROR (N'done.', 10, 2) WITH NOWAIT; /* 3 - Set recipient for notifications. */ RAISERROR (N'Set operator ''%s'' as recipient for job agent notifications ...', 10, 3, @operatorName) WITH NOWAIT; DECLARE @jid AS UNIQUEIDENTIFIER; DECLARE [job_cursor] CURSOR FOR SELECT [job_id] FROM [msdb].[dbo].[sysjobs]; OPEN [job_cursor]; FETCH NEXT FROM [job_cursor] INTO @jid; WHILE @@FETCH_STATUS = 0 BEGIN EXEC [msdb].[dbo].[sp_update_job] @job_id = @jid, @notify_level_email = 2, -- on failure @notify_email_operator_name = @operatorName; FETCH NEXT FROM [job_cursor] INTO @jid; END; CLOSE [job_cursor]; DEALLOCATE [job_cursor]; RAISERROR (N'done.', 10, 3) WITH NOWAIT;
CREATE FUNCTION fnDoctores_SeleccionarDoctoresTodos() RETURNS TABLE AS RETURN SELECT * FROM vwDoctores_SeleccionarTodos
<reponame>microsoft/ProcBench create or alter procedure AccessItemQuality as begin declare @mostReturnItem table(itemNo int, manufactId int); insert into @mostReturnItem select * from dbo.MaxRetunItems(); delete from item where i_item_sk in (select itemNo from @mostReturnItem); --these items deleted update item set i_item_desc = 'HIGH RISH ITEM' where i_manufact_id in (select manufactId from @mostReturnItem); end
-- pagerfault.test -- -- execsql { -- CREATE TABLE t2 AS SELECT * FROM t1 LIMIT 10; -- } CREATE TABLE t2 AS SELECT * FROM t1 LIMIT 10;
<reponame>Shuttl-Tech/antlr_psql<gh_stars>10-100 -- file:inherit.sql ln:664 expect:true create table mcrparted2 partition of mcrparted for values from (10, 5, 10) to (10, 10, 10)
<reponame>chengwenxin/sqlite-parser -- original: randexpr1.test -- credit: http://www.sqlite.org/src/tree?ci=trunk&name=test SELECT coalesce((select max(case t1.b+(select ~((cast(avg(17) AS integer)))*min(a)-count(distinct b)*cast(avg(t1.b) AS integer)-count(*)+max(19) from t1)-(e) when d then 13 else 13*c end+t1.c) from t1 where t1.b in (select +cast(avg(e) AS integer)*case count(*) when cast(avg(13) AS integer) then count(distinct t1.b) else count(*) end-(count(distinct 19))*min(t1.d) from t1 union select max(a) from t1)),(f))*e+t1.f*19 FROM t1 WHERE NOT (17 not between -t1.e and d) ;SELECT coalesce((select max(~19) from t1 where 11 in (select t1.b-11*coalesce((select max(b) from t1 where coalesce((select max(e) from t1 where c*case 19*19+coalesce((select 19 from t1 where (11 not in (13+t1.d,b,(11)))),13)*d when t1.e then t1.b else t1.b end+t1.e between d and t1.b),t1.b) | (f)<>13), - -17)+c from t1 union select -19 from t1)),17) FROM t1 WHERE ~t1.d not between 11*13-t1.d-11-f and t1.d ;SELECT coalesce((select max(~19) from t1 where 11 in (select t1.b-11*coalesce((select max(b) from t1 where coalesce((select max(e) from t1 where c*case 19*19+coalesce((select 19 from t1 where (11 not in (13+t1.d,b,(11)))),13)*d when t1.e then t1.b else t1.b end+t1.e between d and t1.b),t1.b) | (f)<>13), - -17)+c from t1 union select -19 from t1)),17) FROM t1 WHERE NOT (~t1.d not between 11*13-t1.d-11-f and t1.d) ;SELECT coalesce((select max(~19) from t1 where 11 in (select t1.b-11*coalesce((select max(b) from t1 where coalesce((select max(e) from t1 where c*case 19*19+coalesce((select 19 from t1 where (11 not in (13+t1.d,b,(11)))),13)*d when t1.e then t1.b else t1.b end+t1.e between d and t1.b),t1.b) & (f)<>13), - -17)+c from t1 union select -19 from t1)),17) FROM t1 WHERE NOT (~t1.d not between 11*13-t1.d-11-f and t1.d) ;SELECT case t1.b when coalesce((select max(17+coalesce((select max(coalesce((select (select count(distinct case f when 19 then coalesce((select coalesce((select max(11-(abs(d)/abs(11))) from t1 where not -a in (19,t1.b,17)),17) from t1 where (f in (b,f,t1.a))),b) else b end) from t1) from t1 where 17 between e and t1.f),t1.a)) from t1 where 13>=e),b)) from t1 where t1.f>t1.f),t1.b) then 17 else t1.f end FROM t1 WHERE not exists(select 1 from t1 where 13 between a+17 and (t1.c)) ;SELECT case t1.b when coalesce((select max(17+coalesce((select max(coalesce((select (select count(distinct case f when 19 then coalesce((select coalesce((select max(11-(abs(d)/abs(11))) from t1 where not -a in (19,t1.b,17)),17) from t1 where (f in (b,f,t1.a))),b) else b end) from t1) from t1 where 17 between e and t1.f),t1.a)) from t1 where 13>=e),b)) from t1 where t1.f>t1.f),t1.b) then 17 else t1.f end FROM t1 WHERE NOT (not exists(select 1 from t1 where 13 between a+17 and (t1.c))) ;SELECT case when coalesce((select max(d) from t1 where t1.a in (select a-a from t1 union select a from t1)),t1.b)*(select max(t1.b) from t1)>=case when t1.b<case 17 when 19 then t1.a else t1.a end then b when 17<19 then t1.e else t1.b end and (t1.e=t1.c or (not exists(select 1 from t1 where not exists(select 1 from t1 where a=(13)))) or t1.b between 17 and t1.d and b in (t1.f,f,13) or t1.d<e) then t1.c when t1.c between 19 and 11 then d else a end FROM t1 WHERE t1.c>=t1.a ;SELECT case when coalesce((select max(d) from t1 where t1.a in (select a-a from t1 union select a from t1)),t1.b)*(select max(t1.b) from t1)>=case when t1.b<case 17 when 19 then t1.a else t1.a end then b when 17<19 then t1.e else t1.b end and (t1.e=t1.c or (not exists(select 1 from t1 where not exists(select 1 from t1 where a=(13)))) or t1.b between 17 and t1.d and b in (t1.f,f,13) or t1.d<e) then t1.c when t1.c between 19 and 11 then d else a end FROM t1 WHERE NOT (t1.c>=t1.a) ;SELECT case when case when f*~case when t1.c*t1.f in (c,t1.b,(17)) then 17 when 11>t1.c then 13 else t1.e end+t1.f in (select +max(e)+case (count(distinct a)*count(*))+max(19) when -max(11) then count(distinct a) else ((count(distinct t1.d))) end from t1 union select count(distinct c) from t1) then 17 else d end+(t1.c)<17 then b when not exists(select 1 from t1 where 11>t1.b) then t1.d else t1.a end FROM t1 WHERE t1.b< -f ;SELECT case when case when f*~case when t1.c*t1.f in (c,t1.b,(17)) then 17 when 11>t1.c then 13 else t1.e end+t1.f in (select +max(e)+case (count(distinct a)*count(*))+max(19) when -max(11) then count(distinct a) else ((count(distinct t1.d))) end from t1 union select count(distinct c) from t1) then 17 else d end+(t1.c)<17 then b when not exists(select 1 from t1 where 11>t1.b) then t1.d else t1.a end FROM t1 WHERE NOT (t1.b< -f) ;SELECT (select cast(avg(f) AS integer) | ~+cast(avg((abs(17)/abs( -f+(c-coalesce((select case when c=d and t1.e=t1.b then e when e in (t1.b,19,t1.c) then 17 else d end from t1 where e between t1.a and t1.c),a))+a))) AS integer)-abs( -min(t1.c))-abs(max((t1.b)) | -~(count(*))+max(17))+cast(avg(t1.a) AS integer) | min(a)*(count(*))*min(17) from t1) FROM t1 WHERE b-(t1.e*t1.e)-t1.d=t1.c ;SELECT (select cast(avg(f) AS integer) | ~+cast(avg((abs(17)/abs( -f+(c-coalesce((select case when c=d and t1.e=t1.b then e when e in (t1.b,19,t1.c) then 17 else d end from t1 where e between t1.a and t1.c),a))+a))) AS integer)-abs( -min(t1.c))-abs(max((t1.b)) | -~(count(*))+max(17))+cast(avg(t1.a) AS integer) | min(a)*(count(*))*min(17) from t1) FROM t1 WHERE NOT (b-(t1.e*t1.e)-t1.d=t1.c) ;SELECT (select cast(avg(f) AS integer) & ~+cast(avg((abs(17)/abs( -f+(c-coalesce((select case when c=d and t1.e=t1.b then e when e in (t1.b,19,t1.c) then 17 else d end from t1 where e between t1.a and t1.c),a))+a))) AS integer)-abs( -min(t1.c))-abs(max((t1.b)) & -~(count(*))+max(17))+cast(avg(t1.a) AS integer) & min(a)*(count(*))*min(17) from t1) FROM t1 WHERE NOT (b-(t1.e*t1.e)-t1.d=t1.c) ;SELECT ~+coalesce((select case when t1.f>d then b when (abs(t1.a)/abs((abs(f)/abs(t1.c))))*case ~b when e then (select cast(avg( -t1.f) AS integer) from t1) else c end+coalesce((select max(17*case t1.a+b when t1.b then t1.d else t1.f end) from t1 where d=e),t1.f)+13>=17 then 19 else f end from t1 where t1.a in (select d from t1 union select e from t1)),b) FROM t1 WHERE 17<>f-~t1.a-case when -b in (t1.b,(select min( -coalesce((select max(coalesce((select a-t1.b from t1 where 11 in (t1.b,13, -t1.e) and f not between -13 and t1.b),c)) from t1 where b not in (a,11,17)),t1.e)) from t1),e) or not exists(select 1 from t1 where t1.c in (select t1.b from t1 union select t1.b from t1)) then coalesce((select -t1.e from t1 where e<>t1.e),f) when not t1.e<>t1.c then 19 else e end ;SELECT ~+coalesce((select case when t1.f>d then b when (abs(t1.a)/abs((abs(f)/abs(t1.c))))*case ~b when e then (select cast(avg( -t1.f) AS integer) from t1) else c end+coalesce((select max(17*case t1.a+b when t1.b then t1.d else t1.f end) from t1 where d=e),t1.f)+13>=17 then 19 else f end from t1 where t1.a in (select d from t1 union select e from t1)),b) FROM t1 WHERE NOT (17<>f-~t1.a-case when -b in (t1.b,(select min( -coalesce((select max(coalesce((select a-t1.b from t1 where 11 in (t1.b,13, -t1.e) and f not between -13 and t1.b),c)) from t1 where b not in (a,11,17)),t1.e)) from t1),e) or not exists(select 1 from t1 where t1.c in (select t1.b from t1 union select t1.b from t1)) then coalesce((select -t1.e from t1 where e<>t1.e),f) when not t1.e<>t1.c then 19 else e end) ;SELECT d-e*(abs(t1.c)/abs(d)) | t1.a-coalesce((select max(t1.e) from t1 where case when case when (a in (13,b,t1.b)) and d in (t1.c,17,a) then 17+t1.e when 19>=t1.b then a else 11 end=t1.f and d between c and (d) then (abs(17)/abs(d)) else t1.d end*f>e and not f<=13 and -t1.f>=t1.e and t1.b<t1.b),t1.e)-case when t1.c<>e then t1.b else c end FROM t1 WHERE b-coalesce((select (coalesce((select max((coalesce((select d from t1 where not -case when case 13 when +~(select case count(*) when -max(t1.b) then max(a) else min(c) end from t1) then c else -a end in (17,t1.b,(b)) then f else b end-f+17<=t1.a),t1.f)-d)) from t1 where t1.e=b),t1.b)) from t1 where (t1.a=t1.c)), -t1.a) not between 19 and 19 ;SELECT d-e*(abs(t1.c)/abs(d)) | t1.a-coalesce((select max(t1.e) from t1 where case when case when (a in (13,b,t1.b)) and d in (t1.c,17,a) then 17+t1.e when 19>=t1.b then a else 11 end=t1.f and d between c and (d) then (abs(17)/abs(d)) else t1.d end*f>e and not f<=13 and -t1.f>=t1.e and t1.b<t1.b),t1.e)-case when t1.c<>e then t1.b else c end FROM t1 WHERE NOT (b-coalesce((select (coalesce((select max((coalesce((select d from t1 where not -case when case 13 when +~(select case count(*) when -max(t1.b) then max(a) else min(c) end from t1) then c else -a end in (17,t1.b,(b)) then f else b end-f+17<=t1.a),t1.f)-d)) from t1 where t1.e=b),t1.b)) from t1 where (t1.a=t1.c)), -t1.a) not between 19 and 19) ;SELECT d-e*(abs(t1.c)/abs(d)) & t1.a-coalesce((select max(t1.e) from t1 where case when case when (a in (13,b,t1.b)) and d in (t1.c,17,a) then 17+t1.e when 19>=t1.b then a else 11 end=t1.f and d between c and (d) then (abs(17)/abs(d)) else t1.d end*f>e and not f<=13 and -t1.f>=t1.e and t1.b<t1.b),t1.e)-case when t1.c<>e then t1.b else c end FROM t1 WHERE b-coalesce((select (coalesce((select max((coalesce((select d from t1 where not -case when case 13 when +~(select case count(*) when -max(t1.b) then max(a) else min(c) end from t1) then c else -a end in (17,t1.b,(b)) then f else b end-f+17<=t1.a),t1.f)-d)) from t1 where t1.e=b),t1.b)) from t1 where (t1.a=t1.c)), -t1.a) not between 19 and 19 ;SELECT 19-case 13-f when b then t1.a*11-t1.d-+17*t1.b-coalesce((select 17 from t1 where 13<=f),+coalesce((select (abs(17+~coalesce((select a from t1 where 11<>t1.b and 11 not between t1.e and 19),17)+t1.e+t1.d | b)/abs(c))+f from t1 where 19 not between 19 and c),d)) else 19 end*t1.e+b FROM t1 WHERE 11+11 not in (t1.c,t1.e,19) and f+19*19*case when ~t1.a+19*b between t1.a-case case when f=(t1.d) then ((t1.d)) else -d end*e when c then e else t1.a end*t1.e and c then t1.e else b end in (select d from t1 union select t1.a from t1) or t1.d>=t1.f or not exists(select 1 from t1 where a<=13) ;SELECT 19-case 13-f when b then t1.a*11-t1.d-+17*t1.b-coalesce((select 17 from t1 where 13<=f),+coalesce((select (abs(17+~coalesce((select a from t1 where 11<>t1.b and 11 not between t1.e and 19),17)+t1.e+t1.d | b)/abs(c))+f from t1 where 19 not between 19 and c),d)) else 19 end*t1.e+b FROM t1 WHERE NOT (11+11 not in (t1.c,t1.e,19) and f+19*19*case when ~t1.a+19*b between t1.a-case case when f=(t1.d) then ((t1.d)) else -d end*e when c then e else t1.a end*t1.e and c then t1.e else b end in (select d from t1 union select t1.a from t1) or t1.d>=t1.f or not exists(select 1 from t1 where a<=13)) ;SELECT 19-case 13-f when b then t1.a*11-t1.d-+17*t1.b-coalesce((select 17 from t1 where 13<=f),+coalesce((select (abs(17+~coalesce((select a from t1 where 11<>t1.b and 11 not between t1.e and 19),17)+t1.e+t1.d & b)/abs(c))+f from t1 where 19 not between 19 and c),d)) else 19 end*t1.e+b FROM t1 WHERE 11+11 not in (t1.c,t1.e,19) and f+19*19*case when ~t1.a+19*b between t1.a-case case when f=(t1.d) then ((t1.d)) else -d end*e when c then e else t1.a end*t1.e and c then t1.e else b end in (select d from t1 union select t1.a from t1) or t1.d>=t1.f or not exists(select 1 from t1 where a<=13) ;SELECT case 19 when e then t1.b-t1.d else 11+coalesce((select 19 from t1 where not (t1.a)+(abs(case coalesce((select coalesce((select t1.e from t1 where 11=d),a) from t1 where t1.d<=13),a) when 17 then 13 else t1.a end)/abs(t1.b))-t1.d*e+t1.d not between b and b or e in (select -min(c) from t1 union select min(t1.b) from t1)),(abs(e)/abs(t1.b)))+t1.c end FROM t1 WHERE exists(select 1 from t1 where c in (select t1.a from t1 union select f from t1)) ;SELECT case 19 when e then t1.b-t1.d else 11+coalesce((select 19 from t1 where not (t1.a)+(abs(case coalesce((select coalesce((select t1.e from t1 where 11=d),a) from t1 where t1.d<=13),a) when 17 then 13 else t1.a end)/abs(t1.b))-t1.d*e+t1.d not between b and b or e in (select -min(c) from t1 union select min(t1.b) from t1)),(abs(e)/abs(t1.b)))+t1.c end FROM t1 WHERE NOT (exists(select 1 from t1 where c in (select t1.a from t1 union select f from t1))) ;SELECT 17 | t1.d-(select +max(case when not exists(select 1 from t1 where (a<=t1.f)) then -19 else -t1.d end)-min(t1.f+t1.f-(select (count(*)) from t1)) from t1)- -19 | b-d+coalesce((select max(d) from t1 where e-t1.a in (19,b,11) or e in (19,t1.b,c)),11) FROM t1 WHERE (11<=11 and case coalesce((select max((f)) from t1 where t1.b | case 11 when t1.e*t1.e then e else case when ~b-case when 19 not in (t1.d,13,e) then 13 when c between t1.e and b then 19 else t1.c end-(c) in (select -t1.f from t1 union select d from t1) then c else t1.b end end*t1.a in (19,e,c)),t1.a) when t1.d then t1.a else -a end not in (t1.c,b,t1.f)) ;SELECT 17 | t1.d-(select +max(case when not exists(select 1 from t1 where (a<=t1.f)) then -19 else -t1.d end)-min(t1.f+t1.f-(select (count(*)) from t1)) from t1)- -19 | b-d+coalesce((select max(d) from t1 where e-t1.a in (19,b,11) or e in (19,t1.b,c)),11) FROM t1 WHERE NOT ((11<=11 and case coalesce((select max((f)) from t1 where t1.b | case 11 when t1.e*t1.e then e else case when ~b-case when 19 not in (t1.d,13,e) then 13 when c between t1.e and b then 19 else t1.c end-(c) in (select -t1.f from t1 union select d from t1) then c else t1.b end end*t1.a in (19,e,c)),t1.a) when t1.d then t1.a else -a end not in (t1.c,b,t1.f))) ;SELECT 17 & t1.d-(select +max(case when not exists(select 1 from t1 where (a<=t1.f)) then -19 else -t1.d end)-min(t1.f+t1.f-(select (count(*)) from t1)) from t1)- -19 & b-d+coalesce((select max(d) from t1 where e-t1.a in (19,b,11) or e in (19,t1.b,c)),11) FROM t1 WHERE (11<=11 and case coalesce((select max((f)) from t1 where t1.b | case 11 when t1.e*t1.e then e else case when ~b-case when 19 not in (t1.d,13,e) then 13 when c between t1.e and b then 19 else t1.c end-(c) in (select -t1.f from t1 union select d from t1) then c else t1.b end end*t1.a in (19,e,c)),t1.a) when t1.d then t1.a else -a end not in (t1.c,b,t1.f)) ;SELECT case t1.e-d+b when coalesce((select (select max(t1.a | a | -(select (count(*))+( -count(*)) from t1)*19-f+t1.e) from t1) from t1 where not exists(select 1 from t1 where (d not between a and 11) or not d>=11 and exists(select 1 from t1 where not t1.a<>13)) or 19 not in (17,t1.c,t1.c)),19)*t1.c+d then b else c end-b FROM t1 WHERE c<17 ;SELECT case t1.e-d+b when coalesce((select (select max(t1.a | a | -(select (count(*))+( -count(*)) from t1)*19-f+t1.e) from t1) from t1 where not exists(select 1 from t1 where (d not between a and 11) or not d>=11 and exists(select 1 from t1 where not t1.a<>13)) or 19 not in (17,t1.c,t1.c)),19)*t1.c+d then b else c end-b FROM t1 WHERE NOT (c<17) ;SELECT case t1.e-d+b when coalesce((select (select max(t1.a & a & -(select (count(*))+( -count(*)) from t1)*19-f+t1.e) from t1) from t1 where not exists(select 1 from t1 where (d not between a and 11) or not d>=11 and exists(select 1 from t1 where not t1.a<>13)) or 19 not in (17,t1.c,t1.c)),19)*t1.c+d then b else c end-b FROM t1 WHERE NOT (c<17) ;SELECT f*f*(abs(case when (17-coalesce((select max(11) from t1 where coalesce((select max(t1.c-11*t1.a) from t1 where +e=(abs(d)/abs(11))+ -13),t1.b)<b and exists(select 1 from t1 where t1.f between d and -t1.c)),19)-19 in (select max(t1.e) | min(t1.e) from t1 union select count(*) from t1) and 17>t1.e) then e else 17 end)/abs(c)) FROM t1 WHERE (t1.a in ((t1.f-t1.c)+b,11,t1.a+f)) ;SELECT f*f*(abs(case when (17-coalesce((select max(11) from t1 where coalesce((select max(t1.c-11*t1.a) from t1 where +e=(abs(d)/abs(11))+ -13),t1.b)<b and exists(select 1 from t1 where t1.f between d and -t1.c)),19)-19 in (select max(t1.e) | min(t1.e) from t1 union select count(*) from t1) and 17>t1.e) then e else 17 end)/abs(c)) FROM t1 WHERE NOT ((t1.a in ((t1.f-t1.c)+b,11,t1.a+f))) ;SELECT f*f*(abs(case when (17-coalesce((select max(11) from t1 where coalesce((select max(t1.c-11*t1.a) from t1 where +e=(abs(d)/abs(11))+ -13),t1.b)<b and exists(select 1 from t1 where t1.f between d and -t1.c)),19)-19 in (select max(t1.e) & min(t1.e) from t1 union select count(*) from t1) and 17>t1.e) then e else 17 end)/abs(c)) FROM t1 WHERE NOT ((t1.a in ((t1.f-t1.c)+b,11,t1.a+f))) ;SELECT ( -19-f+coalesce((select max( -~case when case 11 when ~coalesce((select max(13) from t1 where not (e)<>(t1.c)),19)+11 | -19-f then -13 else t1.c end-e<=t1.a then 11 when not exists(select 1 from t1 where (not t1.c<19) and not (13<>17)) then -e else f end) from t1 where (b)<=t1.e),t1.d)-t1.c) | b FROM t1 WHERE (~(select (max(f)-count(distinct c)) from t1) | case when e>=t1.c then t1.b+(select abs(count(*)+max(c)*abs(count(distinct e)+max(t1.f))+cast(avg(c) AS integer)) | cast(avg(t1.d) AS integer)*min(11) from t1)-t1.c else c end in (select case -t1.b when 17 then 17 else -case when not t1.c not in (17,t1.d,17) then 19 else a end end from t1 union select a from t1)) or (11)<=t1.b ;SELECT ( -19-f+coalesce((select max( -~case when case 11 when ~coalesce((select max(13) from t1 where not (e)<>(t1.c)),19)+11 | -19-f then -13 else t1.c end-e<=t1.a then 11 when not exists(select 1 from t1 where (not t1.c<19) and not (13<>17)) then -e else f end) from t1 where (b)<=t1.e),t1.d)-t1.c) | b FROM t1 WHERE NOT ((~(select (max(f)-count(distinct c)) from t1) | case when e>=t1.c then t1.b+(select abs(count(*)+max(c)*abs(count(distinct e)+max(t1.f))+cast(avg(c) AS integer)) | cast(avg(t1.d) AS integer)*min(11) from t1)-t1.c else c end in (select case -t1.b when 17 then 17 else -case when not t1.c not in (17,t1.d,17) then 19 else a end end from t1 union select a from t1)) or (11)<=t1.b) ;SELECT ( -19-f+coalesce((select max( -~case when case 11 when ~coalesce((select max(13) from t1 where not (e)<>(t1.c)),19)+11 & -19-f then -13 else t1.c end-e<=t1.a then 11 when not exists(select 1 from t1 where (not t1.c<19) and not (13<>17)) then -e else f end) from t1 where (b)<=t1.e),t1.d)-t1.c) & b FROM t1 WHERE (~(select (max(f)-count(distinct c)) from t1) | case when e>=t1.c then t1.b+(select abs(count(*)+max(c)*abs(count(distinct e)+max(t1.f))+cast(avg(c) AS integer)) | cast(avg(t1.d) AS integer)*min(11) from t1)-t1.c else c end in (select case -t1.b when 17 then 17 else -case when not t1.c not in (17,t1.d,17) then 19 else a end end from t1 union select a from t1)) or (11)<=t1.b ;SELECT +case when (not exists(select 1 from t1 where (abs(t1.a+coalesce((select max(b-case when e=t1.f then (abs(d)/abs(t1.e)) when not exists(select 1 from t1 where 17<t1.c) then d else f end | -(t1.e) | 13*e) from t1 where f in (select t1.e from t1 union select t1.f from t1)),d) | 11)/abs(t1.b))-b not between b and t1.d) and t1.d>t1.c) then e else e end FROM t1 WHERE not t1.d-d+case b when t1.a+t1.a then t1.f-t1.e else 11+b*coalesce((select max(t1.f) from t1 where 11>= -f+t1.d),t1.c)*19 end not between d and t1.c-(11)+17 ;SELECT +case when (not exists(select 1 from t1 where (abs(t1.a+coalesce((select max(b-case when e=t1.f then (abs(d)/abs(t1.e)) when not exists(select 1 from t1 where 17<t1.c) then d else f end | -(t1.e) | 13*e) from t1 where f in (select t1.e from t1 union select t1.f from t1)),d) | 11)/abs(t1.b))-b not between b and t1.d) and t1.d>t1.c) then e else e end FROM t1 WHERE NOT (not t1.d-d+case b when t1.a+t1.a then t1.f-t1.e else 11+b*coalesce((select max(t1.f) from t1 where 11>= -f+t1.d),t1.c)*19 end not between d and t1.c-(11)+17) ;SELECT +case when (not exists(select 1 from t1 where (abs(t1.a+coalesce((select max(b-case when e=t1.f then (abs(d)/abs(t1.e)) when not exists(select 1 from t1 where 17<t1.c) then d else f end & -(t1.e) & 13*e) from t1 where f in (select t1.e from t1 union select t1.f from t1)),d) & 11)/abs(t1.b))-b not between b and t1.d) and t1.d>t1.c) then e else e end FROM t1 WHERE NOT (not t1.d-d+case b when t1.a+t1.a then t1.f-t1.e else 11+b*coalesce((select max(t1.f) from t1 where 11>= -f+t1.d),t1.c)*19 end not between d and t1.c-(11)+17) ;SELECT t1.d+case when (t1.a)<=11 then ~t1.a else ~19 end-~ -coalesce((select t1.d from t1 where ~t1.f in (select (cast(avg(t1.e+c) AS integer)) from t1 union select count(distinct (abs(coalesce((select max(19) from t1 where not ~11-t1.a=t1.c+case when t1.d between c and t1.d then 11 when t1.f>=17 then f else 19 end*t1.c),17)+f)/abs(f))) from t1)),11) FROM t1 WHERE e>c ;SELECT t1.d+case when (t1.a)<=11 then ~t1.a else ~19 end-~ -coalesce((select t1.d from t1 where ~t1.f in (select (cast(avg(t1.e+c) AS integer)) from t1 union select count(distinct (abs(coalesce((select max(19) from t1 where not ~11-t1.a=t1.c+case when t1.d between c and t1.d then 11 when t1.f>=17 then f else 19 end*t1.c),17)+f)/abs(f))) from t1)),11) FROM t1 WHERE NOT (e>c) ;SELECT case when coalesce((select max(case b | d*(abs(t1.e)/abs(a))-f | t1.b when t1.e then coalesce((select max(t1.e) from t1 where t1.e between (select ~count(*)*cast(avg(19) AS integer) from t1) and case c when a then 13 else a end),t1.f)+e*c else t1.d end) from t1 where t1.a in (select t1.d from t1 union select 17 from t1)),e)+17<19 then t1.a else 19 end | 11+e-17*19 FROM t1 WHERE d*t1.c-case when case when ((13 in (17+e,b,11)) or 19>(13)) then (abs(coalesce((select t1.a from t1 where t1.a not in (13,c,t1.f)),11))/abs(t1.e))-f when t1.b not between t1.b and f then t1.d else t1.a end in (a,e,t1.d) then t1.f else t1.f end+f+t1.e in (t1.d,e,b) ;SELECT case when coalesce((select max(case b | d*(abs(t1.e)/abs(a))-f | t1.b when t1.e then coalesce((select max(t1.e) from t1 where t1.e between (select ~count(*)*cast(avg(19) AS integer) from t1) and case c when a then 13 else a end),t1.f)+e*c else t1.d end) from t1 where t1.a in (select t1.d from t1 union select 17 from t1)),e)+17<19 then t1.a else 19 end | 11+e-17*19 FROM t1 WHERE NOT (d*t1.c-case when case when ((13 in (17+e,b,11)) or 19>(13)) then (abs(coalesce((select t1.a from t1 where t1.a not in (13,c,t1.f)),11))/abs(t1.e))-f when t1.b not between t1.b and f then t1.d else t1.a end in (a,e,t1.d) then t1.f else t1.f end+f+t1.e in (t1.d,e,b)) ;SELECT case when coalesce((select max(case b & d*(abs(t1.e)/abs(a))-f & t1.b when t1.e then coalesce((select max(t1.e) from t1 where t1.e between (select ~count(*)*cast(avg(19) AS integer) from t1) and case c when a then 13 else a end),t1.f)+e*c else t1.d end) from t1 where t1.a in (select t1.d from t1 union select 17 from t1)),e)+17<19 then t1.a else 19 end & 11+e-17*19 FROM t1 WHERE NOT (d*t1.c-case when case when ((13 in (17+e,b,11)) or 19>(13)) then (abs(coalesce((select t1.a from t1 where t1.a not in (13,c,t1.f)),11))/abs(t1.e))-f when t1.b not between t1.b and f then t1.d else t1.a end in (a,e,t1.d) then t1.f else t1.f end+f+t1.e in (t1.d,e,b)) ;SELECT ((select (count(*) | +~(case +(min(t1.f+17+(11-case when b between d and d and t1.a not in (13,c,t1.c) and e< -t1.b then 17+(11) else t1.e end-b))) when case min(e) when min( -13) | ~max(t1.f) then count(distinct t1.f) | ~count(distinct t1.d) else count(*) end then min(t1.c) else -cast(avg(11) AS integer) end)+count(distinct (f))) from t1)+e) FROM t1 WHERE (a in (11*a-t1.a | t1.b+e*13,(f | a | (select min((select min(13)-min(17)*((count(distinct t1.d))) from t1)) from t1)+t1.a- -11)+(11),t1.c) and (a) between t1.d and t1.f or t1.d not between t1.c and f or d not in (t1.c,t1.f,c)) ;SELECT ((select (count(*) | +~(case +(min(t1.f+17+(11-case when b between d and d and t1.a not in (13,c,t1.c) and e< -t1.b then 17+(11) else t1.e end-b))) when case min(e) when min( -13) | ~max(t1.f) then count(distinct t1.f) | ~count(distinct t1.d) else count(*) end then min(t1.c) else -cast(avg(11) AS integer) end)+count(distinct (f))) from t1)+e) FROM t1 WHERE NOT ((a in (11*a-t1.a | t1.b+e*13,(f | a | (select min((select min(13)-min(17)*((count(distinct t1.d))) from t1)) from t1)+t1.a- -11)+(11),t1.c) and (a) between t1.d and t1.f or t1.d not between t1.c and f or d not in (t1.c,t1.f,c))) ;SELECT ((select (count(*) & +~(case +(min(t1.f+17+(11-case when b between d and d and t1.a not in (13,c,t1.c) and e< -t1.b then 17+(11) else t1.e end-b))) when case min(e) when min( -13) & ~max(t1.f) then count(distinct t1.f) & ~count(distinct t1.d) else count(*) end then min(t1.c) else -cast(avg(11) AS integer) end)+count(distinct (f))) from t1)+e) FROM t1 WHERE (a in (11*a-t1.a | t1.b+e*13,(f | a | (select min((select min(13)-min(17)*((count(distinct t1.d))) from t1)) from t1)+t1.a- -11)+(11),t1.c) and (a) between t1.d and t1.f or t1.d not between t1.c and f or d not in (t1.c,t1.f,c)) ;SELECT coalesce((select max(13) from t1 where d in (select (max(19)*count(distinct case when t1.f between ~e and -b-t1.f then b else d end)-count(distinct f)) from t1 union select cast(avg(case e when case t1.b when -a | t1.e*19 then t1.a else -t1.c end then -d else t1.e end) AS integer) from t1)),case when t1.d in (select t1.e from t1 union select b from t1) then t1.f when t1.f between 13 and f then f else f end) FROM t1 WHERE c in (select (t1.a) from t1 union select e from t1) ;SELECT coalesce((select max(13) from t1 where d in (select (max(19)*count(distinct case when t1.f between ~e and -b-t1.f then b else d end)-count(distinct f)) from t1 union select cast(avg(case e when case t1.b when -a | t1.e*19 then t1.a else -t1.c end then -d else t1.e end) AS integer) from t1)),case when t1.d in (select t1.e from t1 union select b from t1) then t1.f when t1.f between 13 and f then f else f end) FROM t1 WHERE NOT (c in (select (t1.a) from t1 union select e from t1)) ;SELECT coalesce((select max(13) from t1 where d in (select (max(19)*count(distinct case when t1.f between ~e and -b-t1.f then b else d end)-count(distinct f)) from t1 union select cast(avg(case e when case t1.b when -a & t1.e*19 then t1.a else -t1.c end then -d else t1.e end) AS integer) from t1)),case when t1.d in (select t1.e from t1 union select b from t1) then t1.f when t1.f between 13 and f then f else f end) FROM t1 WHERE NOT (c in (select (t1.a) from t1 union select e from t1)) ;SELECT (abs(t1.d+b)/abs(~t1.f+case when t1.f=t1.c or exists(select 1 from t1 where c>=+~t1.c*17) or exists(select 1 from t1 where (select -cast(avg(case when 19<>t1.f then -c when c<>b then t1.e else t1.d end) AS integer) from t1) in (d-t1.f,b,19)) then d+b when 11<b then t1.c else d end* -t1.a-19)) FROM t1 WHERE t1.a-(select cast(avg(a) AS integer) from t1) in (select t1.c from t1 union select 19 from t1) and not exists(select 1 from t1 where coalesce((select max(11) from t1 where case when not d>(19) then c else -case when 11>b or t1.c<=c then f when t1.f>t1.a then t1.a else t1.e end*d-11 end+d*t1.b>t1.e),d)>t1.b and c<>d and not exists(select 1 from t1 where 17>=(t1.f)) and t1.e not in (f,t1.b,t1.b)) ;SELECT (abs(t1.d+b)/abs(~t1.f+case when t1.f=t1.c or exists(select 1 from t1 where c>=+~t1.c*17) or exists(select 1 from t1 where (select -cast(avg(case when 19<>t1.f then -c when c<>b then t1.e else t1.d end) AS integer) from t1) in (d-t1.f,b,19)) then d+b when 11<b then t1.c else d end* -t1.a-19)) FROM t1 WHERE NOT (t1.a-(select cast(avg(a) AS integer) from t1) in (select t1.c from t1 union select 19 from t1) and not exists(select 1 from t1 where coalesce((select max(11) from t1 where case when not d>(19) then c else -case when 11>b or t1.c<=c then f when t1.f>t1.a then t1.a else t1.e end*d-11 end+d*t1.b>t1.e),d)>t1.b and c<>d and not exists(select 1 from t1 where 17>=(t1.f)) and t1.e not in (f,t1.b,t1.b))) ;SELECT t1.b-~case when +a in (select ~min(11) from t1 union select -count(*)+count(distinct ~coalesce((select coalesce((select t1.b-19+c from t1 where a<>13 or 13 in (t1.b,d,t1.e)),11) from t1 where 19 in (19,e,17)),e)) from t1) then (select -min(19)+cast(avg(t1.d) AS integer) from t1) else d end | 17 | t1.e FROM t1 WHERE c-b+e*11+(c+13+11)+(13)+(select cast(avg((abs(e-d+a)/abs(t1.f))) AS integer) from t1)-t1.d+~13<=t1.e-c-17 ;SELECT t1.b-~case when +a in (select ~min(11) from t1 union select -count(*)+count(distinct ~coalesce((select coalesce((select t1.b-19+c from t1 where a<>13 or 13 in (t1.b,d,t1.e)),11) from t1 where 19 in (19,e,17)),e)) from t1) then (select -min(19)+cast(avg(t1.d) AS integer) from t1) else d end | 17 | t1.e FROM t1 WHERE NOT (c-b+e*11+(c+13+11)+(13)+(select cast(avg((abs(e-d+a)/abs(t1.f))) AS integer) from t1)-t1.d+~13<=t1.e-c-17) ;SELECT t1.b-~case when +a in (select ~min(11) from t1 union select -count(*)+count(distinct ~coalesce((select coalesce((select t1.b-19+c from t1 where a<>13 or 13 in (t1.b,d,t1.e)),11) from t1 where 19 in (19,e,17)),e)) from t1) then (select -min(19)+cast(avg(t1.d) AS integer) from t1) else d end & 17 & t1.e FROM t1 WHERE NOT (c-b+e*11+(c+13+11)+(13)+(select cast(avg((abs(e-d+a)/abs(t1.f))) AS integer) from t1)-t1.d+~13<=t1.e-c-17) ;SELECT coalesce((select max(b) from t1 where t1.e<t1.b-11*case when ( -c*case d when case +t1.c+t1.b when ~11*(select count(distinct d) from t1) then a else t1.d end then t1.b else (abs((select max(+coalesce((select (t1.d) from t1 where 19 not between t1.b and t1.a and t1.d between 19 and -13),t1.a)) from t1))/abs(f)) end)<>t1.e then 17 when 19 not between 11 and b then t1.e else 19 end*t1.c),t1.c) FROM t1 WHERE not t1.f*(abs(case when ~19-17*e>=t1.d then t1.b when (select cast(avg(t1.e) AS integer) from t1) in ((abs(t1.e)/abs(t1.e))-case when f not in (t1.d,13,c) then c else t1.e end-t1.b-t1.a | b-(t1.c), -a,e) then t1.e else e end+a)/abs(t1.d)) | b not between b and t1.d ;SELECT coalesce((select max(b) from t1 where t1.e<t1.b-11*case when ( -c*case d when case +t1.c+t1.b when ~11*(select count(distinct d) from t1) then a else t1.d end then t1.b else (abs((select max(+coalesce((select (t1.d) from t1 where 19 not between t1.b and t1.a and t1.d between 19 and -13),t1.a)) from t1))/abs(f)) end)<>t1.e then 17 when 19 not between 11 and b then t1.e else 19 end*t1.c),t1.c) FROM t1 WHERE NOT (not t1.f*(abs(case when ~19-17*e>=t1.d then t1.b when (select cast(avg(t1.e) AS integer) from t1) in ((abs(t1.e)/abs(t1.e))-case when f not in (t1.d,13,c) then c else t1.e end-t1.b-t1.a | b-(t1.c), -a,e) then t1.e else e end+a)/abs(t1.d)) | b not between b and t1.d) ;SELECT -f+( -case when 13-b not between case when (a<>t1.f or case when not exists(select 1 from t1 where 11<>t1.a) then b when c<=t1.b then t1.f else 11 end in (select 17 from t1 union select t1.b from t1)) then b-c-b when t1.f=13 then a else 19 end | t1.d and t1.e and not exists(select 1 from t1 where 19=t1.f) then -c else 19 end+17) FROM t1 WHERE not not exists(select 1 from t1 where ~(select cast(avg(t1.d) AS integer) from t1) | +~~case case when f-case when exists(select 1 from t1 where 13 not in (d,11,case when not exists(select 1 from t1 where f between t1.d and e) then 13 when t1.e<>19 then f else 11 end) or b in ( -d,t1.c,17)) then b else f end-(t1.d) in (t1.c,t1.c,b) then t1.b else e end when 11 then t1.e else -c end-c<>t1.b) ;SELECT -f+( -case when 13-b not between case when (a<>t1.f or case when not exists(select 1 from t1 where 11<>t1.a) then b when c<=t1.b then t1.f else 11 end in (select 17 from t1 union select t1.b from t1)) then b-c-b when t1.f=13 then a else 19 end | t1.d and t1.e and not exists(select 1 from t1 where 19=t1.f) then -c else 19 end+17) FROM t1 WHERE NOT (not not exists(select 1 from t1 where ~(select cast(avg(t1.d) AS integer) from t1) | +~~case case when f-case when exists(select 1 from t1 where 13 not in (d,11,case when not exists(select 1 from t1 where f between t1.d and e) then 13 when t1.e<>19 then f else 11 end) or b in ( -d,t1.c,17)) then b else f end-(t1.d) in (t1.c,t1.c,b) then t1.b else e end when 11 then t1.e else -c end-c<>t1.b)) ;SELECT -f+( -case when 13-b not between case when (a<>t1.f or case when not exists(select 1 from t1 where 11<>t1.a) then b when c<=t1.b then t1.f else 11 end in (select 17 from t1 union select t1.b from t1)) then b-c-b when t1.f=13 then a else 19 end & t1.d and t1.e and not exists(select 1 from t1 where 19=t1.f) then -c else 19 end+17) FROM t1 WHERE not not exists(select 1 from t1 where ~(select cast(avg(t1.d) AS integer) from t1) | +~~case case when f-case when exists(select 1 from t1 where 13 not in (d,11,case when not exists(select 1 from t1 where f between t1.d and e) then 13 when t1.e<>19 then f else 11 end) or b in ( -d,t1.c,17)) then b else f end-(t1.d) in (t1.c,t1.c,b) then t1.b else e end when 11 then t1.e else -c end-c<>t1.b) ;SELECT +(abs(d+d+a+b+t1.d)/abs(coalesce((select (select abs(cast(avg(17-11+e*t1.d) AS integer)+cast(avg(coalesce((select max(11-t1.f-e-a* -19+t1.a) from t1 where -a in (select 11 from t1 union select -11 from t1)),e)) AS integer)) from t1) from t1 where f=17),t1.b)*a)) FROM t1 WHERE t1.b in (select t1.e from t1 union select coalesce((select max(11) from t1 where d<t1.f),f) from t1) ;SELECT +(abs(d+d+a+b+t1.d)/abs(coalesce((select (select abs(cast(avg(17-11+e*t1.d) AS integer)+cast(avg(coalesce((select max(11-t1.f-e-a* -19+t1.a) from t1 where -a in (select 11 from t1 union select -11 from t1)),e)) AS integer)) from t1) from t1 where f=17),t1.b)*a)) FROM t1 WHERE NOT (t1.b in (select t1.e from t1 union select coalesce((select max(11) from t1 where d<t1.f),f) from t1)) ;SELECT case when t1.b*t1.c=coalesce((select t1.f from t1 where case when exists(select 1 from t1 where t1.d in (select e from t1 union select 19 from t1)) or t1.e>t1.e then t1.a+e-a when 19>t1.c then c else t1.c end+c not between b and t1.d),t1.f) and -(t1.b) between t1.e and -t1.d or b<>19 then (select ~(min(13))+max(f) from t1) else (t1.b) end*t1.b FROM t1 WHERE b in (b,e,case coalesce((select max(t1.b) from t1 where e>13 or ( -(select case -~count(distinct 17)-cast(avg((t1.f)) AS integer)*cast(avg(d) AS integer) when -cast(avg(f) AS integer) then max(17) else -(count(*)) end from t1)-(coalesce((select (b) from t1 where t1.b>=t1.e),t1.c)) in (17,t1.e,b)) or (exists(select 1 from t1 where (t1.d=(d))))),t1.c) when b then c else (e) end) ;SELECT case when t1.b*t1.c=coalesce((select t1.f from t1 where case when exists(select 1 from t1 where t1.d in (select e from t1 union select 19 from t1)) or t1.e>t1.e then t1.a+e-a when 19>t1.c then c else t1.c end+c not between b and t1.d),t1.f) and -(t1.b) between t1.e and -t1.d or b<>19 then (select ~(min(13))+max(f) from t1) else (t1.b) end*t1.b FROM t1 WHERE NOT (b in (b,e,case coalesce((select max(t1.b) from t1 where e>13 or ( -(select case -~count(distinct 17)-cast(avg((t1.f)) AS integer)*cast(avg(d) AS integer) when -cast(avg(f) AS integer) then max(17) else -(count(*)) end from t1)-(coalesce((select (b) from t1 where t1.b>=t1.e),t1.c)) in (17,t1.e,b)) or (exists(select 1 from t1 where (t1.d=(d))))),t1.c) when b then c else (e) end)) ;SELECT +t1.c+case when t1.e not in ((e)-(case when 17<11 then 19 when (t1.d in (d,coalesce((select max(t1.a) from t1 where not b<>t1.b),case t1.b when coalesce((select max(t1.a) from t1 where exists(select 1 from t1 where e not in (t1.f,11,17))),(19))*t1.f then c else t1.c end-t1.d)-t1.b+t1.e,d)) then 19 else b end)-e,t1.c, -13) then e else 17 end FROM t1 WHERE t1.e*t1.b | t1.b<>17*+coalesce((select max(t1.b) from t1 where case when coalesce((select max(b) from t1 where case when (b between 17 and d) then t1.f when t1.c between b and t1.a then t1.e else t1.a end not in (11,19,13)),11) in (t1.d,17,17) then t1.f when d<>13 then 11 else t1.a end+a<17),t1.a)-17+t1.f*d-a ;SELECT +t1.c+case when t1.e not in ((e)-(case when 17<11 then 19 when (t1.d in (d,coalesce((select max(t1.a) from t1 where not b<>t1.b),case t1.b when coalesce((select max(t1.a) from t1 where exists(select 1 from t1 where e not in (t1.f,11,17))),(19))*t1.f then c else t1.c end-t1.d)-t1.b+t1.e,d)) then 19 else b end)-e,t1.c, -13) then e else 17 end FROM t1 WHERE NOT (t1.e*t1.b | t1.b<>17*+coalesce((select max(t1.b) from t1 where case when coalesce((select max(b) from t1 where case when (b between 17 and d) then t1.f when t1.c between b and t1.a then t1.e else t1.a end not in (11,19,13)),11) in (t1.d,17,17) then t1.f when d<>13 then 11 else t1.a end+a<17),t1.a)-17+t1.f*d-a) ;SELECT 11+case when case case f when (abs(t1.a)/abs(19))+t1.e then (abs(19)/abs(b+e)) else 13 end | 11 when (select ~+min(t1.e) from t1) then t1.c else -e end<>case t1.a when 17 then case when (c not between 19 and t1.b) and t1.b<>t1.d then coalesce((select a from t1 where t1.d in (t1.e,t1.f,f)),t1.e) else 13 end else d end or t1.c<t1.d then t1.f else 17 end-f FROM t1 WHERE (f*c*coalesce((select e from t1 where (exists(select 1 from t1 where +t1.e<= -e | t1.f))),a)+b in (select t1.c from t1 union select c from t1) or (t1.e between b and (19)) and 13 between t1.e and 13 and 11 in (13,t1.c,17) and exists(select 1 from t1 where t1.d in (select count(*)-max(e)-((max((11)))) from t1 union select max(17) from t1)) and c>f) ;SELECT 11+case when case case f when (abs(t1.a)/abs(19))+t1.e then (abs(19)/abs(b+e)) else 13 end | 11 when (select ~+min(t1.e) from t1) then t1.c else -e end<>case t1.a when 17 then case when (c not between 19 and t1.b) and t1.b<>t1.d then coalesce((select a from t1 where t1.d in (t1.e,t1.f,f)),t1.e) else 13 end else d end or t1.c<t1.d then t1.f else 17 end-f FROM t1 WHERE NOT ((f*c*coalesce((select e from t1 where (exists(select 1 from t1 where +t1.e<= -e | t1.f))),a)+b in (select t1.c from t1 union select c from t1) or (t1.e between b and (19)) and 13 between t1.e and 13 and 11 in (13,t1.c,17) and exists(select 1 from t1 where t1.d in (select count(*)-max(e)-((max((11)))) from t1 union select max(17) from t1)) and c>f)) ;SELECT 11+case when case case f when (abs(t1.a)/abs(19))+t1.e then (abs(19)/abs(b+e)) else 13 end & 11 when (select ~+min(t1.e) from t1) then t1.c else -e end<>case t1.a when 17 then case when (c not between 19 and t1.b) and t1.b<>t1.d then coalesce((select a from t1 where t1.d in (t1.e,t1.f,f)),t1.e) else 13 end else d end or t1.c<t1.d then t1.f else 17 end-f FROM t1 WHERE NOT ((f*c*coalesce((select e from t1 where (exists(select 1 from t1 where +t1.e<= -e | t1.f))),a)+b in (select t1.c from t1 union select c from t1) or (t1.e between b and (19)) and 13 between t1.e and 13 and 11 in (13,t1.c,17) and exists(select 1 from t1 where t1.d in (select count(*)-max(e)-((max((11)))) from t1 union select max(17) from t1)) and c>f)) ;SELECT d-case when ~c<>case when not exists(select 1 from t1 where -t1.b<>19) then coalesce((select max(t1.f) from t1 where exists(select 1 from t1 where (t1.c in (select ~+~max(~case when 13 not between t1.d and t1.d or c between c and f then t1.f else t1.a end)*abs(count(*)+(min( -t1.e))) from t1 union select cast(avg(e) AS integer) from t1) and (abs(t1.f*f-t1.a)/abs(d))>t1.b)) and (17) not in ( -t1.f,13,17)),19) else a end then b else f end FROM t1 WHERE f=(select case ~~count(distinct t1.b)+count(distinct d) | -count(distinct t1.e)*count(*)* -cast(avg(b) AS integer)*(cast(avg(13) AS integer)) when -min(19) then min(t1.e) else ((cast(avg(17) AS integer))) end from t1) or 19>=(19) and not exists(select 1 from t1 where (select count(*) from t1)*t1.d not between 19+11 and d) and -t1.e not in (e,t1.a, -a) and t1.e between t1.f and (t1.b) or c in ( -11,17,t1.c) or t1.a in (a,11,t1.d) ;SELECT d-case when ~c<>case when not exists(select 1 from t1 where -t1.b<>19) then coalesce((select max(t1.f) from t1 where exists(select 1 from t1 where (t1.c in (select ~+~max(~case when 13 not between t1.d and t1.d or c between c and f then t1.f else t1.a end)*abs(count(*)+(min( -t1.e))) from t1 union select cast(avg(e) AS integer) from t1) and (abs(t1.f*f-t1.a)/abs(d))>t1.b)) and (17) not in ( -t1.f,13,17)),19) else a end then b else f end FROM t1 WHERE NOT (f=(select case ~~count(distinct t1.b)+count(distinct d) | -count(distinct t1.e)*count(*)* -cast(avg(b) AS integer)*(cast(avg(13) AS integer)) when -min(19) then min(t1.e) else ((cast(avg(17) AS integer))) end from t1) or 19>=(19) and not exists(select 1 from t1 where (select count(*) from t1)*t1.d not between 19+11 and d) and -t1.e not in (e,t1.a, -a) and t1.e between t1.f and (t1.b) or c in ( -11,17,t1.c) or t1.a in (a,11,t1.d)) ;SELECT case when a in (select t1.b from t1 union select coalesce((select ~19 from t1 where e>13*t1.d or c in (select b from t1 union select case a*t1.f when e then (t1.c) else (t1.b) end from t1)),t1.a) from t1) and t1.d>b or not exists(select 1 from t1 where t1.e in (select count(*)*min(t1.b)*~count(*) from t1 union select case -min((19)) when -max(b) then (min(t1.a)) else (count(distinct t1.d)) end from t1)) then (t1.c) when exists(select 1 from t1 where f not between 19 and f) then 19 else t1.c end-a FROM t1 WHERE a=coalesce((select f from t1 where t1.c in (11,(abs(coalesce((select max(t1.d) from t1 where (abs(t1.c | 13)/abs(11)) not in (b+case when coalesce((select max(b) from t1 where 11 between d and t1.a),b)<a then 19 when (e) not in (t1.e,13,t1.d) then t1.c else -t1.e end-19,a,17)),19))/abs(t1.a)),t1.b) or (((13)>=t1.b))),c) and f between 19 and t1.d or c>(f) ;SELECT case when a in (select t1.b from t1 union select coalesce((select ~19 from t1 where e>13*t1.d or c in (select b from t1 union select case a*t1.f when e then (t1.c) else (t1.b) end from t1)),t1.a) from t1) and t1.d>b or not exists(select 1 from t1 where t1.e in (select count(*)*min(t1.b)*~count(*) from t1 union select case -min((19)) when -max(b) then (min(t1.a)) else (count(distinct t1.d)) end from t1)) then (t1.c) when exists(select 1 from t1 where f not between 19 and f) then 19 else t1.c end-a FROM t1 WHERE NOT (a=coalesce((select f from t1 where t1.c in (11,(abs(coalesce((select max(t1.d) from t1 where (abs(t1.c | 13)/abs(11)) not in (b+case when coalesce((select max(b) from t1 where 11 between d and t1.a),b)<a then 19 when (e) not in (t1.e,13,t1.d) then t1.c else -t1.e end-19,a,17)),19))/abs(t1.a)),t1.b) or (((13)>=t1.b))),c) and f between 19 and t1.d or c>(f)) ;SELECT case when -(t1.f)-case when t1.e not in ((t1.d)+a-t1.a,t1.c, -a) then t1.b when (not exists(select 1 from t1 where t1.d>= -t1.f)) then -19 else f end-t1.f in (select cast(avg(19) AS integer)*case count(*) when abs((+min( -11))*max(13)-count(distinct 13)) then min(t1.a) else count(distinct 17) end from t1 union select count(distinct t1.a) from t1) then t1.c when b not between t1.f and 13 then e else t1.a end FROM t1 WHERE 11 not between ~17+d and ~case when t1.b in (c*((abs(case 13 when -(select abs(count(distinct coalesce((select max(coalesce((select t1.b from t1 where not exists(select 1 from t1 where (t1.c) in (t1.a,e,13))),t1.d)) from t1 where not t1.d>c),b))) from t1) then t1.f else t1.b end-t1.c)/abs(c))+a),t1.d,t1.a) then (t1.c) else (d) end-13 or -t1.a in (17,a,f) ;SELECT case when -(t1.f)-case when t1.e not in ((t1.d)+a-t1.a,t1.c, -a) then t1.b when (not exists(select 1 from t1 where t1.d>= -t1.f)) then -19 else f end-t1.f in (select cast(avg(19) AS integer)*case count(*) when abs((+min( -11))*max(13)-count(distinct 13)) then min(t1.a) else count(distinct 17) end from t1 union select count(distinct t1.a) from t1) then t1.c when b not between t1.f and 13 then e else t1.a end FROM t1 WHERE NOT (11 not between ~17+d and ~case when t1.b in (c*((abs(case 13 when -(select abs(count(distinct coalesce((select max(coalesce((select t1.b from t1 where not exists(select 1 from t1 where (t1.c) in (t1.a,e,13))),t1.d)) from t1 where not t1.d>c),b))) from t1) then t1.f else t1.b end-t1.c)/abs(c))+a),t1.d,t1.a) then (t1.c) else (d) end-13 or -t1.a in (17,a,f)) ;SELECT coalesce((select 17 from t1 where not exists(select 1 from t1 where (t1.b-b+(select +case max(b)-~count(distinct e*(select case max(c) when abs((count(*))) then max(t1.f) else max(t1.c) end+cast(avg(t1.b) AS integer) from t1)) when abs(count(distinct e*19)) then max(b) else max(t1.c) end | count(distinct t1.e) from t1)-b*+t1.b not in ((11),17,13)))),t1.e) FROM t1 WHERE t1.c in (select min(coalesce((select 17 from t1 where t1.c | 17>=(abs(t1.a)/abs(case when t1.e not in (19,t1.d,19) then a when 13<=case when not exists(select 1 from t1 where (abs(e)/abs(t1.c)) in (select 19 from t1 union select d from t1) and t1.c>=17 or 19=t1.a) then f else a end then t1.d else e end))-f),e))*min(f) | +min(a) from t1 union select cast(avg(f) AS integer) from t1) ;SELECT coalesce((select 17 from t1 where not exists(select 1 from t1 where (t1.b-b+(select +case max(b)-~count(distinct e*(select case max(c) when abs((count(*))) then max(t1.f) else max(t1.c) end+cast(avg(t1.b) AS integer) from t1)) when abs(count(distinct e*19)) then max(b) else max(t1.c) end | count(distinct t1.e) from t1)-b*+t1.b not in ((11),17,13)))),t1.e) FROM t1 WHERE NOT (t1.c in (select min(coalesce((select 17 from t1 where t1.c | 17>=(abs(t1.a)/abs(case when t1.e not in (19,t1.d,19) then a when 13<=case when not exists(select 1 from t1 where (abs(e)/abs(t1.c)) in (select 19 from t1 union select d from t1) and t1.c>=17 or 19=t1.a) then f else a end then t1.d else e end))-f),e))*min(f) | +min(a) from t1 union select cast(avg(f) AS integer) from t1)) ;SELECT coalesce((select 17 from t1 where not exists(select 1 from t1 where (t1.b-b+(select +case max(b)-~count(distinct e*(select case max(c) when abs((count(*))) then max(t1.f) else max(t1.c) end+cast(avg(t1.b) AS integer) from t1)) when abs(count(distinct e*19)) then max(b) else max(t1.c) end & count(distinct t1.e) from t1)-b*+t1.b not in ((11),17,13)))),t1.e) FROM t1 WHERE NOT (t1.c in (select min(coalesce((select 17 from t1 where t1.c | 17>=(abs(t1.a)/abs(case when t1.e not in (19,t1.d,19) then a when 13<=case when not exists(select 1 from t1 where (abs(e)/abs(t1.c)) in (select 19 from t1 union select d from t1) and t1.c>=17 or 19=t1.a) then f else a end then t1.d else e end))-f),e))*min(f) | +min(a) from t1 union select cast(avg(f) AS integer) from t1)) ;SELECT case coalesce((select t1.e from t1 where +coalesce((select a from t1 where 13 | b | t1.b<=11*a*case when exists(select 1 from t1 where (a-t1.d+t1.e-f<17 and -17 between 19 and a)) then c when 17 between f and t1.c then a*11 else t1.d end),t1.e) not in (b,t1.f,t1.d)),a) when c then -c else t1.b end FROM t1 WHERE (exists(select 1 from t1 where case when not exists(select 1 from t1 where (select cast(avg(d) AS integer) from t1) in (select a from t1 union select case case when t1.e>t1.d or t1.b in (select c from t1 union select e from t1) or t1.a>=f and b>=11 then t1.c-(t1.c)*19 when b not in (e,c,t1.d) then t1.b else t1.c end when 13 then f else -t1.f end from t1)) then 17 when not exists(select 1 from t1 where not exists(select 1 from t1 where f not in (t1.d,f, -t1.b)) or -19<=t1.c) or t1.e between 13 and t1.a then f else d end<>t1.f) and f between 11 and t1.c and t1.e not in (t1.d,c,t1.e)) or d not between t1.b and t1.d ;SELECT case coalesce((select t1.e from t1 where +coalesce((select a from t1 where 13 | b | t1.b<=11*a*case when exists(select 1 from t1 where (a-t1.d+t1.e-f<17 and -17 between 19 and a)) then c when 17 between f and t1.c then a*11 else t1.d end),t1.e) not in (b,t1.f,t1.d)),a) when c then -c else t1.b end FROM t1 WHERE NOT ((exists(select 1 from t1 where case when not exists(select 1 from t1 where (select cast(avg(d) AS integer) from t1) in (select a from t1 union select case case when t1.e>t1.d or t1.b in (select c from t1 union select e from t1) or t1.a>=f and b>=11 then t1.c-(t1.c)*19 when b not in (e,c,t1.d) then t1.b else t1.c end when 13 then f else -t1.f end from t1)) then 17 when not exists(select 1 from t1 where not exists(select 1 from t1 where f not in (t1.d,f, -t1.b)) or -19<=t1.c) or t1.e between 13 and t1.a then f else d end<>t1.f) and f between 11 and t1.c and t1.e not in (t1.d,c,t1.e)) or d not between t1.b and t1.d) ;SELECT case coalesce((select t1.e from t1 where +coalesce((select a from t1 where 13 & b & t1.b<=11*a*case when exists(select 1 from t1 where (a-t1.d+t1.e-f<17 and -17 between 19 and a)) then c when 17 between f and t1.c then a*11 else t1.d end),t1.e) not in (b,t1.f,t1.d)),a) when c then -c else t1.b end FROM t1 WHERE NOT ((exists(select 1 from t1 where case when not exists(select 1 from t1 where (select cast(avg(d) AS integer) from t1) in (select a from t1 union select case case when t1.e>t1.d or t1.b in (select c from t1 union select e from t1) or t1.a>=f and b>=11 then t1.c-(t1.c)*19 when b not in (e,c,t1.d) then t1.b else t1.c end when 13 then f else -t1.f end from t1)) then 17 when not exists(select 1 from t1 where not exists(select 1 from t1 where f not in (t1.d,f, -t1.b)) or -19<=t1.c) or t1.e between 13 and t1.a then f else d end<>t1.f) and f between 11 and t1.c and t1.e not in (t1.d,c,t1.e)) or d not between t1.b and t1.d) ;SELECT case when exists(select 1 from t1 where b<>coalesce((select (select -count(*)-~count(*)+~+case -count(distinct (t1.d)) when max(t1.d) then count(*) else max(a) end+(cast(avg(17) AS integer)) from t1) | d from t1 where not exists(select 1 from t1 where (abs(f)/abs(t1.c)) between 13+a and -t1.d)),19) or (coalesce((select t1.d from t1 where (( - -19)>a)),t1.f) in (e,e,t1.e))) then t1.b*t1.f when t1.d not between (a) and a then e else b end FROM t1 WHERE not exists(select 1 from t1 where a in (select 13 from t1 union select 17 from t1)) ;SELECT case when exists(select 1 from t1 where b<>coalesce((select (select -count(*)-~count(*)+~+case -count(distinct (t1.d)) when max(t1.d) then count(*) else max(a) end+(cast(avg(17) AS integer)) from t1) | d from t1 where not exists(select 1 from t1 where (abs(f)/abs(t1.c)) between 13+a and -t1.d)),19) or (coalesce((select t1.d from t1 where (( - -19)>a)),t1.f) in (e,e,t1.e))) then t1.b*t1.f when t1.d not between (a) and a then e else b end FROM t1 WHERE NOT (not exists(select 1 from t1 where a in (select 13 from t1 union select 17 from t1))) ;SELECT case when exists(select 1 from t1 where b<>coalesce((select (select -count(*)-~count(*)+~+case -count(distinct (t1.d)) when max(t1.d) then count(*) else max(a) end+(cast(avg(17) AS integer)) from t1) & d from t1 where not exists(select 1 from t1 where (abs(f)/abs(t1.c)) between 13+a and -t1.d)),19) or (coalesce((select t1.d from t1 where (( - -19)>a)),t1.f) in (e,e,t1.e))) then t1.b*t1.f when t1.d not between (a) and a then e else b end FROM t1 WHERE not exists(select 1 from t1 where a in (select 13 from t1 union select 17 from t1)) ;SELECT coalesce((select case when f>17-t1.f then (select +max(coalesce((select +11 from t1 where coalesce((select max(d) from t1 where +t1.c between (f) and c),t1.f) not in (c, -f,t1.e)),d)) from t1) else 17+19 end from t1 where not not exists(select 1 from t1 where t1.a in (select a from t1 union select t1.a from t1) and 17=d or (17)<=(( -19)) and t1.f in (select d from t1 union select 13 from t1) or 19>13 or t1.b not in (t1.b,17,d))), -(t1.c)) FROM t1 WHERE +t1.a-13+(select count(distinct a) from t1)-e*e*case when coalesce((select max(coalesce((select a from t1 where ((case b+t1.c-t1.c*d*17 when t1.a then t1.a else f end<>c))),t1.b+13)) from t1 where t1.f between 17 and t1.d),t1.c)<=(b) then f else t1.e end-13<>t1.f ;SELECT coalesce((select case when f>17-t1.f then (select +max(coalesce((select +11 from t1 where coalesce((select max(d) from t1 where +t1.c between (f) and c),t1.f) not in (c, -f,t1.e)),d)) from t1) else 17+19 end from t1 where not not exists(select 1 from t1 where t1.a in (select a from t1 union select t1.a from t1) and 17=d or (17)<=(( -19)) and t1.f in (select d from t1 union select 13 from t1) or 19>13 or t1.b not in (t1.b,17,d))), -(t1.c)) FROM t1 WHERE NOT (+t1.a-13+(select count(distinct a) from t1)-e*e*case when coalesce((select max(coalesce((select a from t1 where ((case b+t1.c-t1.c*d*17 when t1.a then t1.a else f end<>c))),t1.b+13)) from t1 where t1.f between 17 and t1.d),t1.c)<=(b) then f else t1.e end-13<>t1.f) ;SELECT coalesce((select 13 from t1 where ~(select max(b) from t1)<= -d*f+t1.b*f or coalesce((select max(case when d=(abs(19)/abs(t1.f)) then case b+d when (abs(coalesce((select 11 from t1 where t1.f between -d and c),t1.f))/abs(t1.a)) then b else t1.d end when a<t1.d then 13 else 11 end) from t1 where a not between t1.e and b),t1.d)>=t1.e),17)-c FROM t1 WHERE t1.b-(t1.b) in (select a from t1 union select 19 from t1) ;SELECT coalesce((select 13 from t1 where ~(select max(b) from t1)<= -d*f+t1.b*f or coalesce((select max(case when d=(abs(19)/abs(t1.f)) then case b+d when (abs(coalesce((select 11 from t1 where t1.f between -d and c),t1.f))/abs(t1.a)) then b else t1.d end when a<t1.d then 13 else 11 end) from t1 where a not between t1.e and b),t1.d)>=t1.e),17)-c FROM t1 WHERE NOT (t1.b-(t1.b) in (select a from t1 union select 19 from t1)) ;SELECT case when (abs((abs(d)/abs(t1.f-c)))/abs( -t1.f))*case when (t1.c not in (case when t1.b>case t1.d when t1.b then e else 11 end then t1.a when ( -t1.d in (select -count(*)-cast(avg(f) AS integer) from t1 union select count(*) from t1)) or 11 in (e,t1.e,c) then a else b end,t1.a,11) or t1.a in (17,t1.a,t1.d) and b>(t1.a)) then 11 when c<b then t1.f+t1.e else b end+t1.a>t1.b then t1.c else 17 end FROM t1 WHERE t1.b>f ;SELECT case when (abs((abs(d)/abs(t1.f-c)))/abs( -t1.f))*case when (t1.c not in (case when t1.b>case t1.d when t1.b then e else 11 end then t1.a when ( -t1.d in (select -count(*)-cast(avg(f) AS integer) from t1 union select count(*) from t1)) or 11 in (e,t1.e,c) then a else b end,t1.a,11) or t1.a in (17,t1.a,t1.d) and b>(t1.a)) then 11 when c<b then t1.f+t1.e else b end+t1.a>t1.b then t1.c else 17 end FROM t1 WHERE NOT (t1.b>f) ;SELECT t1.e-case when case when ((exists(select 1 from t1 where not exists(select 1 from t1 where case when not 13<=13 or (t1.c<>t1.e) then t1.d else +13 end+13 in (select max(13) | max((t1.b)) from t1 union select max(f) from t1))))) then t1.f else ~t1.e | t1.d*t1.b end+11 not between t1.c and 13 then b when (t1.f not in (19,t1.f,t1.d)) then c else -b end FROM t1 WHERE ( -(select -min(13-t1.b) from t1)-coalesce((select case when -d>=t1.e or 11 between 17 and -t1.e then 19+f when t1.f=11 then -t1.c else t1.b end from t1 where t1.a not in (11,t1.e,t1.a)),t1.c)*11 in (select -case abs((abs(min(t1.d)))) when max(19) then cast(avg(f) AS integer) else case count(*) when count(*) then (count(distinct t1.f)) else cast(avg(11) AS integer) end end from t1 union select min(d) from t1)) or b in (select (count(*)) from t1 union select max(t1.a) from t1) ;SELECT t1.e-case when case when ((exists(select 1 from t1 where not exists(select 1 from t1 where case when not 13<=13 or (t1.c<>t1.e) then t1.d else +13 end+13 in (select max(13) | max((t1.b)) from t1 union select max(f) from t1))))) then t1.f else ~t1.e | t1.d*t1.b end+11 not between t1.c and 13 then b when (t1.f not in (19,t1.f,t1.d)) then c else -b end FROM t1 WHERE NOT (( -(select -min(13-t1.b) from t1)-coalesce((select case when -d>=t1.e or 11 between 17 and -t1.e then 19+f when t1.f=11 then -t1.c else t1.b end from t1 where t1.a not in (11,t1.e,t1.a)),t1.c)*11 in (select -case abs((abs(min(t1.d)))) when max(19) then cast(avg(f) AS integer) else case count(*) when count(*) then (count(distinct t1.f)) else cast(avg(11) AS integer) end end from t1 union select min(d) from t1)) or b in (select (count(*)) from t1 union select max(t1.a) from t1)) ;SELECT t1.e-case when case when ((exists(select 1 from t1 where not exists(select 1 from t1 where case when not 13<=13 or (t1.c<>t1.e) then t1.d else +13 end+13 in (select max(13) & max((t1.b)) from t1 union select max(f) from t1))))) then t1.f else ~t1.e & t1.d*t1.b end+11 not between t1.c and 13 then b when (t1.f not in (19,t1.f,t1.d)) then c else -b end FROM t1 WHERE NOT (( -(select -min(13-t1.b) from t1)-coalesce((select case when -d>=t1.e or 11 between 17 and -t1.e then 19+f when t1.f=11 then -t1.c else t1.b end from t1 where t1.a not in (11,t1.e,t1.a)),t1.c)*11 in (select -case abs((abs(min(t1.d)))) when max(19) then cast(avg(f) AS integer) else case count(*) when count(*) then (count(distinct t1.f)) else cast(avg(11) AS integer) end end from t1 union select min(d) from t1)) or b in (select (count(*)) from t1 union select max(t1.a) from t1)) ;SELECT (coalesce((select c*(select +~count(distinct 19)-cast(avg(~c) AS integer)-max( -f)-cast(avg(t1.d) AS integer) from t1)+t1.a*t1.f+t1.e-a*b from t1 where not t1.e<t1.b or 11=d and 19<>d and 11<=t1.e and (not exists(select 1 from t1 where exists(select 1 from t1 where (13=a)) or t1.e>t1.b))),19)) FROM t1 WHERE coalesce((select max(t1.f*11) from t1 where not exists(select 1 from t1 where t1.a<>17) and t1.b>case (abs(b* -t1.a)/abs(11)) when b*case case when f>=t1.e then 11 when t1.b<=d then 17 else a end* -a when e then 11 else c end then (t1.b) else 19 end or t1.f<13), -b)>=e and ((d in (select f from t1 union select f from t1))) ;SELECT (coalesce((select c*(select +~count(distinct 19)-cast(avg(~c) AS integer)-max( -f)-cast(avg(t1.d) AS integer) from t1)+t1.a*t1.f+t1.e-a*b from t1 where not t1.e<t1.b or 11=d and 19<>d and 11<=t1.e and (not exists(select 1 from t1 where exists(select 1 from t1 where (13=a)) or t1.e>t1.b))),19)) FROM t1 WHERE NOT (coalesce((select max(t1.f*11) from t1 where not exists(select 1 from t1 where t1.a<>17) and t1.b>case (abs(b* -t1.a)/abs(11)) when b*case case when f>=t1.e then 11 when t1.b<=d then 17 else a end* -a when e then 11 else c end then (t1.b) else 19 end or t1.f<13), -b)>=e and ((d in (select f from t1 union select f from t1)))) ;SELECT b-b+case when d+e between 17 and case when exists(select 1 from t1 where coalesce((select max(coalesce((select 11 from t1 where t1.e not between 13 and case when t1.e<>c then c | 19+t1.a else 17 end),t1.a)) from t1 where t1.d<=17 or a not in (b,11,a)),(t1.b))+b>=t1.a) then 11 else a end then d else a end+11*f FROM t1 WHERE (t1.b*19<=17) ;SELECT b-b+case when d+e between 17 and case when exists(select 1 from t1 where coalesce((select max(coalesce((select 11 from t1 where t1.e not between 13 and case when t1.e<>c then c | 19+t1.a else 17 end),t1.a)) from t1 where t1.d<=17 or a not in (b,11,a)),(t1.b))+b>=t1.a) then 11 else a end then d else a end+11*f FROM t1 WHERE NOT ((t1.b*19<=17)) ;SELECT b-b+case when d+e between 17 and case when exists(select 1 from t1 where coalesce((select max(coalesce((select 11 from t1 where t1.e not between 13 and case when t1.e<>c then c & 19+t1.a else 17 end),t1.a)) from t1 where t1.d<=17 or a not in (b,11,a)),(t1.b))+b>=t1.a) then 11 else a end then d else a end+11*f FROM t1 WHERE NOT ((t1.b*19<=17)) ;SELECT +(abs(13)/abs(+~~case t1.e | +11-b-coalesce((select max(c) from t1 where 19 in (select cast(avg(coalesce((select max(case when t1.a<t1.d and t1.f<(11) then t1.f else -a end*t1.c) from t1 where e<=d and c<f),17)) AS integer)-max(t1.e)-count(distinct a) from t1 union select max(f) from t1)),t1.c) when t1.a then t1.e else t1.c end*17)) FROM t1 WHERE t1.a between 19 and (t1.b) ;SELECT +(abs(13)/abs(+~~case t1.e | +11-b-coalesce((select max(c) from t1 where 19 in (select cast(avg(coalesce((select max(case when t1.a<t1.d and t1.f<(11) then t1.f else -a end*t1.c) from t1 where e<=d and c<f),17)) AS integer)-max(t1.e)-count(distinct a) from t1 union select max(f) from t1)),t1.c) when t1.a then t1.e else t1.c end*17)) FROM t1 WHERE NOT (t1.a between 19 and (t1.b)) ;SELECT +(abs(13)/abs(+~~case t1.e & +11-b-coalesce((select max(c) from t1 where 19 in (select cast(avg(coalesce((select max(case when t1.a<t1.d and t1.f<(11) then t1.f else -a end*t1.c) from t1 where e<=d and c<f),17)) AS integer)-max(t1.e)-count(distinct a) from t1 union select max(f) from t1)),t1.c) when t1.a then t1.e else t1.c end*17)) FROM t1 WHERE t1.a between 19 and (t1.b);
<filename>packages/cubejs-testing/birdbox-fixtures/postgresql/scripts/pre-aggregations.sql CREATE TABLE visitors (id INT, amount INT, created_at TIMESTAMP, updated_at TIMESTAMP, status INT, source TEXT, latitude DECIMAL, longitude DECIMAL); CREATE TABLE visitor_checkins (id INT, visitor_id INT, created_at TIMESTAMP, source TEXT); CREATE TABLE cards (id INT, visitor_id INT, visitor_checkin_id INT); INSERT INTO visitors (id, amount, created_at, updated_at, status, source, latitude, longitude) VALUES (1, 100, '2017-01-03', '2017-01-30', 1, 'some', 120.120, 40.60), (2, 200, '2017-01-05', '2017-01-15', 1, 'some', 120.120, 58.60), (3, 300, '2017-01-06', '2017-01-20', 2, 'google', 120.120, 70.60), (4, 400, '2017-01-07', '2017-01-25', 2, NULL, 120.120, 10.60), (5, 500, '2017-01-07', '2017-01-25', 2, NULL, 120.120, 58.10), (6, 500, '2016-09-07', '2016-09-07', 2, NULL, 120.120, 58.10); INSERT INTO visitor_checkins (id, visitor_id, created_at, source) VALUES (1, 1, '2017-01-03', NULL), (2, 1, '2017-01-04', NULL), (3, 1, '2017-01-05', 'google'), (4, 2, '2017-01-05', NULL), (5, 2, '2017-01-05', NULL), (6, 3, '2017-01-06', NULL); INSERT INTO cards (id, visitor_id, visitor_checkin_id) VALUES (1, 1, 1), (2, 1, 2), (3, 3, 6);
<gh_stars>0 /* * for user: <EMAIL>, test * */ INSERT INTO user_roles VALUES(1, "admin"); INSERT INTO user_roles VALUES(1, "client"); INSERT INTO users VALUES(1, "<EMAIL>", "$2a$10$O9lRgNf9yxBvUTGUsA918.CcZBRygZZYM59GEskSV06A8VN7vXa3W", null, 1, 1, "Testor", "Testov", 1, 1463047451);
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.0.10.7 -- http://www.phpmyadmin.net -- -- Host: localhost:3306 -- Generation Time: Jul 21, 2016 at 11:06 AM -- Server version: 5.6.28-76.1-log -- PHP Version: 5.4.31 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `multlaye_spn` -- -- -------------------------------------------------------- -- -- Table structure for table `actions` -- CREATE TABLE IF NOT EXISTS `actions` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `greenhouse_id` int(11) NOT NULL, `action` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `time` datetime NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=208 ; -- -- Dumping data for table `actions` -- INSERT INTO `actions` (`id`, `greenhouse_id`, `action`, `time`, `created_at`, `updated_at`) VALUES (1, 101, 'pump1', '2016-06-25 12:21:18', '2016-06-25 17:21:18', NULL), (2, 101, 'fan', '2016-06-25 12:21:19', '2016-06-25 17:21:18', NULL), (3, 101, 'pump2', '2016-06-25 12:21:20', '2016-06-25 17:21:18', NULL), (4, 101, 'light', '2016-06-25 12:21:21', '2016-06-25 17:21:18', NULL), (5, 101, 'heater', '2016-06-25 12:21:22', '2016-06-25 17:21:18', NULL), (6, 101, 'steamer', '2016-06-25 12:21:23', '2016-06-25 17:21:18', '2016-06-25 17:21:18'), (8, 101, 'fan', '2016-07-02 18:00:46', '2016-07-02 23:01:35', '2016-07-02 23:01:35'), (17, 101, 'pump1', '2016-07-02 18:15:04', '2016-07-02 23:15:39', '2016-07-02 23:15:39'), (18, 101, 'pump2', '2016-07-02 18:15:34', '2016-07-02 23:16:12', '2016-07-02 23:16:12'), (19, 101, 'fan', '2016-07-02 18:19:28', '2016-07-02 23:20:14', '2016-07-02 23:20:14'), (39, 101, 'pump1', '2016-07-03 16:38:32', '2016-07-03 21:39:10', '2016-07-03 21:39:10'), (40, 101, 'pump1', '2016-07-03 16:38:32', '2016-07-03 21:39:17', '2016-07-03 21:39:17'), (41, 101, 'pump1', '2016-07-03 16:38:32', '2016-07-03 21:39:23', '2016-07-03 21:39:23'), (42, 101, 'pump2', '2016-07-03 16:38:41', '2016-07-03 21:39:33', '2016-07-03 21:39:33'), (43, 101, 'heater', '2016-07-03 16:39:44', '2016-07-03 21:40:24', '2016-07-03 21:40:24'), (44, 101, 'heater', '2016-07-03 16:39:44', '2016-07-03 21:40:42', '2016-07-03 21:40:42'), (45, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:45:37', '2016-07-03 21:45:37'), (46, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:45:43', '2016-07-03 21:45:43'), (47, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:45:50', '2016-07-03 21:45:50'), (48, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:46:15', '2016-07-03 21:46:15'), (49, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:46:21', '2016-07-03 21:46:21'), (50, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:46:28', '2016-07-03 21:46:28'), (51, 101, 'fan', '2016-07-03 16:46:09', '2016-07-03 21:47:00', '2016-07-03 21:47:00'), (52, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:47:16', '2016-07-03 21:47:16'), (53, 101, 'fan', '2016-07-03 16:44:52', '2016-07-03 21:47:22', '2016-07-03 21:47:22'), (54, 101, 'fan', '2016-07-03 16:46:09', '2016-07-03 21:47:43', '2016-07-03 21:47:43'), (55, 101, 'fan', '2016-07-03 16:46:09', '2016-07-03 21:47:50', '2016-07-03 21:47:50'), (56, 101, 'fan', '2016-07-03 16:46:09', '2016-07-03 21:47:56', '2016-07-03 21:47:56'), (57, 101, 'fan', '2016-07-03 16:45:12', '2016-07-03 21:48:17', '2016-07-03 21:48:17'), (58, 101, 'fan', '2016-07-03 16:45:55', '2016-07-03 21:48:24', '2016-07-03 21:48:24'), (59, 101, 'heater', '2016-07-03 17:09:48', '2016-07-03 22:10:31', '2016-07-03 22:10:31'), (60, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:10:41', '2016-07-03 22:10:41'), (61, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:10:48', '2016-07-03 22:10:48'), (62, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:10:54', '2016-07-03 22:10:54'), (63, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:11:06', '2016-07-03 22:11:06'), (64, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:11:12', '2016-07-03 22:11:12'), (65, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:11:20', '2016-07-03 22:11:20'), (66, 101, 'fan', '2016-07-03 17:09:53', '2016-07-03 22:11:36', '2016-07-03 22:11:36'), (67, 101, 'pump1', '2016-07-03 17:17:35', '2016-07-03 22:18:09', '2016-07-03 22:18:09'), (68, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:07', '2016-07-03 22:21:07'), (69, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:13', '2016-07-03 22:21:13'), (70, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:20', '2016-07-03 22:21:20'), (71, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:30', '2016-07-03 22:21:30'), (72, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:36', '2016-07-03 22:21:36'), (73, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:43', '2016-07-03 22:21:43'), (74, 101, 'steamer', '2016-07-03 17:20:17', '2016-07-03 22:21:58', '2016-07-03 22:21:58'), (75, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:22:24', '2016-07-03 22:22:24'), (76, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:22:30', '2016-07-03 22:22:30'), (77, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:22:39', '2016-07-03 22:22:39'), (78, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:22:52', '2016-07-03 22:22:52'), (79, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:03', '2016-07-03 22:23:03'), (80, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:09', '2016-07-03 22:23:09'), (81, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:16', '2016-07-03 22:23:16'), (82, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:23', '2016-07-03 22:23:23'), (83, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:34', '2016-07-03 22:23:34'), (84, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:41', '2016-07-03 22:23:41'), (85, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:23:47', '2016-07-03 22:23:47'), (86, 101, 'heater', '2016-07-03 17:21:59', '2016-07-03 22:23:59', '2016-07-03 22:23:59'), (87, 101, 'heater', '2016-07-03 17:21:42', '2016-07-03 22:24:06', '2016-07-03 22:24:06'), (88, 101, 'pump1', '2016-07-03 17:37:28', '2016-07-03 22:42:19', '2016-07-03 22:42:19'), (89, 101, 'pump1', '2016-07-03 17:37:28', '2016-07-03 22:42:25', '2016-07-03 22:42:25'), (90, 101, 'pump1', '2016-07-03 17:37:28', '2016-07-03 22:42:44', '2016-07-03 22:42:44'), (91, 101, 'pump1', '2016-07-03 17:37:28', '2016-07-03 22:43:01', '2016-07-03 22:43:01'), (92, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:17', '2016-07-03 22:49:17'), (93, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:18', '2016-07-03 22:49:18'), (94, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:25', '2016-07-03 22:49:25'), (95, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:35', '2016-07-03 22:49:35'), (96, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:41', '2016-07-03 22:49:41'), (97, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:49:48', '2016-07-03 22:49:48'), (98, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:50:13', '2016-07-03 22:50:13'), (99, 101, 'steamer', '2016-07-03 17:49:35', '2016-07-03 22:50:24', '2016-07-03 22:50:24'), (100, 101, 'steamer', '2016-07-03 17:48:27', '2016-07-03 22:50:31', '2016-07-03 22:50:31'), (101, 101, 'steamer', '2016-07-03 17:49:53', '2016-07-03 22:50:42', '2016-07-03 22:50:42'), (102, 101, 'steamer', '2016-07-03 17:49:53', '2016-07-03 22:50:49', '2016-07-03 22:50:49'), (103, 101, 'steamer', '2016-07-03 17:49:53', '2016-07-03 22:51:01', '2016-07-03 22:51:01'), (104, 101, 'steamer', '2016-07-03 17:49:53', '2016-07-03 22:51:21', '2016-07-03 22:51:21'), (105, 101, 'pump1', '2016-07-03 18:06:50', '2016-07-03 23:07:27', '2016-07-03 23:07:27'), (106, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:09:16', '2016-07-03 23:09:16'), (107, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:09:22', '2016-07-03 23:09:22'), (108, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:09:29', '2016-07-03 23:09:29'), (109, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:09:54', '2016-07-03 23:09:54'), (110, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:09:55', '2016-07-03 23:09:55'), (111, 101, 'fan', '2016-07-03 18:08:30', '2016-07-03 23:10:02', '2016-07-03 23:10:02'), (112, 101, 'pump1', '2016-07-04 16:13:57', '2016-07-04 21:14:33', '2016-07-04 21:14:33'), (113, 101, 'pump1', '2016-07-04 16:14:20', '2016-07-04 21:14:56', '2016-07-04 21:14:56'), (114, 101, 'pump1', '2016-07-04 16:15:01', '2016-07-04 21:15:38', '2016-07-04 21:15:38'), (115, 101, 'pump1', '2016-07-04 16:15:44', '2016-07-04 21:16:19', '2016-07-04 21:16:19'), (116, 101, 'pump2', '2016-07-04 16:16:13', '2016-07-04 21:16:47', '2016-07-04 21:16:47'), (117, 101, 'pump2', '2016-07-04 16:17:13', '2016-07-04 21:17:51', '2016-07-04 21:17:51'), (118, 101, 'pump2', '2016-07-04 16:17:34', '2016-07-04 21:18:10', '2016-07-04 21:18:10'), (119, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:18:58', '2016-07-04 21:18:58'), (120, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:19:05', '2016-07-04 21:19:05'), (121, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:19:07', '2016-07-04 21:19:07'), (122, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:19:18', '2016-07-04 21:19:18'), (123, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:19:24', '2016-07-04 21:19:24'), (124, 101, 'heater', '2016-07-04 16:18:19', '2016-07-04 21:19:31', '2016-07-04 21:19:31'), (125, 101, 'pump1', '2016-07-04 17:17:55', '2016-07-04 22:18:32', '2016-07-04 22:18:32'), (126, 101, 'steamer', '2016-07-04 17:19:39', '2016-07-04 22:20:30', '2016-07-04 22:20:30'), (127, 101, 'steamer', '2016-07-04 17:19:39', '2016-07-04 22:20:36', '2016-07-04 22:20:36'), (128, 101, 'steamer', '2016-07-04 17:19:39', '2016-07-04 22:20:43', '2016-07-04 22:20:43'), (129, 101, 'steamer', '2016-07-04 17:19:55', '2016-07-04 22:21:02', '2016-07-04 22:21:02'), (130, 101, 'steamer', '2016-07-04 17:19:55', '2016-07-04 22:21:04', '2016-07-04 22:21:04'), (131, 101, 'steamer', '2016-07-04 17:19:55', '2016-07-04 22:21:10', '2016-07-04 22:21:10'), (132, 101, 'pump2', '2016-07-05 10:32:58', '2016-07-05 15:33:31', '2016-07-05 15:33:31'), (133, 101, 'heater', '2016-07-05 10:34:09', '2016-07-05 15:34:52', '2016-07-05 15:34:52'), (134, 101, 'heater', '2016-07-05 10:34:09', '2016-07-05 15:34:59', '2016-07-05 15:34:59'), (135, 101, 'heater', '2016-07-05 10:34:09', '2016-07-05 15:35:05', '2016-07-05 15:35:05'), (136, 101, 'heater', '2016-07-05 10:34:09', '2016-07-05 15:35:38', '2016-07-05 15:35:38'), (137, 101, 'fan', '2016-07-05 10:38:09', '2016-07-05 15:39:00', '2016-07-05 15:39:00'), (138, 101, 'fan', '2016-07-05 10:38:09', '2016-07-05 15:39:06', '2016-07-05 15:39:06'), (139, 101, 'fan', '2016-07-05 10:38:09', '2016-07-05 15:39:13', '2016-07-05 15:39:13'), (140, 101, 'fan', '2016-07-05 10:38:22', '2016-07-05 15:39:23', '2016-07-05 15:39:23'), (141, 101, 'fan', '2016-07-05 10:38:22', '2016-07-05 15:39:30', '2016-07-05 15:39:30'), (142, 101, 'fan', '2016-07-05 10:38:22', '2016-07-05 15:39:36', '2016-07-05 15:39:36'), (143, 101, 'fan', '2016-07-05 10:38:49', '2016-07-05 15:39:51', '2016-07-05 15:39:51'), (144, 101, 'fan', '2016-07-05 10:38:49', '2016-07-05 15:39:58', '2016-07-05 15:39:58'), (145, 101, 'fan', '2016-07-05 10:38:49', '2016-07-05 15:40:04', '2016-07-05 15:40:04'), (146, 101, 'fan', '2016-07-05 10:39:59', '2016-07-05 15:40:44', '2016-07-05 15:40:44'), (147, 101, 'fan', '2016-07-05 10:39:59', '2016-07-05 15:40:51', '2016-07-05 15:40:51'), (148, 101, 'fan', '2016-07-05 10:39:59', '2016-07-05 15:40:57', '2016-07-05 15:40:57'), (149, 101, 'fan', '2016-07-05 10:39:59', '2016-07-05 15:41:07', '2016-07-05 15:41:07'), (150, 101, 'fan', '2016-07-05 10:39:59', '2016-07-05 15:41:14', '2016-07-05 15:41:14'), (151, 101, 'pump2', '2016-07-05 10:41:26', '2016-07-05 15:42:01', '2016-07-05 15:42:01'), (152, 101, 'pump2', '2016-07-05 10:41:40', '2016-07-05 15:42:18', '2016-07-05 15:42:18'), (153, 101, 'heater', '2016-07-05 10:44:18', '2016-07-05 15:45:02', '2016-07-05 15:45:02'), (154, 101, 'heater', '2016-07-05 10:44:18', '2016-07-05 15:45:08', '2016-07-05 15:45:08'), (155, 101, 'heater', '2016-07-05 10:44:18', '2016-07-05 15:45:15', '2016-07-05 15:45:15'), (156, 101, 'pump2', '2016-07-05 10:44:28', '2016-07-05 15:45:25', '2016-07-05 15:45:25'), (157, 101, 'pump2', '2016-07-05 10:44:28', '2016-07-05 15:45:31', '2016-07-05 15:45:31'), (158, 101, 'pump1', '2016-07-05 11:16:38', '2016-07-05 16:17:15', '2016-07-05 16:17:15'), (159, 101, 'pump1', '2016-07-05 11:17:12', '2016-07-05 16:17:49', '2016-07-05 16:17:49'), (160, 101, 'heater', '2016-07-05 11:19:01', '2016-07-05 16:19:45', '2016-07-05 16:19:45'), (161, 101, 'heater', '2016-07-05 11:19:01', '2016-07-05 16:19:52', '2016-07-05 16:19:52'), (162, 101, 'heater', '2016-07-05 11:19:01', '2016-07-05 16:19:58', '2016-07-05 16:19:58'), (163, 101, 'heater', '2016-07-05 11:19:01', '2016-07-05 16:20:11', '2016-07-05 16:20:11'), (164, 101, 'heater', '2016-07-05 11:19:37', '2016-07-05 16:20:25', '2016-07-05 16:20:25'), (165, 101, 'heater', '2016-07-05 11:19:37', '2016-07-05 16:20:27', '2016-07-05 16:20:27'), (166, 101, 'heater', '2016-07-05 11:19:52', '2016-07-05 16:20:38', '2016-07-05 16:20:38'), (167, 101, 'heater', '2016-07-05 11:19:52', '2016-07-05 16:20:44', '2016-07-05 16:20:44'), (168, 101, 'heater', '2016-07-05 11:20:03', '2016-07-05 16:20:58', '2016-07-05 16:20:58'), (169, 101, 'pump1', '2016-07-05 11:41:04', '2016-07-05 16:41:41', '2016-07-05 16:41:41'), (170, 101, 'pump1', '2016-07-05 12:40:19', '2016-07-05 17:40:55', '2016-07-05 17:40:55'), (171, 101, 'pump1', '2016-07-05 12:40:34', '2016-07-05 17:41:10', '2016-07-05 17:41:10'), (172, 101, 'pump1', '2016-07-05 12:40:50', '2016-07-05 17:41:25', '2016-07-05 17:41:25'), (173, 101, 'pump1', '2016-07-05 12:41:04', '2016-07-05 17:41:40', '2016-07-05 17:41:40'), (174, 101, 'heater', '2016-07-05 12:42:50', '2016-07-05 17:43:34', '2016-07-05 17:43:34'), (175, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:05', '2016-07-14 21:46:05'), (176, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:12', '2016-07-14 21:46:12'), (177, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:19', '2016-07-14 21:46:19'), (178, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:21', '2016-07-14 21:46:21'), (179, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:26', '2016-07-14 21:46:26'), (180, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:33', '2016-07-14 21:46:33'), (181, 101, 'steamer', '2016-07-14 16:45:22', '2016-07-14 21:46:39', '2016-07-14 21:46:39'), (182, 101, 'steamer', '2016-07-14 18:25:35', '2016-07-14 23:26:11', '2016-07-14 23:26:11'), (183, 101, 'pump2', '2016-07-14 18:27:48', '2016-07-14 23:28:25', '2016-07-14 23:28:25'), (184, 101, 'pump1', '2016-07-14 18:33:22', '2016-07-14 23:33:56', '2016-07-14 23:33:56'), (185, 101, 'heater', '2016-07-14 18:48:26', '2016-07-14 23:49:09', '2016-07-14 23:49:09'), (186, 101, 'heater', '2016-07-14 18:48:26', '2016-07-14 23:49:16', '2016-07-14 23:49:16'), (187, 101, 'heater', '2016-07-14 18:48:26', '2016-07-14 23:49:23', '2016-07-14 23:49:23'), (188, 101, 'heater', '2016-07-14 18:48:26', '2016-07-14 23:49:33', '2016-07-14 23:49:33'), (189, 101, 'heater', '2016-07-14 18:48:37', '2016-07-14 23:49:39', '2016-07-14 23:49:39'), (190, 101, 'heater', '2016-07-14 18:48:37', '2016-07-14 23:49:46', '2016-07-14 23:49:46'), (191, 101, 'heater', '2016-07-14 18:48:56', '2016-07-14 23:49:58', '2016-07-14 23:49:58'), (192, 101, 'heater', '2016-07-14 18:48:56', '2016-07-14 23:50:05', '2016-07-14 23:50:05'), (193, 101, 'heater', '2016-07-14 18:48:56', '2016-07-14 23:50:12', '2016-07-14 23:50:12'), (194, 101, 'heater', '2016-07-14 18:49:53', '2016-07-14 23:50:45', '2016-07-14 23:50:45'), (195, 101, 'pump2', '2016-07-14 18:53:04', '2016-07-14 23:53:41', '2016-07-14 23:53:41'), (196, 101, 'pump2', '2016-07-14 18:59:43', '2016-07-15 00:00:18', '2016-07-15 00:00:18'), (197, 101, 'pump2', '2016-07-14 19:02:34', '2016-07-15 00:03:10', '2016-07-15 00:03:10'), (198, 101, 'light', '2016-07-14 19:10:03', '2016-07-15 00:10:40', '2016-07-15 00:10:40'), (199, 101, 'pump1', '2016-07-14 19:11:29', '2016-07-15 00:12:10', '2016-07-15 00:12:10'), (200, 101, 'heater', '2016-07-14 19:14:09', '2016-07-15 00:14:52', '2016-07-15 00:14:52'), (201, 101, 'pump2', '2016-07-14 19:14:47', '2016-07-15 00:15:24', '2016-07-15 00:15:24'), (202, 101, 'pump2', '2016-07-14 19:15:03', '2016-07-15 00:15:37', '2016-07-15 00:15:37'), (203, 101, 'light', '2016-07-14 19:16:45', '2016-07-15 00:17:20', '2016-07-15 00:17:20'), (204, 101, 'light', '2016-07-14 19:16:45', '2016-07-15 00:17:30', '2016-07-15 00:17:30'), (205, 101, 'light', '2016-07-14 19:16:45', '2016-07-15 00:17:36', '2016-07-15 00:17:36'), (206, 101, 'light', '2016-07-14 19:16:45', '2016-07-15 00:17:43', '2016-07-15 00:17:43'), (207, 101, 'shtoo yatambal', '1989-01-12 10:11:12', '2016-07-16 17:08:49', '2016-07-16 17:08:49'); -- -------------------------------------------------------- -- -- Table structure for table `greenhouse_data` -- CREATE TABLE IF NOT EXISTS `greenhouse_data` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `greenhouse_id` int(11) NOT NULL, `key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `value` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `time` datetime NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=473 ; -- -- Dumping data for table `greenhouse_data` -- INSERT INTO `greenhouse_data` (`id`, `greenhouse_id`, `key`, `value`, `time`, `created_at`, `updated_at`) VALUES (1, 101, 'soilHumidity1', '30', '2016-07-04 11:54:56', NULL, NULL), (2, 101, 'soilHumidity2', '31', '2016-07-05 08:54:58', NULL, NULL), (3, 101, 'temperature', '28.9', '2016-07-05 06:40:59', NULL, NULL), (4, 101, 'temperature', '28', '2016-07-05 06:30:59', NULL, NULL), (5, 101, 'luminance', '60', '2016-07-05 11:30:59', NULL, NULL), (6, 101, 'temperature', '28', '2016-07-05 06:30:59', NULL, NULL), (7, 101, 'temperature', '27.5', '2016-07-05 06:35:59', NULL, NULL), (8, 101, 'temperature', '27.8', '2016-07-05 07:35:59', NULL, NULL), (9, 101, 'temperature', '27.9', '2016-07-05 07:40:59', NULL, NULL), (10, 101, 'temperature', '27.0', '2016-07-05 07:45:59', NULL, NULL), (11, 101, 'temperature', '26.9', '2016-07-05 07:50:59', NULL, NULL), (12, 101, 'soilHumidity1', '28', '2016-07-05 10:50:59', NULL, NULL), (13, 101, 'soilHumidity1', '28.1', '2016-07-05 09:50:54', NULL, NULL), (14, 101, 'soilHumidity1', '28.6', '2016-07-05 08:50:43', NULL, NULL), (15, 101, 'soilHumidity1', '28.5', '2016-07-05 07:50:11', NULL, NULL), (16, 101, 'soilHumidity1', '26.1', '2016-07-05 09:50:54', NULL, NULL), (17, 101, 'soilHumidity1', '28.8', '2016-07-05 08:50:23', NULL, NULL), (18, 101, 'soilHumidity1', '28.4', '2016-07-05 10:50:39', NULL, NULL), (19, 101, 'soilHumidity1', '27.8', '2016-07-05 11:50:29', NULL, NULL), (20, 101, 'soilHumidity1', '28.1', '2016-07-05 12:50:52', NULL, NULL), (21, 101, 'soilHumidity1', '27.9', '2016-07-05 13:51:37', NULL, NULL), (22, 101, 'soilHumidity1', '28.4', '2016-07-05 10:55:34', NULL, NULL), (23, 101, 'soilHumidity1', '28.3', '2016-07-05 12:54:45', NULL, NULL), (24, 101, 'soilHumidity1', '28.1', '2016-07-05 12:58:56', NULL, NULL), (25, 101, 'soilHumidity1', '28', '2016-07-05 07:50:59', NULL, NULL), (26, 101, 'soilHumidity2', '25.1', '2016-07-05 09:50:54', NULL, NULL), (27, 101, 'soilHumidity2', '25.6', '2016-07-05 10:50:43', NULL, NULL), (28, 101, 'soilHumidity2', '25.5', '2016-07-05 11:50:11', NULL, NULL), (29, 101, 'soilHumidity2', '26.1', '2016-07-05 12:52:54', NULL, NULL), (30, 101, 'soilHumidity2', '25.8', '2016-07-05 13:54:23', NULL, NULL), (31, 101, 'soilHumidity2', '25.4', '2016-07-05 12:56:39', NULL, NULL), (32, 101, 'soilHumidity2', '26.8', '2016-07-05 11:55:29', NULL, NULL), (33, 101, 'soilHumidity2', '25.1', '2016-07-05 12:54:52', NULL, NULL), (34, 101, 'soilHumidity2', '25.9', '2016-07-05 11:53:37', NULL, NULL), (35, 101, 'soilHumidity2', '26.4', '2016-07-05 11:55:34', NULL, NULL), (36, 101, 'soilHumidity2', '26.3', '2016-07-05 13:54:45', NULL, NULL), (37, 101, 'soilHumidity2', '25.1', '2016-07-05 09:58:56', NULL, NULL), (38, 101, 'temperature', '28', '2016-07-05 08:50:59', NULL, NULL), (39, 101, 'temperature', '25.1', '2016-07-05 08:50:54', NULL, NULL), (40, 101, 'temperature', '25.6', '2016-07-05 08:50:43', NULL, NULL), (41, 101, 'temperature', '25.5', '2016-07-05 08:50:11', NULL, NULL), (42, 101, 'temperature', '26.1', '2016-07-05 09:52:54', NULL, NULL), (43, 101, 'temperature', '25.8', '2016-07-05 09:54:23', NULL, NULL), (44, 101, 'temperature', '25.4', '2016-07-05 09:56:39', NULL, NULL), (45, 101, 'temperature', '26.8', '2016-07-05 11:55:29', NULL, NULL), (46, 101, 'temperature', '25.1', '2016-07-05 12:54:52', NULL, NULL), (47, 101, 'temperature', '25.9', '2016-07-05 11:53:37', NULL, NULL), (48, 101, 'temperature', '26.4', '2016-07-05 11:55:34', NULL, NULL), (49, 101, 'temperature', '26.3', '2016-07-05 12:54:45', NULL, NULL), (50, 101, 'temperature', '25.1', '2016-07-05 10:58:56', NULL, NULL), (51, 101, 'luminance', '41.3', '2016-07-05 12:48:53', NULL, NULL), (52, 101, 'luminance', '42.4', '2016-07-05 08:53:53', NULL, NULL), (53, 101, 'luminance', '41.7', '2016-07-05 07:28:56', NULL, NULL), (54, 101, 'luminance', '40.6', '2016-07-05 08:34:57', NULL, NULL), (55, 101, 'luminance', '43.4', '2016-07-05 12:34:46', NULL, NULL), (56, 101, 'luminance', '43.8', '2016-07-05 11:32:36', NULL, NULL), (57, 101, 'luminance', '41.9', '2016-07-05 09:56:56', NULL, NULL), (58, 101, 'luminance', '45.2', '2016-07-05 07:48:36', NULL, NULL), (59, 101, 'luminance', '43.4', '2016-07-05 11:58:16', NULL, NULL), (60, 101, 'luminance', '46.3', '2016-07-05 12:53:55', NULL, NULL), (61, 101, 'luminance', '46.3', '2016-07-05 10:34:43', NULL, NULL), (62, 101, 'luminance', '43.4', '2016-07-05 13:53:26', NULL, NULL), (63, 101, 'airHumidity', '51.3', '2016-07-05 10:48:53', NULL, NULL), (64, 101, 'airHumidity', '52.4', '2016-07-05 11:53:53', NULL, NULL), (65, 101, 'airHumidity', '51.7', '2016-07-05 09:28:56', NULL, NULL), (66, 101, 'airHumidity', '50.6', '2016-07-05 08:34:57', NULL, NULL), (67, 101, 'airHumidity', '53.4', '2016-07-05 08:34:46', NULL, NULL), (68, 101, 'airHumidity', '53.8', '2016-07-05 09:32:36', NULL, NULL), (69, 101, 'airHumidity', '51.9', '2016-07-05 12:56:56', NULL, NULL), (70, 101, 'airHumidity', '55.2', '2016-07-05 11:48:36', NULL, NULL), (71, 101, 'airHumidity', '53.4', '2016-07-05 10:58:16', NULL, NULL), (72, 101, 'airHumidity', '56.3', '2016-07-05 09:53:55', NULL, NULL), (73, 101, 'airHumidity', '56.3', '2016-07-05 13:34:43', NULL, NULL), (74, 101, 'airHumidity', '53.4', '2016-07-05 13:53:26', NULL, NULL), (75, 101, 'electricity', '30', '2016-07-05 11:54:56', NULL, NULL), (76, 101, 'electricity', '31', '2016-07-05 14:54:58', NULL, NULL), (77, 101, 'electricity', '28.9', '2016-07-04 14:40:59', NULL, NULL), (78, 101, 'electricity', '28', '2016-07-04 14:30:59', NULL, NULL), (79, 101, 'electricity', '60', '2016-07-04 14:30:59', NULL, NULL), (80, 101, 'electricity', '28', '2016-07-03 14:30:59', NULL, NULL), (81, 101, 'electricity', '27.5', '2016-07-03 14:35:59', NULL, NULL), (82, 101, 'electricity', '27.8', '2016-07-03 14:35:59', NULL, NULL), (83, 101, 'electricity', '27.9', '2016-07-03 14:40:59', NULL, NULL), (84, 101, 'electricity', '27.0', '2016-07-03 14:45:59', NULL, NULL), (85, 101, 'electricity', '26.9', '2016-07-03 14:50:59', NULL, NULL), (86, 101, 'electricity', '28', '2016-07-03 14:50:59', NULL, NULL), (87, 101, 'electricity', '28.1', '2016-07-03 14:50:54', NULL, NULL), (88, 101, 'electricity', '28.6', '2016-07-03 15:50:43', NULL, NULL), (89, 101, 'electricity', '28.5', '2016-07-03 16:50:11', NULL, NULL), (90, 101, 'electricity', '26.1', '2016-07-03 17:50:54', NULL, NULL), (91, 101, 'electricity', '28.8', '2016-07-03 18:50:23', NULL, NULL), (92, 101, 'electricity', '28.4', '2016-07-02 19:50:39', NULL, NULL), (93, 101, 'electricity', '27.8', '2016-07-02 11:50:29', NULL, NULL), (94, 101, 'electricity', '28.1', '2016-07-02 12:50:52', NULL, NULL), (95, 101, 'electricity', '27.9', '2016-07-02 16:51:37', NULL, NULL), (96, 101, 'electricity', '28.4', '2016-07-02 14:55:34', NULL, NULL), (97, 101, 'electricity', '28.3', '2016-07-02 12:54:45', NULL, NULL), (98, 101, 'electricity', '28.1', '2016-07-01 17:58:56', NULL, NULL), (99, 101, 'electricity', '28', '2016-07-01 14:50:59', NULL, NULL), (100, 101, 'electricity', '25.1', '2016-07-01 14:50:54', NULL, NULL), (101, 101, 'electricity', '25.6', '2016-07-01 15:50:43', NULL, NULL), (102, 101, 'electricity', '25.5', '2016-07-01 16:50:11', NULL, NULL), (103, 101, 'electricity', '26.1', '2016-07-01 17:52:54', NULL, NULL), (104, 101, 'water', '25.8', '2016-07-01 18:52:23', NULL, NULL), (105, 101, 'water', '25.4', '2016-07-01 19:56:39', NULL, NULL), (106, 101, 'water', '26.8', '2016-07-01 11:55:29', NULL, NULL), (107, 101, 'water', '25.1', '2016-07-01 12:54:52', NULL, NULL), (108, 101, 'water', '25.9', '2016-07-01 16:53:37', NULL, NULL), (109, 101, 'water', '26.4', '2016-07-01 14:55:34', NULL, NULL), (110, 101, 'water', '26.3', '2016-07-02 12:54:45', NULL, NULL), (111, 101, 'water', '25.1', '2016-07-02 17:58:56', NULL, NULL), (112, 101, 'water', '28', '2016-07-02 14:50:59', NULL, NULL), (113, 101, 'water', '25.1', '2016-07-02 14:50:54', NULL, NULL), (114, 101, 'water', '25.6', '2016-07-02 15:50:43', NULL, NULL), (115, 101, 'water', '25.5', '2016-07-02 16:50:11', NULL, NULL), (116, 101, 'water', '26.1', '2016-07-02 17:52:54', NULL, NULL), (117, 101, 'water', '25.8', '2016-07-03 18:54:23', NULL, NULL), (118, 101, 'water', '25.4', '2016-07-03 19:56:39', NULL, NULL), (119, 101, 'water', '26.8', '2016-07-03 11:55:29', NULL, NULL), (120, 101, 'water', '25.1', '2016-07-03 12:54:52', NULL, NULL), (121, 101, 'water', '25.9', '2016-07-03 16:53:37', NULL, NULL), (122, 101, 'water', '26.4', '2016-07-03 14:55:34', NULL, NULL), (123, 101, 'water', '26.3', '2016-07-03 12:54:45', NULL, NULL), (124, 101, 'water', '25.1', '2016-07-03 17:58:56', NULL, NULL), (125, 101, 'water', '41.3', '2016-07-03 14:48:53', NULL, NULL), (126, 101, 'water', '42.4', '2016-07-03 17:53:53', NULL, NULL), (127, 101, 'water', '41.7', '2016-07-03 14:28:56', NULL, NULL), (128, 101, 'water', '40.6', '2016-07-03 15:34:57', NULL, NULL), (129, 101, 'water', '43.4', '2016-07-03 12:34:46', NULL, NULL), (130, 101, 'water', '43.8', '2016-07-04 17:32:36', NULL, NULL), (131, 101, 'water', '41.9', '2016-07-04 18:56:56', NULL, NULL), (132, 101, 'water', '45.2', '2016-07-04 19:48:36', NULL, NULL), (133, 101, 'water', '43.4', '2016-07-04 15:58:16', NULL, NULL), (134, 101, 'water', '46.3', '2016-07-04 12:53:55', NULL, NULL), (135, 101, 'water', '46.3', '2016-07-04 15:34:43', NULL, NULL), (136, 101, 'water', '43.4', '2016-07-04 13:53:26', NULL, NULL), (137, 101, 'water', '61.3', '2016-07-04 14:48:53', NULL, NULL), (138, 101, 'temperature', '22', '2016-07-14 16:29:43', '2016-07-14 21:30:21', '2016-07-14 21:30:21'), (139, 101, 'soilHumidity2', '802', '2016-07-14 16:29:44', '2016-07-14 21:30:21', '2016-07-14 21:30:21'), (140, 101, 'soilHumidity1', '870', '2016-07-14 16:29:37', '2016-07-14 21:30:21', '2016-07-14 21:30:21'), (141, 101, 'luminance', '91', '2016-07-14 16:29:37', '2016-07-14 21:30:21', '2016-07-14 21:30:21'), (142, 101, 'airHumidity', '69', '2016-07-14 16:29:42', '2016-07-14 21:30:21', '2016-07-14 21:30:21'), (143, 101, 'temperature', '22', '2016-07-14 16:29:43', '2016-07-14 21:30:51', '2016-07-14 21:30:51'), (144, 101, 'soilHumidity2', '802', '2016-07-14 16:29:44', '2016-07-14 21:30:51', '2016-07-14 21:30:51'), (145, 101, 'soilHumidity1', '869.5', '2016-07-14 16:29:48', '2016-07-14 21:30:51', '2016-07-14 21:30:51'), (146, 101, 'luminance', '91', '2016-07-14 16:29:48', '2016-07-14 21:30:51', '2016-07-14 21:30:51'), (147, 101, 'airHumidity', '69', '2016-07-14 16:29:42', '2016-07-14 21:30:51', '2016-07-14 21:30:51'), (148, 101, 'temperature', '22', '2016-07-14 16:29:43', '2016-07-14 21:31:24', '2016-07-14 21:31:24'), (149, 101, 'soilHumidity2', '802', '2016-07-14 16:29:44', '2016-07-14 21:31:24', '2016-07-14 21:31:24'), (150, 101, 'soilHumidity1', '869.5', '2016-07-14 16:29:48', '2016-07-14 21:31:24', '2016-07-14 21:31:24'), (151, 101, 'luminance', '91', '2016-07-14 16:29:48', '2016-07-14 21:31:24', '2016-07-14 21:31:24'), (152, 101, 'airHumidity', '69', '2016-07-14 16:29:42', '2016-07-14 21:31:24', '2016-07-14 21:31:24'), (153, 101, 'temperature', '22', '2016-07-14 16:31:16', '2016-07-14 21:31:57', '2016-07-14 21:31:57'), (154, 101, 'soilHumidity2', '802', '2016-07-14 16:31:13', '2016-07-14 21:31:57', '2016-07-14 21:31:57'), (155, 101, 'soilHumidity1', '870', '2016-07-14 16:31:17', '2016-07-14 21:31:57', '2016-07-14 21:31:57'), (156, 101, 'luminance', '91', '2016-07-14 16:31:17', '2016-07-14 21:31:57', '2016-07-14 21:31:57'), (157, 101, 'airHumidity', '69', '2016-07-14 16:31:16', '2016-07-14 21:31:57', '2016-07-14 21:31:57'), (158, 101, 'temperature', '22', '2016-07-14 16:31:39', '2016-07-14 21:32:31', '2016-07-14 21:32:31'), (159, 101, 'soilHumidity2', '802.5', '2016-07-14 16:31:40', '2016-07-14 21:32:31', '2016-07-14 21:32:31'), (160, 101, 'soilHumidity1', '869.5', '2016-07-14 16:31:47', '2016-07-14 21:32:31', '2016-07-14 21:32:31'), (161, 101, 'luminance', '91', '2016-07-14 16:31:43', '2016-07-14 21:32:31', '2016-07-14 21:32:31'), (162, 101, 'airHumidity', '69.25', '2016-07-14 16:31:39', '2016-07-14 21:32:31', '2016-07-14 21:32:31'), (163, 101, 'temperature', '22', '2016-07-14 16:32:29', '2016-07-14 21:33:04', '2016-07-14 21:33:04'), (164, 101, 'soilHumidity2', '804', '2016-07-14 16:32:29', '2016-07-14 21:33:04', '2016-07-14 21:33:04'), (165, 101, 'soilHumidity1', '869', '2016-07-14 16:32:23', '2016-07-14 21:33:04', '2016-07-14 21:33:04'), (166, 101, 'luminance', '91', '2016-07-14 16:32:19', '2016-07-14 21:33:04', '2016-07-14 21:33:04'), (167, 101, 'airHumidity', '69', '2016-07-14 16:32:29', '2016-07-14 21:33:04', '2016-07-14 21:33:04'), (168, 101, 'temperature', '22', '2016-07-14 16:32:47', '2016-07-14 21:33:36', '2016-07-14 21:33:36'), (169, 101, 'soilHumidity2', '802.5', '2016-07-14 16:32:57', '2016-07-14 21:33:36', '2016-07-14 21:33:36'), (170, 101, 'soilHumidity1', '870', '2016-07-14 16:32:46', '2016-07-14 21:33:36', '2016-07-14 21:33:36'), (171, 101, 'luminance', '91', '2016-07-14 16:32:49', '2016-07-14 21:33:36', '2016-07-14 21:33:36'), (172, 101, 'airHumidity', '69', '2016-07-14 16:32:47', '2016-07-14 21:33:36', '2016-07-14 21:33:36'), (173, 101, 'temperature', '22', '2016-07-14 16:32:47', '2016-07-14 21:34:12', '2016-07-14 21:34:12'), (174, 101, 'soilHumidity2', '802.5', '2016-07-14 16:32:57', '2016-07-14 21:34:12', '2016-07-14 21:34:12'), (175, 101, 'soilHumidity1', '870', '2016-07-14 16:32:46', '2016-07-14 21:34:12', '2016-07-14 21:34:12'), (176, 101, 'luminance', '91', '2016-07-14 16:32:49', '2016-07-14 21:34:12', '2016-07-14 21:34:12'), (177, 101, 'airHumidity', '69', '2016-07-14 16:32:47', '2016-07-14 21:34:12', '2016-07-14 21:34:12'), (178, 101, 'soilHumidity1', '869.5', '2016-07-14 16:34:39', '2016-07-14 21:35:19', '2016-07-14 21:35:19'), (179, 101, 'airHumidity', '69.25', '2016-07-14 16:34:42', '2016-07-14 21:35:19', '2016-07-14 21:35:19'), (180, 101, 'temperature', '22', '2016-07-14 16:34:43', '2016-07-14 21:35:19', '2016-07-14 21:35:19'), (181, 101, 'luminance', '91', '2016-07-14 16:34:36', '2016-07-14 21:35:19', '2016-07-14 21:35:19'), (182, 101, 'soilHumidity2', '802', '2016-07-14 16:34:43', '2016-07-14 21:35:19', '2016-07-14 21:35:19'), (183, 101, 'soilHumidity1', '869.5', '2016-07-14 16:35:16', '2016-07-14 21:35:52', '2016-07-14 21:35:52'), (184, 101, 'airHumidity', '69.5', '2016-07-14 16:35:05', '2016-07-14 21:35:52', '2016-07-14 21:35:52'), (185, 101, 'temperature', '22', '2016-07-14 16:35:05', '2016-07-14 21:35:52', '2016-07-14 21:35:52'), (186, 101, 'luminance', '91', '2016-07-14 16:35:16', '2016-07-14 21:35:52', '2016-07-14 21:35:52'), (187, 101, 'soilHumidity2', '803.5', '2016-07-14 16:35:05', '2016-07-14 21:35:52', '2016-07-14 21:35:52'), (188, 101, 'soilHumidity1', '869.5', '2016-07-14 16:35:47', '2016-07-14 21:36:25', '2016-07-14 21:36:25'), (189, 101, 'airHumidity', '69', '2016-07-14 16:35:41', '2016-07-14 21:36:25', '2016-07-14 21:36:25'), (190, 101, 'temperature', '22', '2016-07-14 16:35:41', '2016-07-14 21:36:25', '2016-07-14 21:36:25'), (191, 101, 'luminance', '91', '2016-07-14 16:35:47', '2016-07-14 21:36:25', '2016-07-14 21:36:25'), (192, 101, 'soilHumidity2', '801.5', '2016-07-14 16:35:42', '2016-07-14 21:36:25', '2016-07-14 21:36:25'), (193, 101, 'soilHumidity1', '869', '2016-07-14 16:36:11', '2016-07-14 21:36:56', '2016-07-14 21:36:56'), (194, 101, 'airHumidity', '68.75', '2016-07-14 16:36:12', '2016-07-14 21:36:56', '2016-07-14 21:36:56'), (195, 101, 'temperature', '22', '2016-07-14 16:36:13', '2016-07-14 21:36:56', '2016-07-14 21:36:56'), (196, 101, 'luminance', '91', '2016-07-14 16:36:11', '2016-07-14 21:36:56', '2016-07-14 21:36:56'), (197, 101, 'soilHumidity2', '802.5', '2016-07-14 16:36:13', '2016-07-14 21:36:56', '2016-07-14 21:36:56'), (198, 101, 'soilHumidity1', '868.5', '2016-07-14 16:36:51', '2016-07-14 21:37:29', '2016-07-14 21:37:29'), (199, 101, 'airHumidity', '68.75', '2016-07-14 16:36:47', '2016-07-14 21:37:29', '2016-07-14 21:37:29'), (200, 101, 'temperature', '22', '2016-07-14 16:36:47', '2016-07-14 21:37:29', '2016-07-14 21:37:29'), (201, 101, 'luminance', '90.75', '2016-07-14 16:36:51', '2016-07-14 21:37:29', '2016-07-14 21:37:29'), (202, 101, 'soilHumidity2', '802.5', '2016-07-14 16:36:48', '2016-07-14 21:37:29', '2016-07-14 21:37:29'), (203, 101, 'soilHumidity1', '868.5', '2016-07-14 16:37:30', '2016-07-14 21:38:05', '2016-07-14 21:38:05'), (204, 101, 'airHumidity', '68.75', '2016-07-14 16:37:30', '2016-07-14 21:38:05', '2016-07-14 21:38:05'), (205, 101, 'temperature', '22', '2016-07-14 16:37:30', '2016-07-14 21:38:05', '2016-07-14 21:38:05'), (206, 101, 'luminance', '91', '2016-07-14 16:37:20', '2016-07-14 21:38:05', '2016-07-14 21:38:05'), (207, 101, 'soilHumidity2', '803', '2016-07-14 16:36:59', '2016-07-14 21:38:05', '2016-07-14 21:38:05'), (208, 101, 'soilHumidity1', '869', '2016-07-14 16:37:52', '2016-07-14 21:38:39', '2016-07-14 21:38:39'), (209, 101, 'airHumidity', '68.5', '2016-07-14 16:38:04', '2016-07-14 21:38:39', '2016-07-14 21:38:39'), (210, 101, 'temperature', '22', '2016-07-14 16:38:04', '2016-07-14 21:38:39', '2016-07-14 21:38:39'), (211, 101, 'luminance', '91', '2016-07-14 16:37:53', '2016-07-14 21:38:39', '2016-07-14 21:38:39'), (212, 101, 'soilHumidity2', '804', '2016-07-14 16:37:56', '2016-07-14 21:38:39', '2016-07-14 21:38:39'), (213, 101, 'soilHumidity1', '868.5', '2016-07-14 16:38:30', '2016-07-14 21:39:11', '2016-07-14 21:39:11'), (214, 101, 'airHumidity', '68.5', '2016-07-14 16:38:29', '2016-07-14 21:39:11', '2016-07-14 21:39:11'), (215, 101, 'temperature', '22', '2016-07-14 16:38:30', '2016-07-14 21:39:11', '2016-07-14 21:39:11'), (216, 101, 'luminance', '91', '2016-07-14 16:38:30', '2016-07-14 21:39:11', '2016-07-14 21:39:11'), (217, 101, 'soilHumidity2', '802', '2016-07-14 16:38:30', '2016-07-14 21:39:11', '2016-07-14 21:39:11'), (218, 101, 'soilHumidity1', '869.5', '2016-07-14 16:39:02', '2016-07-14 21:39:43', '2016-07-14 21:39:43'), (219, 101, 'airHumidity', '68.5', '2016-07-14 16:39:02', '2016-07-14 21:39:43', '2016-07-14 21:39:43'), (220, 101, 'temperature', '22', '2016-07-14 16:39:01', '2016-07-14 21:39:43', '2016-07-14 21:39:43'), (221, 101, 'luminance', '91', '2016-07-14 16:39:06', '2016-07-14 21:39:43', '2016-07-14 21:39:43'), (222, 101, 'soilHumidity2', '802', '2016-07-14 16:38:30', '2016-07-14 21:39:43', '2016-07-14 21:39:43'), (223, 101, 'soilHumidity1', '868', '2016-07-14 16:39:29', '2016-07-14 21:40:15', '2016-07-14 21:40:15'), (224, 101, 'airHumidity', '68.5', '2016-07-14 16:39:12', '2016-07-14 21:40:15', '2016-07-14 21:40:15'), (225, 101, 'temperature', '22', '2016-07-14 16:39:33', '2016-07-14 21:40:15', '2016-07-14 21:40:15'), (226, 101, 'luminance', '91', '2016-07-14 16:39:30', '2016-07-14 21:40:15', '2016-07-14 21:40:15'), (227, 101, 'soilHumidity2', '802', '2016-07-14 16:39:33', '2016-07-14 21:40:15', '2016-07-14 21:40:15'), (228, 101, 'soilHumidity1', '869', '2016-07-14 16:40:03', '2016-07-14 21:40:47', '2016-07-14 21:40:47'), (229, 101, 'airHumidity', '68.75', '2016-07-14 16:40:02', '2016-07-14 21:40:47', '2016-07-14 21:40:47'), (230, 101, 'temperature', '22', '2016-07-14 16:40:07', '2016-07-14 21:40:47', '2016-07-14 21:40:47'), (231, 101, 'luminance', '91', '2016-07-14 16:40:08', '2016-07-14 21:40:47', '2016-07-14 21:40:47'), (232, 101, 'soilHumidity2', '803.5', '2016-07-14 16:40:08', '2016-07-14 21:40:47', '2016-07-14 21:40:47'), (233, 101, 'soilHumidity1', '868', '2016-07-14 16:40:36', '2016-07-14 21:41:19', '2016-07-14 21:41:19'), (234, 101, 'airHumidity', '69', '2016-07-14 16:40:35', '2016-07-14 21:41:19', '2016-07-14 21:41:19'), (235, 101, 'temperature', '22', '2016-07-14 16:40:39', '2016-07-14 21:41:19', '2016-07-14 21:41:19'), (236, 101, 'luminance', '91', '2016-07-14 16:40:39', '2016-07-14 21:41:19', '2016-07-14 21:41:19'), (237, 101, 'soilHumidity2', '803', '2016-07-14 16:40:39', '2016-07-14 21:41:19', '2016-07-14 21:41:19'), (238, 101, 'soilHumidity1', '868', '2016-07-14 16:41:13', '2016-07-14 21:41:52', '2016-07-14 21:41:52'), (239, 101, 'airHumidity', '68.75', '2016-07-14 16:41:08', '2016-07-14 21:41:52', '2016-07-14 21:41:52'), (240, 101, 'temperature', '22', '2016-07-14 16:41:17', '2016-07-14 21:41:52', '2016-07-14 21:41:52'), (241, 101, 'luminance', '91', '2016-07-14 16:41:14', '2016-07-14 21:41:52', '2016-07-14 21:41:52'), (242, 101, 'soilHumidity2', '802', '2016-07-14 16:41:17', '2016-07-14 21:41:52', '2016-07-14 21:41:52'), (243, 101, 'soilHumidity1', '868', '2016-07-14 16:41:49', '2016-07-14 21:42:23', '2016-07-14 21:42:23'), (244, 101, 'airHumidity', '68.5', '2016-07-14 16:41:47', '2016-07-14 21:42:23', '2016-07-14 21:42:23'), (245, 101, 'temperature', '22', '2016-07-14 16:41:47', '2016-07-14 21:42:23', '2016-07-14 21:42:23'), (246, 101, 'luminance', '91', '2016-07-14 16:41:49', '2016-07-14 21:42:23', '2016-07-14 21:42:23'), (247, 101, 'soilHumidity2', '801.5', '2016-07-14 16:41:45', '2016-07-14 21:42:23', '2016-07-14 21:42:23'), (248, 101, 'soilHumidity1', '868', '2016-07-14 16:42:15', '2016-07-14 21:42:56', '2016-07-14 21:42:56'), (249, 101, 'airHumidity', '68.5', '2016-07-14 16:42:22', '2016-07-14 21:42:56', '2016-07-14 21:42:56'), (250, 101, 'temperature', '22', '2016-07-14 16:42:22', '2016-07-14 21:42:56', '2016-07-14 21:42:56'), (251, 101, 'luminance', '91', '2016-07-14 16:42:11', '2016-07-14 21:42:56', '2016-07-14 21:42:56'), (252, 101, 'soilHumidity2', '801', '2016-07-14 16:42:22', '2016-07-14 21:42:56', '2016-07-14 21:42:56'), (253, 101, 'soilHumidity1', '869', '2016-07-14 16:42:47', '2016-07-14 21:43:30', '2016-07-14 21:43:30'), (254, 101, 'airHumidity', '68.75', '2016-07-14 16:42:53', '2016-07-14 21:43:30', '2016-07-14 21:43:30'), (255, 101, 'temperature', '22', '2016-07-14 16:42:53', '2016-07-14 21:43:30', '2016-07-14 21:43:30'), (256, 101, 'luminance', '91', '2016-07-14 16:42:42', '2016-07-14 21:43:30', '2016-07-14 21:43:30'), (257, 101, 'soilHumidity2', '802.5', '2016-07-14 16:42:54', '2016-07-14 21:43:30', '2016-07-14 21:43:30'), (258, 101, 'soilHumidity1', '872.5', '2016-07-14 16:43:25', '2016-07-14 21:44:01', '2016-07-14 21:44:01'), (259, 101, 'airHumidity', '69', '2016-07-14 16:43:25', '2016-07-14 21:44:01', '2016-07-14 21:44:01'), (260, 101, 'temperature', '22', '2016-07-14 16:43:25', '2016-07-14 21:44:01', '2016-07-14 21:44:01'), (261, 101, 'luminance', '91', '2016-07-14 16:43:03', '2016-07-14 21:44:01', '2016-07-14 21:44:01'), (262, 101, 'soilHumidity2', '802', '2016-07-14 16:43:03', '2016-07-14 21:44:01', '2016-07-14 21:44:01'), (263, 101, 'soilHumidity1', '869', '2016-07-14 16:43:57', '2016-07-14 21:44:34', '2016-07-14 21:44:34'), (264, 101, 'airHumidity', '69', '2016-07-14 16:43:43', '2016-07-14 21:44:34', '2016-07-14 21:44:34'), (265, 101, 'temperature', '22', '2016-07-14 16:43:44', '2016-07-14 21:44:34', '2016-07-14 21:44:34'), (266, 101, 'luminance', '87.25', '2016-07-14 16:43:40', '2016-07-14 21:44:34', '2016-07-14 21:44:34'), (267, 101, 'soilHumidity2', '805.5', '2016-07-14 16:43:40', '2016-07-14 21:44:34', '2016-07-14 21:44:34'), (268, 101, 'soilHumidity1', '868', '2016-07-14 16:44:26', '2016-07-14 21:45:07', '2016-07-14 21:45:07'), (269, 101, 'airHumidity', '69', '2016-07-14 16:44:22', '2016-07-14 21:45:07', '2016-07-14 21:45:07'), (270, 101, 'temperature', '22', '2016-07-14 16:44:23', '2016-07-14 21:45:07', '2016-07-14 21:45:07'), (271, 101, 'luminance', '84', '2016-07-14 16:44:26', '2016-07-14 21:45:07', '2016-07-14 21:45:07'), (272, 101, 'soilHumidity2', '803', '2016-07-14 16:44:23', '2016-07-14 21:45:07', '2016-07-14 21:45:07'), (273, 101, 'soilHumidity1', '868.5', '2016-07-14 16:45:01', '2016-07-14 21:45:47', '2016-07-14 21:45:47'), (274, 101, 'airHumidity', '69', '2016-07-14 16:45:00', '2016-07-14 21:45:47', '2016-07-14 21:45:47'), (275, 101, 'temperature', '22', '2016-07-14 16:45:00', '2016-07-14 21:45:47', '2016-07-14 21:45:47'), (276, 101, 'luminance', '91', '2016-07-14 16:44:50', '2016-07-14 21:45:47', '2016-07-14 21:45:47'), (277, 101, 'soilHumidity2', '804.5', '2016-07-14 16:44:50', '2016-07-14 21:45:47', '2016-07-14 21:45:47'), (278, 101, 'soilHumidity1', '868.5', '2016-07-14 16:45:01', '2016-07-14 21:46:46', '2016-07-14 21:46:46'), (279, 101, 'airHumidity', '69', '2016-07-14 16:45:00', '2016-07-14 21:46:46', '2016-07-14 21:46:46'), (280, 101, 'temperature', '22', '2016-07-14 16:45:00', '2016-07-14 21:46:46', '2016-07-14 21:46:46'), (281, 101, 'luminance', '91', '2016-07-14 16:44:50', '2016-07-14 21:46:46', '2016-07-14 21:46:46'), (282, 101, 'soilHumidity2', '804.5', '2016-07-14 16:44:50', '2016-07-14 21:46:46', '2016-07-14 21:46:46'), (283, 101, 'soilHumidity1', '869', '2016-07-14 16:45:48', '2016-07-14 21:46:57', '2016-07-14 21:46:57'), (284, 101, 'airHumidity', '69.25', '2016-07-14 16:45:54', '2016-07-14 21:46:57', '2016-07-14 21:46:57'), (285, 101, 'temperature', '22', '2016-07-14 16:45:54', '2016-07-14 21:46:57', '2016-07-14 21:46:57'), (286, 101, 'luminance', '91', '2016-07-14 16:44:50', '2016-07-14 21:46:57', '2016-07-14 21:46:57'), (287, 101, 'soilHumidity2', '804.5', '2016-07-14 16:44:50', '2016-07-14 21:46:57', '2016-07-14 21:46:57'), (288, 101, 'soilHumidity1', '868.5', '2016-07-14 16:46:45', '2016-07-14 21:47:31', '2016-07-14 21:47:31'), (289, 101, 'airHumidity', '69.5', '2016-07-14 16:46:45', '2016-07-14 21:47:31', '2016-07-14 21:47:31'), (290, 101, 'temperature', '22', '2016-07-14 16:46:45', '2016-07-14 21:47:31', '2016-07-14 21:47:31'), (291, 101, 'luminance', '91', '2016-07-14 16:46:47', '2016-07-14 21:47:31', '2016-07-14 21:47:31'), (292, 101, 'soilHumidity2', '805', '2016-07-14 16:46:44', '2016-07-14 21:47:31', '2016-07-14 21:47:31'), (293, 101, 'soilHumidity1', '868', '2016-07-14 16:47:21', '2016-07-14 21:48:03', '2016-07-14 21:48:03'), (294, 101, 'airHumidity', '69.25', '2016-07-14 16:47:21', '2016-07-14 21:48:03', '2016-07-14 21:48:03'), (295, 101, 'temperature', '22', '2016-07-14 16:47:21', '2016-07-14 21:48:03', '2016-07-14 21:48:03'), (296, 101, 'luminance', '91', '2016-07-14 16:47:23', '2016-07-14 21:48:03', '2016-07-14 21:48:03'), (297, 101, 'soilHumidity2', '801.5', '2016-07-14 16:47:18', '2016-07-14 21:48:03', '2016-07-14 21:48:03'), (298, 101, 'soilHumidity1', '868', '2016-07-14 16:47:51', '2016-07-14 21:48:36', '2016-07-14 21:48:36'), (299, 101, 'airHumidity', '69.5', '2016-07-14 16:48:02', '2016-07-14 21:48:36', '2016-07-14 21:48:36'), (300, 101, 'temperature', '22', '2016-07-14 16:47:53', '2016-07-14 21:48:36', '2016-07-14 21:48:36'), (301, 101, 'luminance', '91', '2016-07-14 16:47:53', '2016-07-14 21:48:36', '2016-07-14 21:48:36'), (302, 101, 'soilHumidity2', '804', '2016-07-14 16:48:00', '2016-07-14 21:48:36', '2016-07-14 21:48:36'), (303, 101, 'soilHumidity1', '868', '2016-07-14 16:48:32', '2016-07-14 21:49:08', '2016-07-14 21:49:08'), (304, 101, 'airHumidity', '69.5', '2016-07-14 16:48:32', '2016-07-14 21:49:08', '2016-07-14 21:49:08'), (305, 101, 'temperature', '22', '2016-07-14 16:48:32', '2016-07-14 21:49:08', '2016-07-14 21:49:08'), (306, 101, 'luminance', '91', '2016-07-14 16:48:23', '2016-07-14 21:49:08', '2016-07-14 21:49:08'), (307, 101, 'soilHumidity2', '802.5', '2016-07-14 16:48:20', '2016-07-14 21:49:08', '2016-07-14 21:49:08'), (308, 101, 'soilHumidity1', '868.5', '2016-07-14 16:48:59', '2016-07-14 21:49:40', '2016-07-14 21:49:40'), (309, 101, 'airHumidity', '69.5', '2016-07-14 16:49:05', '2016-07-14 21:49:41', '2016-07-14 21:49:41'), (310, 101, 'temperature', '22', '2016-07-14 16:49:06', '2016-07-14 21:49:41', '2016-07-14 21:49:41'), (311, 101, 'luminance', '91', '2016-07-14 16:48:59', '2016-07-14 21:49:41', '2016-07-14 21:49:41'), (312, 101, 'soilHumidity2', '804', '2016-07-14 16:49:04', '2016-07-14 21:49:41', '2016-07-14 21:49:41'), (313, 101, 'soilHumidity1', '868', '2016-07-14 16:52:37', '2016-07-14 21:53:20', '2016-07-14 21:53:20'), (314, 101, 'soilHumidity2', '802.5', '2016-07-14 16:52:43', '2016-07-14 21:53:20', '2016-07-14 21:53:20'), (315, 101, 'temperature', '22', '2016-07-14 16:52:39', '2016-07-14 21:53:20', '2016-07-14 21:53:20'), (316, 101, 'airHumidity', '69', '2016-07-14 16:52:28', '2016-07-14 21:53:20', '2016-07-14 21:53:20'), (317, 101, 'luminance', '91', '2016-07-14 16:52:43', '2016-07-14 21:53:20', '2016-07-14 21:53:20'), (318, 101, 'temperature', '22.5', '2016-07-14 18:15:30', '2016-07-14 23:16:13', '2016-07-14 23:16:13'), (319, 101, 'soilHumidity2', '474', '2016-07-14 18:15:30', '2016-07-14 23:16:13', '2016-07-14 23:16:13'), (320, 101, 'luminance', '86', '2016-07-14 18:15:30', '2016-07-14 23:16:13', '2016-07-14 23:16:13'), (321, 101, 'airHumidity', '69', '2016-07-14 18:15:29', '2016-07-14 23:16:13', '2016-07-14 23:16:13'), (322, 101, 'soilHumidity1', '869.5', '2016-07-14 18:15:36', '2016-07-14 23:16:13', '2016-07-14 23:16:13'), (323, 101, 'temperature', '23', '2016-07-14 18:19:01', '2016-07-14 23:19:48', '2016-07-14 23:19:48'), (324, 101, 'soilHumidity2', '469.5', '2016-07-14 18:19:02', '2016-07-14 23:19:48', '2016-07-14 23:19:48'), (325, 101, 'luminance', '86', '2016-07-14 18:18:50', '2016-07-14 23:19:48', '2016-07-14 23:19:48'), (326, 101, 'airHumidity', '69.75', '2016-07-14 18:19:01', '2016-07-14 23:19:48', '2016-07-14 23:19:48'), (327, 101, 'soilHumidity1', '869.5', '2016-07-14 18:18:52', '2016-07-14 23:19:48', '2016-07-14 23:19:48'), (328, 101, 'temperature', '23', '2016-07-14 18:22:35', '2016-07-14 23:23:13', '2016-07-14 23:23:13'), (329, 101, 'soilHumidity2', '487', '2016-07-14 18:22:31', '2016-07-14 23:23:13', '2016-07-14 23:23:13'), (330, 101, 'luminance', '86', '2016-07-14 18:22:29', '2016-07-14 23:23:13', '2016-07-14 23:23:13'), (331, 101, 'airHumidity', '70.25', '2016-07-14 18:22:35', '2016-07-14 23:23:13', '2016-07-14 23:23:13'), (332, 101, 'soilHumidity1', '868', '2016-07-14 18:22:29', '2016-07-14 23:23:13', '2016-07-14 23:23:13'), (333, 101, 'temperature', '23', '2016-07-14 18:25:57', '2016-07-14 23:26:32', '2016-07-14 23:26:32'), (334, 101, 'soilHumidity2', '393.5', '2016-07-14 18:25:51', '2016-07-14 23:26:32', '2016-07-14 23:26:32'), (335, 101, 'luminance', '91', '2016-07-14 18:25:48', '2016-07-14 23:26:32', '2016-07-14 23:26:32'), (336, 101, 'airHumidity', '70.5', '2016-07-14 18:25:56', '2016-07-14 23:26:32', '2016-07-14 23:26:32'), (337, 101, 'soilHumidity1', '868.5', '2016-07-14 18:25:57', '2016-07-14 23:26:32', '2016-07-14 23:26:32'), (338, 101, 'temperature', '23', '2016-07-14 18:29:12', '2016-07-14 23:29:57', '2016-07-14 23:29:57'), (339, 101, 'soilHumidity2', '600.5', '2016-07-14 18:29:12', '2016-07-14 23:29:57', '2016-07-14 23:29:57'), (340, 101, 'luminance', '91', '2016-07-14 18:29:03', '2016-07-14 23:29:57', '2016-07-14 23:29:57'), (341, 101, 'airHumidity', '70.5', '2016-07-14 18:29:11', '2016-07-14 23:29:57', '2016-07-14 23:29:57'), (342, 101, 'soilHumidity1', '868', '2016-07-14 18:29:06', '2016-07-14 23:29:57', '2016-07-14 23:29:57'), (343, 101, 'temperature', '23', '2016-07-14 18:32:46', '2016-07-14 23:33:22', '2016-07-14 23:33:22'), (344, 101, 'soilHumidity2', '438', '2016-07-14 18:32:43', '2016-07-14 23:33:22', '2016-07-14 23:33:22'), (345, 101, 'luminance', '91', '2016-07-14 18:32:35', '2016-07-14 23:33:22', '2016-07-14 23:33:22'), (346, 101, 'airHumidity', '70', '2016-07-14 18:32:46', '2016-07-14 23:33:22', '2016-07-14 23:33:22'), (347, 101, 'soilHumidity1', '868', '2016-07-14 18:32:46', '2016-07-14 23:33:22', '2016-07-14 23:33:22'), (348, 101, 'temperature', '23', '2016-07-14 18:35:55', '2016-07-14 23:36:41', '2016-07-14 23:36:41'), (349, 101, 'soilHumidity2', '448', '2016-07-14 18:35:55', '2016-07-14 23:36:41', '2016-07-14 23:36:41'), (350, 101, 'luminance', '39', '2016-07-14 18:35:58', '2016-07-14 23:36:41', '2016-07-14 23:36:41'), (351, 101, 'airHumidity', '67.5', '2016-07-14 18:35:55', '2016-07-14 23:36:41', '2016-07-14 23:36:41'), (352, 101, 'soilHumidity1', '878.5', '2016-07-14 18:36:05', '2016-07-14 23:36:41', '2016-07-14 23:36:41'), (353, 101, 'temperature', '23', '2016-07-14 18:39:16', '2016-07-14 23:40:01', '2016-07-14 23:40:01'), (354, 101, 'soilHumidity2', '485', '2016-07-14 18:39:15', '2016-07-14 23:40:01', '2016-07-14 23:40:01'), (355, 101, 'luminance', '89.75', '2016-07-14 18:39:16', '2016-07-14 23:40:01', '2016-07-14 23:40:01'), (356, 101, 'airHumidity', '68.5', '2016-07-14 18:39:27', '2016-07-14 23:40:01', '2016-07-14 23:40:01'), (357, 101, 'soilHumidity1', '874.5', '2016-07-14 18:39:27', '2016-07-14 23:40:01', '2016-07-14 23:40:01'), (358, 101, 'temperature', '23', '2016-07-14 18:42:45', '2016-07-14 23:43:21', '2016-07-14 23:43:21'), (359, 101, 'soilHumidity2', '413', '2016-07-14 18:42:40', '2016-07-14 23:43:21', '2016-07-14 23:43:21'), (360, 101, 'luminance', '90.5', '2016-07-14 18:42:46', '2016-07-14 23:43:21', '2016-07-14 23:43:21'), (361, 101, 'airHumidity', '69', '2016-07-14 18:42:45', '2016-07-14 23:43:21', '2016-07-14 23:43:21'), (362, 101, 'soilHumidity1', '873', '2016-07-14 18:42:46', '2016-07-14 23:43:21', '2016-07-14 23:43:21'), (363, 101, 'temperature', '23.5', '2016-07-14 18:46:03', '2016-07-14 23:46:47', '2016-07-14 23:46:47'), (364, 101, 'soilHumidity2', '478', '2016-07-14 18:46:08', '2016-07-14 23:46:47', '2016-07-14 23:46:47'), (365, 101, 'luminance', '89', '2016-07-14 18:46:03', '2016-07-14 23:46:47', '2016-07-14 23:46:47'), (366, 101, 'airHumidity', '68.5', '2016-07-14 18:46:13', '2016-07-14 23:46:47', '2016-07-14 23:46:47'), (367, 101, 'soilHumidity1', '871.5', '2016-07-14 18:46:03', '2016-07-14 23:46:47', '2016-07-14 23:46:47'), (368, 101, 'temperature', '23.5', '2016-07-14 18:48:11', '2016-07-14 23:50:27', '2016-07-14 23:50:27'), (369, 101, 'soilHumidity2', '482', '2016-07-14 18:48:11', '2016-07-14 23:50:27', '2016-07-14 23:50:27'), (370, 101, 'luminance', '90.75', '2016-07-14 18:49:27', '2016-07-14 23:50:27', '2016-07-14 23:50:27'), (371, 101, 'airHumidity', '69.25', '2016-07-14 18:49:36', '2016-07-14 23:50:27', '2016-07-14 23:50:27'), (372, 101, 'soilHumidity1', '873.5', '2016-07-14 18:49:28', '2016-07-14 23:50:27', '2016-07-14 23:50:27'), (373, 101, 'soilHumidity1', '872', '2016-07-14 18:53:45', '2016-07-14 23:54:31', '2016-07-14 23:54:31'), (374, 101, 'airHumidity', '68.5', '2016-07-14 18:53:55', '2016-07-14 23:54:31', '2016-07-14 23:54:31'), (375, 101, 'temperature', '24.5', '2016-07-14 18:53:55', '2016-07-14 23:54:31', '2016-07-14 23:54:31'), (376, 101, 'soilHumidity2', '416', '2016-07-14 18:53:53', '2016-07-14 23:54:31', '2016-07-14 23:54:31'), (377, 101, 'luminance', '89.5', '2016-07-14 18:53:45', '2016-07-14 23:54:31', '2016-07-14 23:54:31'), (378, 101, 'soilHumidity1', '871', '2016-07-14 18:57:13', '2016-07-14 23:57:52', '2016-07-14 23:57:52'), (379, 101, 'airHumidity', '68', '2016-07-14 18:57:12', '2016-07-14 23:57:52', '2016-07-14 23:57:52'), (380, 101, 'temperature', '24.5', '2016-07-14 18:57:13', '2016-07-14 23:57:52', '2016-07-14 23:57:52'), (381, 101, 'soilHumidity2', '394.5', '2016-07-14 18:57:16', '2016-07-14 23:57:52', '2016-07-14 23:57:52'), (382, 101, 'luminance', '89.5', '2016-07-14 18:57:14', '2016-07-14 23:57:52', '2016-07-14 23:57:52'), (383, 101, 'soilHumidity1', '869', '2016-07-14 19:00:37', '2016-07-15 00:01:13', '2016-07-15 00:01:13'), (384, 101, 'airHumidity', '68', '2016-07-14 19:00:38', '2016-07-15 00:01:13', '2016-07-15 00:01:13'), (385, 101, 'temperature', '24', '2016-07-14 19:00:38', '2016-07-15 00:01:13', '2016-07-15 00:01:13'), (386, 101, 'soilHumidity2', '480', '2016-07-14 19:00:27', '2016-07-15 00:01:13', '2016-07-15 00:01:13'), (387, 101, 'luminance', '89.5', '2016-07-14 19:00:27', '2016-07-15 00:01:13', '2016-07-15 00:01:13'), (388, 101, 'soilHumidity2', '557', '2016-07-14 19:08:54', '2016-07-15 00:09:29', '2016-07-15 00:09:29'), (389, 101, 'temperature', '22', '2016-07-14 19:08:48', '2016-07-15 00:09:29', '2016-07-15 00:09:29'), (390, 101, 'soilHumidity1', '874.5', '2016-07-14 19:08:48', '2016-07-15 00:09:29', '2016-07-15 00:09:29'), (391, 101, 'airHumidity', '65.75', '2016-07-14 19:08:54', '2016-07-15 00:09:29', '2016-07-15 00:09:29'), (392, 101, 'luminance', '90', '2016-07-14 19:08:54', '2016-07-15 00:09:29', '2016-07-15 00:09:29'), (393, 101, 'soilHumidity1', '880', '2016-07-14 19:14:19', '2016-07-15 00:15:05', '2016-07-15 00:15:05'), (394, 101, 'soilHumidity2', '630.5', '2016-07-14 19:14:16', '2016-07-15 00:15:05', '2016-07-15 00:15:05'), (395, 101, 'airHumidity', '67.5', '2016-07-14 19:14:16', '2016-07-15 00:15:05', '2016-07-15 00:15:05'), (396, 101, 'temperature', '23', '2016-07-14 19:14:26', '2016-07-15 00:15:05', '2016-07-15 00:15:05'), (397, 101, 'luminance', '86', '2016-07-14 19:14:28', '2016-07-15 00:15:05', '2016-07-15 00:15:05'), (398, 101, 'soilHumidity2', '850.5', '2016-07-14 19:20:21', '2016-07-15 00:21:17', '2016-07-15 00:21:17'), (399, 101, 'airHumidity', '66.5', '2016-07-14 19:20:32', '2016-07-15 00:21:18', '2016-07-15 00:21:18'), (400, 101, 'temperature', '23.25', '2016-07-14 19:20:15', '2016-07-15 00:21:18', '2016-07-15 00:21:18'), (401, 101, 'soilHumidity1', '878.5', '2016-07-14 19:20:00', '2016-07-15 00:21:18', '2016-07-15 00:21:18'), (402, 101, 'luminance', '92.5', '2016-07-14 19:20:25', '2016-07-15 00:21:18', '2016-07-15 00:21:18'), (403, 101, 'soilHumidity2', '851.5', '2016-07-14 19:23:42', '2016-07-15 00:24:38', '2016-07-15 00:24:38'), (404, 101, 'airHumidity', '69', '2016-07-14 19:23:42', '2016-07-15 00:24:39', '2016-07-15 00:24:39'), (405, 101, 'temperature', '23', '2016-07-14 19:23:56', '2016-07-15 00:24:39', '2016-07-15 00:24:39'), (406, 101, 'soilHumidity1', '876.5', '2016-07-14 19:24:00', '2016-07-15 00:24:39', '2016-07-15 00:24:39'), (407, 101, 'luminance', '86', '2016-07-14 19:23:34', '2016-07-15 00:24:39', '2016-07-15 00:24:39'), (408, 101, 'soilHumidity2', '850.5', '2016-07-14 19:27:11', '2016-07-15 00:27:58', '2016-07-15 00:27:58'), (409, 101, 'airHumidity', '74.75', '2016-07-14 19:26:54', '2016-07-15 00:27:58', '2016-07-15 00:27:58'), (410, 101, 'temperature', '23.5', '2016-07-14 19:27:09', '2016-07-15 00:27:58', '2016-07-15 00:27:58'), (411, 101, 'soilHumidity1', '877', '2016-07-14 19:27:17', '2016-07-15 00:27:58', '2016-07-15 00:27:58'), (412, 101, 'luminance', '86', '2016-07-14 19:27:11', '2016-07-15 00:27:58', '2016-07-15 00:27:58'), (413, 101, 'soilHumidity2', '853', '2016-07-14 19:29:02', '2016-07-15 00:31:20', '2016-07-15 00:31:20'), (414, 101, 'airHumidity', '78.75', '2016-07-14 19:29:06', '2016-07-15 00:31:20', '2016-07-15 00:31:20'), (415, 101, 'temperature', '23.5', '2016-07-14 19:29:06', '2016-07-15 00:31:20', '2016-07-15 00:31:20'), (416, 101, 'soilHumidity1', '880', '2016-07-14 19:29:12', '2016-07-15 00:31:20', '2016-07-15 00:31:20'), (417, 101, 'luminance', '31.25', '2016-07-14 19:29:12', '2016-07-15 00:31:20', '2016-07-15 00:31:20'), (418, 101, 'soilHumidity2', '850', '2016-07-14 19:55:11', '2016-07-15 00:55:57', '2016-07-15 00:55:57'), (419, 101, 'airHumidity', '73', '2016-07-14 19:54:52', '2016-07-15 00:55:57', '2016-07-15 00:55:57'), (420, 101, 'soilHumidity1', '878', '2016-07-14 19:55:17', '2016-07-15 00:55:57', '2016-07-15 00:55:57'), (421, 101, 'luminance', '90.5', '2016-07-14 19:55:17', '2016-07-15 00:55:57', '2016-07-15 00:55:57'), (422, 101, 'temperature', '23', '2016-07-14 19:55:06', '2016-07-15 00:55:57', '2016-07-15 00:55:57'), (423, 101, 'soilHumidity2', '851', '2016-07-14 19:58:40', '2016-07-15 00:59:19', '2016-07-15 00:59:19'), (424, 101, 'airHumidity', '78', '2016-07-14 19:58:21', '2016-07-15 00:59:19', '2016-07-15 00:59:19'), (425, 101, 'soilHumidity1', '878', '2016-07-14 19:58:44', '2016-07-15 00:59:19', '2016-07-15 00:59:19'), (426, 101, 'luminance', '90.5', '2016-07-14 19:58:45', '2016-07-15 00:59:19', '2016-07-15 00:59:19'), (427, 101, 'temperature', '23', '2016-07-14 19:58:35', '2016-07-15 00:59:19', '2016-07-15 00:59:19'), (428, 101, 'soilHumidity2', '851.5', '2016-07-14 20:01:41', '2016-07-15 01:02:41', '2016-07-15 01:02:41'), (429, 101, 'airHumidity', '72', '2016-07-14 20:01:49', '2016-07-15 01:02:41', '2016-07-15 01:02:41'), (430, 101, 'soilHumidity1', '877.5', '2016-07-14 20:02:04', '2016-07-15 01:02:41', '2016-07-15 01:02:41'), (431, 101, 'luminance', '92.5', '2016-07-14 20:02:04', '2016-07-15 01:02:41', '2016-07-15 01:02:41'), (432, 101, 'temperature', '22', '2016-07-14 20:01:38', '2016-07-15 01:02:41', '2016-07-15 01:02:41'), (433, 101, 'soilHumidity2', '848.5', '2016-07-14 20:05:24', '2016-07-15 01:06:03', '2016-07-15 01:06:03'), (434, 101, 'airHumidity', '71', '2016-07-14 20:05:06', '2016-07-15 01:06:03', '2016-07-15 01:06:03'), (435, 101, 'soilHumidity1', '877.5', '2016-07-14 20:04:57', '2016-07-15 01:06:03', '2016-07-15 01:06:03'), (436, 101, 'luminance', '89.5', '2016-07-14 20:04:57', '2016-07-15 01:06:03', '2016-07-15 01:06:03'), (437, 101, 'temperature', '21.75', '2016-07-14 20:05:21', '2016-07-15 01:06:03', '2016-07-15 01:06:03'), (438, 101, 'soilHumidity2', '849', '2016-07-14 20:08:28', '2016-07-15 01:09:23', '2016-07-15 01:09:23'), (439, 101, 'airHumidity', '74.5', '2016-07-14 20:08:09', '2016-07-15 01:09:23', '2016-07-15 01:09:23'), (440, 101, 'soilHumidity1', '876.5', '2016-07-14 20:08:41', '2016-07-15 01:09:23', '2016-07-15 01:09:23'), (441, 101, 'luminance', '89.5', '2016-07-14 20:08:42', '2016-07-15 01:09:23', '2016-07-15 01:09:23'), (442, 101, 'temperature', '22.5', '2016-07-14 20:08:24', '2016-07-15 01:09:23', '2016-07-15 01:09:23'), (443, 101, 'soilHumidity2', '849.5', '2016-07-14 20:11:41', '2016-07-15 01:12:46', '2016-07-15 01:12:46'), (444, 101, 'airHumidity', '79.5', '2016-07-14 20:11:53', '2016-07-15 01:12:46', '2016-07-15 01:12:46'), (445, 101, 'soilHumidity1', '878.5', '2016-07-14 20:11:37', '2016-07-15 01:12:46', '2016-07-15 01:12:46'), (446, 101, 'luminance', '89.5', '2016-07-14 20:11:46', '2016-07-15 01:12:46', '2016-07-15 01:12:46'), (447, 101, 'temperature', '22.5', '2016-07-14 20:12:06', '2016-07-15 01:12:46', '2016-07-15 01:12:46'), (448, 101, 'soilHumidity2', '849', '2016-07-14 20:15:22', '2016-07-15 01:16:10', '2016-07-15 01:16:10'), (449, 101, 'airHumidity', '83', '2016-07-14 20:15:32', '2016-07-15 01:16:10', '2016-07-15 01:16:10'), (450, 101, 'soilHumidity1', '876', '2016-07-14 20:15:31', '2016-07-15 01:16:10', '2016-07-15 01:16:10'), (451, 101, 'luminance', '89.25', '2016-07-14 20:15:22', '2016-07-15 01:16:10', '2016-07-15 01:16:10'), (452, 101, 'temperature', '22.5', '2016-07-14 20:15:33', '2016-07-15 01:16:10', '2016-07-15 01:16:10'), (453, 101, 'soilHumidity2', '849', '2016-07-14 20:18:58', '2016-07-15 01:19:33', '2016-07-15 01:19:33'), (454, 101, 'airHumidity', '81.5', '2016-07-14 20:18:57', '2016-07-15 01:19:33', '2016-07-15 01:19:33'), (455, 101, 'soilHumidity1', '875.5', '2016-07-14 20:18:52', '2016-07-15 01:19:33', '2016-07-15 01:19:33'), (456, 101, 'luminance', '89', '2016-07-14 20:18:58', '2016-07-15 01:19:33', '2016-07-15 01:19:33'), (457, 101, 'temperature', '22.5', '2016-07-14 20:18:58', '2016-07-15 01:19:33', '2016-07-15 01:19:33'), (458, 101, 'soilHumidity2', '849', '2016-07-14 20:21:57', '2016-07-15 01:22:54', '2016-07-15 01:22:54'), (459, 101, 'airHumidity', '79', '2016-07-14 20:21:37', '2016-07-15 01:22:54', '2016-07-15 01:22:54'), (460, 101, 'soilHumidity1', '872.5', '2016-07-14 20:22:08', '2016-07-15 01:22:54', '2016-07-15 01:22:54'), (461, 101, 'luminance', '90.5', '2016-07-14 20:22:01', '2016-07-15 01:22:54', '2016-07-15 01:22:54'), (462, 101, 'temperature', '23', '2016-07-14 20:21:51', '2016-07-15 01:22:54', '2016-07-15 01:22:54'), (463, 101, 'soilHumidity2', '850', '2016-07-14 20:25:31', '2016-07-15 01:26:15', '2016-07-15 01:26:15'), (464, 101, 'airHumidity', '78.75', '2016-07-14 20:25:09', '2016-07-15 01:26:15', '2016-07-15 01:26:15'), (465, 101, 'soilHumidity1', '872', '2016-07-14 20:25:30', '2016-07-15 01:26:15', '2016-07-15 01:26:15'), (466, 101, 'luminance', '90', '2016-07-14 20:25:31', '2016-07-15 01:26:15', '2016-07-15 01:26:15'), (467, 101, 'temperature', '23', '2016-07-14 20:25:23', '2016-07-15 01:26:15', '2016-07-15 01:26:15'), (468, 101, 'soilHumidity2', '848', '2016-07-14 20:28:58', '2016-07-15 01:29:37', '2016-07-15 01:29:37'), (469, 101, 'airHumidity', '81.5', '2016-07-14 20:28:59', '2016-07-15 01:29:37', '2016-07-15 01:29:37'), (470, 101, 'soilHumidity1', '873', '2016-07-14 20:28:59', '2016-07-15 01:29:37', '2016-07-15 01:29:37'), (471, 101, 'luminance', '90', '2016-07-14 20:29:01', '2016-07-15 01:29:37', '2016-07-15 01:29:37'), (472, 101, 'temperature', '23', '2016-07-14 20:28:58', '2016-07-15 01:29:37', '2016-07-15 01:29:37'); -- -------------------------------------------------------- -- -- Table structure for table `greenhouses` -- CREATE TABLE IF NOT EXISTS `greenhouses` ( `id` int(11) NOT NULL, `greenhouse_id` int(11) NOT NULL, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `working` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `greenhouses` -- INSERT INTO `greenhouses` (`id`, `greenhouse_id`, `name`, `working`, `created_at`, `updated_at`) VALUES (1, 101, 'greenhouse 1', 1, NULL, '2016-06-24 23:11:50'); -- -------------------------------------------------------- -- -- Table structure for table `options` -- CREATE TABLE IF NOT EXISTS `options` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `greenhouse_id` int(11) NOT NULL, `key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `minValue` float DEFAULT NULL, `maxValue` float DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ; -- -- Dumping data for table `options` -- INSERT INTO `options` (`id`, `greenhouse_id`, `key`, `minValue`, `maxValue`, `created_at`, `updated_at`) VALUES (3, 101, 'airHumidity', 80, 100, '2016-06-25 20:59:38', '2016-07-15 00:19:40'), (7, 101, 'temperature', 18, 35, '2016-06-25 20:59:38', '2016-07-04 21:13:10'), (10, 101, 'luminance', 60, 100, '2016-06-25 20:59:38', '2016-07-05 16:14:19'), (11, 101, 'soilHumidity', 300, 1024, '2016-06-28 13:32:17', '2016-07-03 22:18:49'); -- -------------------------------------------------------- -- -- Table structure for table `perform_actions` -- CREATE TABLE IF NOT EXISTS `perform_actions` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `action` varchar(255) DEFAULT '', `on` smallint(1) DEFAULT '0', `greenhouseId` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; -- -- Dumping data for table `perform_actions` -- INSERT INTO `perform_actions` (`id`, `action`, `on`, `greenhouseId`, `created_at`, `updated_at`) VALUES (1, 'pump1', 0, 101, NULL, '2016-07-15 00:28:27'), (2, 'pump2', 0, 101, NULL, '2016-07-15 00:28:27'), (3, 'light', 0, 101, NULL, '2016-07-15 00:28:27'), (4, 'fan', 0, 101, NULL, '2016-07-15 00:28:27'), (5, 'heater', 0, 101, NULL, '2016-07-15 00:28:27'), (6, 'steamer', 0, 101, NULL, '2016-07-15 00:28:27'), (7, 'vent', 0, 101, NULL, '2016-07-15 00:28:27'); -- -------------------------------------------------------- -- -- Table structure for table `preset_options` -- CREATE TABLE IF NOT EXISTS `preset_options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `preset_id` int(11) NOT NULL, `key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `minValue` float DEFAULT NULL, `maxValue` float DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=35 ; -- -- Dumping data for table `preset_options` -- INSERT INTO `preset_options` (`id`, `preset_id`, `key`, `minValue`, `maxValue`, `created_at`, `updated_at`) VALUES (10, 1, 'airHumidity', 10, 12, '2016-06-25 20:30:56', '2016-06-25 20:30:56'), (11, 1, 'soilHumidity', 12, 13, NULL, NULL), (12, 1, 'temperature', 23, 23, NULL, NULL), (13, 1, 'luminance', 12, 13, NULL, NULL), (19, 5, 'temperature', 1, 2, '2016-06-28 11:58:15', '2016-06-28 11:58:15'), (20, 5, 'airHumidity', 2, 3, '2016-06-28 11:58:15', '2016-06-28 11:58:15'), (21, 5, 'luminance', 3, 4, '2016-06-28 11:58:15', '2016-06-28 11:58:15'), (22, 5, 'soilHumidity', 4, 5, '2016-06-28 11:58:15', '2016-06-28 11:58:15'), (31, 8, 'temperature', 18, 26, '2016-07-02 17:27:50', '2016-07-02 17:27:50'), (32, 8, 'soilHumidity', 200, 600, '2016-07-02 17:27:50', '2016-07-02 17:27:50'), (33, 8, 'airHumidity', 40, 60, '2016-07-02 17:27:50', '2016-07-02 17:27:50'), (34, 8, 'luminance', 50, 80, '2016-07-02 17:27:50', '2016-07-02 17:27:50'); -- -------------------------------------------------------- -- -- Table structure for table `presets` -- CREATE TABLE IF NOT EXISTS `presets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=9 ; -- -- Dumping data for table `presets` -- INSERT INTO `presets` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'carrot', NULL, NULL), (5, 'cucumber', '2016-06-28 11:58:15', '2016-06-28 11:58:15'), (8, 'tomato', '2016-07-02 17:27:50', '2016-07-02 17:27:50'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/* Navicat MySQL Data Transfer Source Server : docker_192.168.33.10 Source Server Type : MySQL Source Server Version : 50724 Source Host : 192.168.33.10:3306 Source Schema : cloud_base Target Server Type : MySQL Target Server Version : 50724 File Encoding : 65001 Date: 23/11/2020 16:20:43 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for oauth_access_token -- ---------------------------- DROP TABLE IF EXISTS `oauth_access_token`; CREATE TABLE `oauth_access_token` ( `token_id` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `token` blob NULL, `authentication_id` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `user_name` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `client_id` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL, `authentication` blob NULL, `refresh_token` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of oauth_access_token -- ---------------------------- -- ---------------------------- -- Table structure for t_dept -- ---------------------------- DROP TABLE IF EXISTS `t_dept`; CREATE TABLE `t_dept` ( `DEPT_ID` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '部门ID', `PARENT_ID` bigint(20) NOT NULL COMMENT '上级部门ID', `DEPT_NAME` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '部门名称', `ORDER_NUM` double(20, 0) NULL DEFAULT NULL COMMENT '排序', `CREATE_TIME` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `MODIFY_TIME` datetime(0) NULL DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`DEPT_ID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '部门表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_dept -- ---------------------------- INSERT INTO `t_dept` VALUES (1, 0, '开发部', 1, '2020-11-19 11:39:22', '2020-11-19 11:39:22'); -- ---------------------------- -- Table structure for t_menu -- ---------------------------- DROP TABLE IF EXISTS `t_menu`; CREATE TABLE `t_menu` ( `MENU_ID` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '菜单/按钮ID', `PARENT_ID` bigint(20) NOT NULL COMMENT '上级菜单ID', `MENU_NAME` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单/按钮名称', `PATH` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '对应路由path', `COMPONENT` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '对应路由组件component', `PERMS` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限标识', `ICON` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标', `TYPE` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '类型 0菜单 1按钮', `ORDER_NUM` double(20, 0) NULL DEFAULT NULL COMMENT '排序', `CREATE_TIME` datetime(0) NOT NULL COMMENT '创建时间', `MODIFY_TIME` datetime(0) NULL DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`MENU_ID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '菜单表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_menu -- ---------------------------- INSERT INTO `t_menu` VALUES (1, 0, '系统管理', '/system', 'Layout', NULL, 'el-icon-set-up', '0', 1, '2020-11-19 11:39:22', '2020-11-19 11:39:22'); INSERT INTO `t_menu` VALUES (2, 1, '用户管理', '/system/user', 'febs/system/user/Index', 'user:view', '', '0', 1, '2020-11-19 11:39:22', '2020-11-19 11:39:22'); INSERT INTO `t_menu` VALUES (3, 2, '新增用户', '', '', 'user:add', NULL, '1', NULL, '2020-11-19 11:39:22', NULL); INSERT INTO `t_menu` VALUES (4, 2, '修改用户', '', '', 'user:update', NULL, '1', NULL, '2020-11-19 11:39:22', NULL); INSERT INTO `t_menu` VALUES (5, 2, '删除用户', '', '', 'user:delete', NULL, '1', NULL, '2020-11-19 11:39:22', NULL); -- ---------------------------- -- Table structure for t_role -- ---------------------------- DROP TABLE IF EXISTS `t_role`; CREATE TABLE `t_role` ( `ROLE_ID` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '角色ID', `ROLE_NAME` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称', `REMARK` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色描述', `CREATE_TIME` datetime(0) NOT NULL COMMENT '创建时间', `MODIFY_TIME` datetime(0) NULL DEFAULT NULL COMMENT '修改时间', PRIMARY KEY (`ROLE_ID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_role -- ---------------------------- INSERT INTO `t_role` VALUES (1, '管理员', '管理员', '2020-11-19 11:18:36', '2020-11-19 11:18:36'); -- ---------------------------- -- Table structure for t_role_menu -- ---------------------------- DROP TABLE IF EXISTS `t_role_menu`; CREATE TABLE `t_role_menu` ( `ROLE_ID` bigint(20) NOT NULL, `MENU_ID` bigint(20) NOT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单关联表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_role_menu -- ---------------------------- INSERT INTO `t_role_menu` VALUES (1, 1); INSERT INTO `t_role_menu` VALUES (1, 2); INSERT INTO `t_role_menu` VALUES (1, 3); INSERT INTO `t_role_menu` VALUES (1, 4); INSERT INTO `t_role_menu` VALUES (1, 5); -- ---------------------------- -- Table structure for t_user -- ---------------------------- DROP TABLE IF EXISTS `t_user`; CREATE TABLE `t_user` ( `USER_ID` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '用户ID', `USERNAME` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户名', `PASSWORD` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码', `DEPT_ID` bigint(20) NULL DEFAULT NULL COMMENT '部门ID', `EMAIL` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱', `MOBILE` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', `STATUS` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '状态 0锁定 1有效', `CREATE_TIME` datetime(0) NOT NULL COMMENT '创建时间', `MODIFY_TIME` datetime(0) NULL DEFAULT NULL COMMENT '修改时间', `LAST_LOGIN_TIME` datetime(0) NULL DEFAULT NULL COMMENT '最近访问时间', `SSEX` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别 0男 1女 2保密', `AVATAR` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '头像', `DESCRIPTION` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述', PRIMARY KEY (`USER_ID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_user -- ---------------------------- INSERT INTO `t_user` VALUES (1, 'Prock.Liy', '$2a$10$gzhiUb1ldc1Rf3lka4k/WOoFKKGPepHSzJxzcPSN5/65SzkMdc.SK', 1, '<EMAIL>', '18569436426', '1', '2020-11-19 11:39:22', '2020-11-19 11:18:36', '2020-11-19 11:57:00', '0', 'default.jpg', '面对疾风吧'); -- ---------------------------- -- Table structure for t_user_role -- ---------------------------- DROP TABLE IF EXISTS `t_user_role`; CREATE TABLE `t_user_role` ( `USER_ID` bigint(20) NOT NULL COMMENT '用户ID', `ROLE_ID` bigint(20) NOT NULL COMMENT '角色ID' ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户角色关联表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of t_user_role -- ---------------------------- INSERT INTO `t_user_role` VALUES (1, 1); -- ---------------------------- -- Table structure for zipkin_annotations -- ---------------------------- DROP TABLE IF EXISTS `zipkin_annotations`; CREATE TABLE `zipkin_annotations` ( `trace_id_high` bigint(20) NOT NULL DEFAULT 0 COMMENT 'If non zero, this means the trace uses 128 bit traceIds instead of 64 bit', `trace_id` bigint(20) NOT NULL COMMENT 'coincides with zipkin_spans.trace_id', `span_id` bigint(20) NOT NULL COMMENT 'coincides with zipkin_spans.id', `a_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'BinaryAnnotation.key or Annotation.value if type == -1', `a_value` blob NULL COMMENT 'BinaryAnnotation.value(), which must be smaller than 64KB', `a_type` int(11) NOT NULL COMMENT 'BinaryAnnotation.type() or -1 if Annotation', `a_timestamp` bigint(20) NULL DEFAULT NULL COMMENT 'Used to implement TTL; Annotation.timestamp or zipkin_spans.timestamp', `endpoint_ipv4` int(11) NULL DEFAULT NULL COMMENT 'Null when Binary/Annotation.endpoint is null', `endpoint_ipv6` binary(16) NULL DEFAULT NULL COMMENT 'Null when Binary/Annotation.endpoint is null, or no IPv6 address', `endpoint_port` smallint(6) NULL DEFAULT NULL COMMENT 'Null when Binary/Annotation.endpoint is null', `endpoint_service_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Null when Binary/Annotation.endpoint is null', UNIQUE INDEX `trace_id_high`(`trace_id_high`, `trace_id`, `span_id`, `a_key`, `a_timestamp`) USING BTREE COMMENT 'Ignore insert on duplicate', INDEX `trace_id_high_2`(`trace_id_high`, `trace_id`, `span_id`) USING BTREE COMMENT 'for joining with zipkin_spans', INDEX `trace_id_high_3`(`trace_id_high`, `trace_id`) USING BTREE COMMENT 'for getTraces/ByIds', INDEX `endpoint_service_name`(`endpoint_service_name`) USING BTREE COMMENT 'for getTraces and getServiceNames', INDEX `a_type`(`a_type`) USING BTREE COMMENT 'for getTraces and autocomplete values', INDEX `a_key`(`a_key`) USING BTREE COMMENT 'for getTraces and autocomplete values', INDEX `trace_id`(`trace_id`, `span_id`, `a_key`) USING BTREE COMMENT 'for dependencies job' ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = COMPRESSED; -- ---------------------------- -- Records of zipkin_annotations -- ---------------------------- INSERT INTO `zipkin_annotations` VALUES (0, -2697807460222590208, -2697807460222590208, 'sr', NULL, -1, 1605763014846065, -1407975418, NULL, NULL, 'server-test'); INSERT INTO `zipkin_annotations` VALUES (0, -2697807460222590208, -2697807460222590208, 'ss', NULL, -1, 1605763014866310, -1407975418, NULL, NULL, 'server-test'); INSERT INTO `zipkin_annotations` VALUES (0, -2697807460222590208, -2697807460222590208, 'ca', 0x01, 0, 1605763014846065, -1407975422, NULL, -29160, ''); INSERT INTO `zipkin_annotations` VALUES (0, -2697807460222590208, -2697807460222590208, 'http.method', 0x474554, 6, 1605763014846065, -1407975418, NULL, NULL, 'server-test'); INSERT INTO `zipkin_annotations` VALUES (0, -2697807460222590208, -2697807460222590208, 'http.path', 0x2F6163747561746F72, 6, 1605763014846065, -1407975418, NULL, NULL, 'server-test'); -- ---------------------------- -- Table structure for zipkin_dependencies -- ---------------------------- DROP TABLE IF EXISTS `zipkin_dependencies`; CREATE TABLE `zipkin_dependencies` ( `day` date NOT NULL, `parent` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `child` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `call_count` bigint(20) NULL DEFAULT NULL, `error_count` bigint(20) NULL DEFAULT NULL, PRIMARY KEY (`day`, `parent`, `child`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = COMPRESSED; -- ---------------------------- -- Records of zipkin_dependencies -- ---------------------------- -- ---------------------------- -- Table structure for zipkin_spans -- ---------------------------- DROP TABLE IF EXISTS `zipkin_spans`; CREATE TABLE `zipkin_spans` ( `trace_id_high` bigint(20) NOT NULL DEFAULT 0 COMMENT 'If non zero, this means the trace uses 128 bit traceIds instead of 64 bit', `trace_id` bigint(20) NOT NULL, `id` bigint(20) NOT NULL, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `remote_service_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `parent_id` bigint(20) NULL DEFAULT NULL, `debug` bit(1) NULL DEFAULT NULL, `start_ts` bigint(20) NULL DEFAULT NULL COMMENT 'Span.timestamp(): epoch micros used for endTs query and to implement TTL', `duration` bigint(20) NULL DEFAULT NULL COMMENT 'Span.duration(): micros used for minDuration and maxDuration query', PRIMARY KEY (`trace_id_high`, `trace_id`, `id`) USING BTREE, INDEX `trace_id_high`(`trace_id_high`, `trace_id`) USING BTREE COMMENT 'for getTracesByIds', INDEX `name`(`name`) USING BTREE COMMENT 'for getTraces and getSpanNames', INDEX `remote_service_name`(`remote_service_name`) USING BTREE COMMENT 'for getTraces and getRemoteServiceNames', INDEX `start_ts`(`start_ts`) USING BTREE COMMENT 'for getTraces ordering and range' ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = COMPRESSED; -- ---------------------------- -- Records of zipkin_spans -- ---------------------------- INSERT INTO `zipkin_spans` VALUES (0, -2697807460222590208, -2697807460222590208, 'get', '', NULL, NULL, 1605763014846065, 20245); SET FOREIGN_KEY_CHECKS = 1;
<gh_stars>0 # --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table billedpayment ( id bigint not null, payment_id bigint, bill decimal(38), constraint uq_billedpayment_payment_id unique (payment_id), constraint pk_billedpayment primary key (id) ); create sequence billing_id_seq; create table company ( c_name varchar(255) not null, representative_email varchar(255), payment_id bigint, constraint uq_company_representative_email unique (representative_email), constraint uq_company_payment_id unique (payment_id), constraint pk_company primary key (c_name) ); create table payment ( id bigint not null, company_c_name varchar(255), billing_id bigint, prepaid_id bigint, method varchar(255), constraint uq_payment_company_c_name unique (company_c_name), constraint uq_payment_billing_id unique (billing_id), constraint uq_payment_prepaid_id unique (prepaid_id), constraint pk_payment primary key (id) ); create sequence payment_id_seq increment by 1; create table prepaidpayment ( id bigint not null, payment_id bigint, remainingtime decimal(38), constraint uq_prepaidpayment_payment_id unique (payment_id), constraint pk_prepaidpayment primary key (id) ); create sequence prepaid_id_seq; create table time ( time_id bigint not null, login_time timestamp, logoff_time timestamp, timetable_id bigint, constraint pk_time primary key (time_id) ); create sequence time_id_seq increment by 1; create table timetable ( id bigint not null, online boolean, user_email varchar(255), constraint uq_timetable_user_email unique (user_email), constraint pk_timetable primary key (id) ); create sequence hibernate_sequence; create table cm_users ( email varchar(255) not null, name varchar(255), password varchar(255), table_id bigint, company_c_name varchar(255), com_name varchar(255), auth_token varchar(255), is_registered boolean, is_admin boolean, constraint uq_cm_users_table_id unique (table_id), constraint pk_cm_users primary key (email) ); alter table billedpayment add constraint fk_billedpayment_payment_id foreign key (payment_id) references payment (id) on delete restrict on update restrict; alter table company add constraint fk_company_representative_email foreign key (representative_email) references cm_users (email) on delete restrict on update restrict; alter table company add constraint fk_company_payment_id foreign key (payment_id) references payment (id) on delete restrict on update restrict; alter table payment add constraint fk_payment_company_c_name foreign key (company_c_name) references company (c_name) on delete restrict on update restrict; alter table payment add constraint fk_payment_billing_id foreign key (billing_id) references billedpayment (id) on delete restrict on update restrict; alter table payment add constraint fk_payment_prepaid_id foreign key (prepaid_id) references prepaidpayment (id) on delete restrict on update restrict; alter table prepaidpayment add constraint fk_prepaidpayment_payment_id foreign key (payment_id) references payment (id) on delete restrict on update restrict; alter table time add constraint fk_time_timetable_id foreign key (timetable_id) references timetable (id) on delete restrict on update restrict; create index ix_time_timetable_id on time (timetable_id); alter table timetable add constraint fk_timetable_user_email foreign key (user_email) references cm_users (email) on delete restrict on update restrict; alter table cm_users add constraint fk_cm_users_table_id foreign key (table_id) references timetable (id) on delete restrict on update restrict; alter table cm_users add constraint fk_cm_users_company_c_name foreign key (company_c_name) references company (c_name) on delete restrict on update restrict; create index ix_cm_users_company_c_name on cm_users (company_c_name); # --- !Downs alter table billedpayment drop constraint if exists fk_billedpayment_payment_id; alter table company drop constraint if exists fk_company_representative_email; alter table company drop constraint if exists fk_company_payment_id; alter table payment drop constraint if exists fk_payment_company_c_name; alter table payment drop constraint if exists fk_payment_billing_id; alter table payment drop constraint if exists fk_payment_prepaid_id; alter table prepaidpayment drop constraint if exists fk_prepaidpayment_payment_id; alter table time drop constraint if exists fk_time_timetable_id; drop index if exists ix_time_timetable_id; alter table timetable drop constraint if exists fk_timetable_user_email; alter table cm_users drop constraint if exists fk_cm_users_table_id; alter table cm_users drop constraint if exists fk_cm_users_company_c_name; drop index if exists ix_cm_users_company_c_name; drop table if exists billedpayment; drop sequence if exists billing_id_seq; drop table if exists company; drop table if exists payment; drop sequence if exists payment_id_seq; drop table if exists prepaidpayment; drop sequence if exists prepaid_id_seq; drop table if exists time; drop sequence if exists time_id_seq; drop table if exists timetable; drop sequence if exists hibernate_sequence; drop table if exists cm_users;
<reponame>dedmedved/cheburashka CREATE PROCEDURE dbo.ProcSelectInsideIfBeginWithoutTryCatch AS BEGIN IF 1=1 begin SELECT * FROM dbo.Table1; --select inside if block - too tricky needs try/catch. end END
<filename>db_library/views/db_temporal_tables.sql --# Copyright IBM Corp. All Rights Reserved. --# SPDX-License-Identifier: Apache-2.0 /* * Lists all temporal tables * * Note that the TEMPORALTYPE in SYSCAT.TABLES is not accurate when the table is MAINTAINED BY USER * */ CREATE OR REPLACE VIEW DB_TEMPORAL_TABLES AS SELECT T.TABSCHEMA , T.TABNAME , T.TEMPORALTYPE , CASE WHEN BT.BEGINCOLNAME IS NOT NULL AND ST.BEGINCOLNAME IS NOT NULL THEN 'Bitemporal table' WHEN BT.BEGINCOLNAME IS NOT NULL THEN 'Application-period temporal table' WHEN ST.BEGINCOLNAME IS NOT NULL THEN 'System-period temporal table' END AS TEMPORAL_TYPE , CASE WHEN SUBSTR(T.PROPERTY,29,1) = 'Y' THEN 'MAINTAINED BY USER' ELSE 'MAINTAINED BY SYSTEM' END AS MAINTAINED_BY , BT.BEGINCOLNAME BUSINESS_TIME_BEGIN_COLNAME , BT.ENDCOLNAME BUSINESS_TIME_END_COLNAME , ST.BEGINCOLNAME SYSTEM_TIME_BEGIN_COLNAME , ST.ENDCOLNAME SYSTEM_TIME_END_COLNAME FROM SYSCAT.TABLES T LEFT JOIN SYSCAT.PERIODS BT ON T.TABSCHEMA = BT.TABSCHEMA AND T.TABNAME = BT.TABNAME AND BT.PERIODNAME = 'BUSINESS_TIME' LEFT JOIN SYSCAT.PERIODS ST ON T.TABSCHEMA = ST.TABSCHEMA AND T.TABNAME = ST.TABNAME AND ST.PERIODNAME = 'SYSTEM_TIME' WHERE T.TEMPORALTYPE <> 'N' OR SUBSTR(PROPERTY,29,1) = 'Y'
BEGIN; ALTER TABLE node_monitor ADD COLUMN "matchoui" boolean; COMMIT;
<reponame>orbitalno11/get-a-server INSERT INTO `district` (`id`, `title`) VALUES ('1001', 'เขตพระนคร'), ('1002', 'เขตดุสิต'), ('1003', 'เขตหนองจอก'), ('1004', 'เขตบางรัก'), ('1005', 'เขตบางเขน'), ('1006', 'เขตบางกะปิ'), ('1007', 'เขตปทุมวัน'), ('1008', 'เขตป้อมปราบศัตรูพ่าย'), ('1009', 'เขตพระโขนง'), ('1010', 'เขตมีนบุรี'), ('1011', 'เขตลาดกระบัง'), ('1012', 'เขตยานนาวา'), ('1013', 'เขตสัมพันธวงศ์'), ('1014', 'เขตพญาไท'), ('1015', 'เขตธนบุรี'), ('1016', 'เขตบางกอกใหญ่'), ('1017', 'เขตห้วยขวาง'), ('1018', 'เขตคลองสาน'), ('1019', 'เขตตลิ่งชัน'), ('1020', 'เขตบางกอกน้อย'), ('1021', 'เขตบางขุนเทียน'), ('1022', 'เขตภาษีเจริญ'), ('1023', 'เขตหนองแขม'), ('1024', 'เขตราษฎร์บูรณะ'), ('1025', 'เขตบางพลัด'), ('1026', 'เขตดินแดง'), ('1027', 'เขตบึงกุ่ม'), ('1028', 'เขตสาทร'), ('1029', 'เขตบางซื่อ'), ('1030', 'เขตจตุจักร'), ('1031', 'เขตบางคอแหลม'), ('1032', 'เขตประเวศ'), ('1033', 'เขตคลองเตย'), ('1034', 'เขตสวนหลวง'), ('1035', 'เขตจอมทอง'), ('1036', 'เขตดอนเมือง'), ('1037', 'เขตราชเทวี'), ('1038', 'เขตลาดพร้าว'), ('1039', 'เขตวัฒนา'), ('1040', 'เขตบางแค'), ('1041', 'เขตหลักสี่'), ('1042', 'เขตสายไหม'), ('1043', 'เขตคันนายาว'), ('1044', 'เขตสะพานสูง'), ('1045', 'เขตวังทองหลาง'), ('1046', 'เขตคลองสามวา'), ('1047', 'เขตบางนา'), ('1048', 'เขตทวีวัฒนา'), ('1049', 'เขตทุ่งครุ'), ('1050', 'เขตบางบอน'), ('1101', 'เมืองสมุทรปราการ'), ('1102', 'บางบ่อ'), ('1103', 'บางพลี'), ('1104', 'พระประแดง'), ('1105', 'พระสมุทรเจดีย์'), ('1106', 'บางเสาธง'), ('1201', 'เมืองนนทบุรี'), ('1202', 'บางกรวย'), ('1203', 'บางใหญ่'), ('1204', 'บางบัวทอง'), ('1205', 'ไทรน้อย'), ('1206', 'ปากเกร็ด'), ('1301', 'เมืองปทุมธานี'), ('1302', 'คลองหลวง'), ('1303', 'ธัญบุรี'), ('1304', 'หนองเสือ'), ('1305', 'ลาดหลุมแก้ว'), ('1306', 'ลำลูกกา'), ('1307', 'สามโคก'), ('1401', 'พระนครศรีอยุธยา'), ('1402', 'ท่าเรือ'), ('1403', 'นครหลวง'), ('1404', 'บางไทร'), ('1405', 'บางบาล'), ('1406', 'บางปะอิน'), ('1407', 'บางปะหัน'), ('1408', 'ผักไห่'), ('1409', 'ภาชี'), ('1410', 'ลาดบัวหลวง'), ('1411', 'วังน้อย'), ('1412', 'เสนา'), ('1413', 'บางซ้าย'), ('1414', 'อุทัย'), ('1415', 'มหาราช'), ('1416', 'บ้านแพรก'), ('1501', 'เมืองอ่างทอง'), ('1502', 'ไชโย'), ('1503', 'ป่าโมก'), ('1504', 'โพธิ์ทอง'), ('1505', 'แสวงหา'), ('1506', 'วิเศษชัยชาญ'), ('1507', 'สามโก้'), ('1601', 'เมืองลพบุรี'), ('1602', 'พัฒนานิคม'), ('1603', 'โคกสำโรง'), ('1604', 'ชัยบาดาล'), ('1605', 'ท่าวุ้ง'), ('1606', 'บ้านหมี่'), ('1607', 'ท่าหลวง'), ('1608', 'สระโบสถ์'), ('1609', 'โคกเจริญ'), ('1610', 'ลำสนธิ'), ('1611', 'หนองม่วง'), ('1701', 'เมืองสิงห์บุรี'), ('1702', 'บางระจัน'), ('1703', 'ค่ายบางระจัน'), ('1704', 'พรหมบุรี'), ('1705', 'ท่าช้าง'), ('1706', 'อินทร์บุรี'), ('1801', 'เมืองชัยนาท'), ('1802', 'มโนรมย์'), ('1803', 'วัดสิงห์'), ('1804', 'สรรพยา'), ('1805', 'สรรคบุรี'), ('1806', 'หันคา'), ('1807', 'หนองมะโมง'), ('1808', 'เนินขาม'), ('1901', 'เมืองสระบุรี'), ('1902', 'แก่งคอย'), ('1903', 'หนองแค'), ('1904', 'วิหารแดง'), ('1905', 'หนองแซง'), ('1906', 'บ้านหมอ'), ('1907', 'ดอนพุด'), ('1908', 'หนองโดน'), ('1909', 'พระพุทธบาท'), ('1910', 'เสาไห้'), ('1911', 'มวกเหล็ก'), ('1912', 'วังม่วง'), ('1913', 'เฉลิมพระเกียรติ'), ('2001', 'เมืองชลบุรี'), ('2002', 'บ้านบึง'), ('2003', 'หนองใหญ่'), ('2004', 'บางละมุง'), ('2005', 'พานทอง'), ('2006', 'พนัสนิคม'), ('2007', 'ศรีราชา'), ('2008', 'เกาะสีชัง'), ('2009', 'สัตหีบ'), ('2010', 'บ่อทอง'), ('2011', 'เกาะจันทร์'), ('2101', 'เมืองระยอง'), ('2102', 'บ้านฉาง'), ('2103', 'แกลง'), ('2104', 'วังจันทร์'), ('2105', 'บ้านค่าย'), ('2106', 'ปลวกแดง'), ('2107', 'เขาชะเมา'), ('2108', 'นิคมพัฒนา'), ('2201', 'เมืองจันทบุรี'), ('2202', 'ขลุง'), ('2203', 'ท่าใหม่'), ('2204', 'โป่งน้ำร้อน'), ('2205', 'มะขาม'), ('2206', 'แหลมสิงห์'), ('2207', 'สอยดาว'), ('2208', 'แก่งหางแมว'), ('2209', 'นายายอาม'), ('2210', 'เขาคิชฌกูฏ'), ('2301', 'เมืองตราด'), ('2302', 'คลองใหญ่'), ('2303', 'เขาสมิง'), ('2304', 'บ่อไร่'), ('2305', 'แหลมงอบ'), ('2306', 'เกาะกูด'), ('2307', 'เกาะช้าง'), ('2401', 'เมืองฉะเชิงเทรา'), ('2402', 'บางคล้า'), ('2403', 'บางน้ำเปรี้ยว'), ('2404', 'บางปะกง'), ('2405', 'บ้านโพธิ์'), ('2406', 'พนมสารคาม'), ('2407', 'ราชสาส์น'), ('2408', 'สนามชัยเขต'), ('2409', 'แปลงยาว'), ('2410', 'ท่าตะเกียบ'), ('2411', 'คลองเขื่อน'), ('2501', 'เมืองปราจีนบุรี'), ('2502', 'กบินทร์บุรี'), ('2503', 'นาดี'), ('2506', 'บ้านสร้าง'), ('2507', 'ประจันตคาม'), ('2508', 'ศรีมหาโพธิ'), ('2509', 'ศรีมโหสถ'), ('2601', 'เมืองนครนายก'), ('2602', 'ปากพลี'), ('2603', 'บ้านนา'), ('2604', 'องครักษ์'), ('2701', 'เมืองสระแก้ว'), ('2702', 'คลองหาด'), ('2703', 'ตาพระยา'), ('2704', 'วังน้ำเย็น'), ('2705', 'วัฒนานคร'), ('2706', 'อรัญประเทศ'), ('2707', 'เขาฉกรรจ์'), ('2708', 'โคกสูง'), ('2709', 'วังสมบูรณ์'), ('3001', 'เมืองนครราชสีมา'), ('3002', 'ครบุรี'), ('3003', 'เสิงสาง'), ('3004', 'คง'), ('3005', 'บ้านเหลื่อม'), ('3006', 'จักราช'), ('3007', 'โชคชัย'), ('3008', 'ด่านขุนทด'), ('3009', 'โนนไทย'), ('3010', 'โนนสูง'), ('3011', 'ขามสะแกแสง'), ('3012', 'บัวใหญ่'), ('3013', 'ประทาย'), ('3014', 'ปักธงชัย'), ('3015', 'พิมาย'), ('3016', 'ห้วยแถลง'), ('3017', 'ชุมพวง'), ('3018', 'สูงเนิน'), ('3019', 'ขามทะเลสอ'), ('3020', 'สีคิ้ว'), ('3021', 'ปากช่อง'), ('3022', 'หนองบุญมาก'), ('3023', 'แก้งสนามนาง'), ('3024', 'โนนแดง'), ('3025', 'วังน้ำเขียว'), ('3026', 'เทพารักษ์'), ('3027', 'เมืองยาง'), ('3028', 'พระทองคำ'), ('3029', 'ลำทะเมนชัย'), ('3030', 'บัวลาย'), ('3031', 'สีดา'), ('3032', 'เฉลิมพระเกียรติ'), ('3101', 'เมืองบุรีรัมย์'), ('3102', 'คูเมือง'), ('3103', 'กระสัง'), ('3104', 'นางรอง'), ('3105', 'หนองกี่'), ('3106', 'ละหานทราย'), ('3107', 'ประโคนชัย'), ('3108', 'บ้านกรวด'), ('3109', 'พุทไธสง'), ('3110', 'ลำปลายมาศ'), ('3111', 'สตึก'), ('3112', 'ปะคำ'), ('3113', 'นาโพธิ์'), ('3114', 'หนองหงส์'), ('3115', 'พลับพลาชัย'), ('3116', 'ห้วยราช'), ('3117', 'โนนสุวรรณ'), ('3118', 'ชำนิ'), ('3119', 'บ้านใหม่ไชยพจน์'), ('3120', 'โนนดินแดง'), ('3121', 'บ้านด่าน'), ('3122', 'แคนดง'), ('3123', 'เฉลิมพระเกียรติ'), ('3201', 'เมืองสุรินทร์'), ('3202', 'ชุมพลบุรี'), ('3203', 'ท่าตูม'), ('3204', 'จอมพระ'), ('3205', 'ปราสาท'), ('3206', 'กาบเชิง'), ('3207', 'รัตนบุรี'), ('3208', 'สนม'), ('3209', 'ศีขรภูมิ'), ('3210', 'สังขะ'), ('3211', 'ลำดวน'), ('3212', 'สำโรงทาบ'), ('3213', 'บัวเชด'), ('3214', 'พนมดงรัก'), ('3215', 'ศรีณรงค์'), ('3216', 'เขวาสินรินทร์'), ('3217', 'โนนนารายณ์'), ('3301', 'เมืองศรีสะเกษ'), ('3302', 'ยางชุมน้อย'), ('3303', 'กันทรารมย์'), ('3304', 'กันทรลักษ์'), ('3305', 'ขุขันธ์'), ('3306', 'ไพรบึง'), ('3307', 'ปรางค์กู่'), ('3308', 'ขุนหาญ'), ('3309', 'ราษีไศล'), ('3310', 'อุทุมพรพิสัย'), ('3311', 'บึงบูรพ์'), ('3312', 'ห้วยทับทัน'), ('3313', 'โนนคูณ'), ('3314', 'ศรีรัตนะ'), ('3315', 'น้ำเกลี้ยง'), ('3316', 'วังหิน'), ('3317', 'ภูสิงห์'), ('3318', 'เมืองจันทร์'), ('3319', 'เบญจลักษ์'), ('3320', 'พยุห์'), ('3321', 'โพธิ์ศรีสุวรรณ'), ('3322', 'ศิลาลาด'), ('3401', 'เมืองอุบลราชธานี'), ('3402', 'ศรีเมืองใหม่'), ('3403', 'โขงเจียม'), ('3404', 'เขื่องใน'), ('3405', 'เขมราฐ'), ('3407', 'เดชอุดม'), ('3408', 'นาจะหลวย'), ('3409', 'น้ำยืน'), ('3410', 'บุณฑริก'), ('3411', 'ตระการพืชผล'), ('3412', 'กุดข้าวปุ้น'), ('3414', 'ม่วงสามสิบ'), ('3415', 'วารินชำราบ'), ('3419', 'พิบูลมังสาหาร'), ('3420', 'ตาลสุม'), ('3421', 'โพธิ์ไทร'), ('3422', 'สำโรง'), ('3424', 'ดอนมดแดง'), ('3425', 'สิรินธร'), ('3426', 'ทุ่งศรีอุดม'), ('3429', 'นาเยีย'), ('3430', 'นาตาล'), ('3431', 'เหล่าเสือโก้ก'), ('3432', 'สว่างวีระวงศ์'), ('3433', 'น้ำขุ่น'), ('3501', 'เมืองยโสธร'), ('3502', 'ทรายมูล'), ('3503', 'กุดชุม'), ('3504', 'คำเขื่อนแก้ว'), ('3505', 'ป่าติ้ว'), ('3506', 'มหาชนะชัย'), ('3507', 'ค้อวัง'), ('3508', 'เลิงนกทา'), ('3509', 'ไทยเจริญ'), ('3601', 'เมืองชัยภูมิ'), ('3602', 'บ้านเขว้า'), ('3603', 'คอนสวรรค์'), ('3604', 'เกษตรสมบูรณ์'), ('3605', 'หนองบัวแดง'), ('3606', 'จัตุรัส'), ('3607', 'บำเหน็จณรงค์'), ('3608', 'หนองบัวระเหว'), ('3609', 'เทพสถิต'), ('3610', 'ภูเขียว'), ('3611', 'บ้านแท่น'), ('3612', 'แก้งคร้อ'), ('3613', 'คอนสาร'), ('3614', 'ภักดีชุมพล'), ('3615', 'เนินสง่า'), ('3616', 'ซับใหญ่'), ('3701', 'เมืองอำนาจเจริญ'), ('3702', 'ชานุมาน'), ('3703', 'ปทุมราชวงศา'), ('3704', 'พนา'), ('3705', 'เสนางคนิคม'), ('3706', 'หัวตะพาน'), ('3707', 'ลืออำนาจ'), ('3801', 'บึงกาฬ'), ('3802', 'พรเจริญ'), ('3803', 'โซ่พิสัย'), ('3804', 'เซกา'), ('3805', 'ปากคาด'), ('3806', 'บึงโขงหลง'), ('3807', 'ศรีวิไล'), ('3808', 'บุ่งคล้า'), ('3901', 'เมืองหนองบัวลำภู'), ('3902', 'นากลาง'), ('3903', 'โนนสัง'), ('3904', 'ศรีบุญเรือง'), ('3905', 'สุวรรณคูหา'), ('3906', 'นาวัง'), ('4001', 'เมืองขอนแก่น'), ('4002', 'บ้านฝาง'), ('4003', 'พระยืน'), ('4004', 'หนองเรือ'), ('4005', 'ชุมแพ'), ('4006', 'สีชมพู'), ('4007', 'น้ำพอง'), ('4008', 'อุบลรัตน์'), ('4009', 'กระนวน'), ('4010', 'บ้านไผ่'), ('4011', 'เปือยน้อย'), ('4012', 'พล'), ('4013', 'แวงใหญ่'), ('4014', 'แวงน้อย'), ('4015', 'หนองสองห้อง'), ('4016', 'ภูเวียง'), ('4017', 'มัญจาคีรี'), ('4018', 'ชนบท'), ('4019', 'เขาสวนกวาง'), ('4020', 'ภูผาม่าน'), ('4021', 'ซำสูง'), ('4022', 'โคกโพธิ์ไชย'), ('4023', 'หนองนาคำ'), ('4024', 'บ้านแฮด'), ('4025', 'โนนศิลา'), ('4026', 'เวียงเก่า'), ('4101', 'เมืองอุดรธานี'), ('4102', 'กุดจับ'), ('4103', 'หนองวัวซอ'), ('4104', 'กุมภวาปี'), ('4105', 'โนนสะอาด'), ('4106', 'หนองหาน'), ('4107', 'ทุ่งฝน'), ('4108', 'ไชยวาน'), ('4109', 'ศรีธาตุ'), ('4110', 'วังสามหมอ'), ('4111', 'บ้านดุง'), ('4117', 'บ้านผือ'), ('4118', 'น้ำโสม'), ('4119', 'เพ็ญ'), ('4120', 'สร้างคอม'), ('4121', 'หนองแสง'), ('4122', 'นายูง'), ('4123', 'พิบูลย์รักษ์'), ('4124', 'กู่แก้ว'), ('4125', 'ประจักษ์ศิลปาคม'), ('4201', 'เมืองเลย'), ('4202', 'นาด้วง'), ('4203', 'เชียงคาน'), ('4204', 'ปากชม'), ('4205', 'ด่านซ้าย'), ('4206', 'นาแห้ว'), ('4207', 'ภูเรือ'), ('4208', 'ท่าลี่'), ('4209', 'วังสะพุง'), ('4210', 'ภูกระดึง'), ('4211', 'ภูหลวง'), ('4212', 'ผาขาว'), ('4213', 'เอราวัณ'), ('4214', 'หนองหิน'), ('4301', 'เมืองหนองคาย'), ('4302', 'ท่าบ่อ'), ('4305', 'โพนพิสัย'), ('4307', 'ศรีเชียงใหม่'), ('4308', 'สังคม'), ('4314', 'สระใคร'), ('4315', 'เฝ้าไร่'), ('4316', 'รัตนวาปี'), ('4317', 'โพธิ์ตาก'), ('4401', 'เมืองมหาสารคาม'), ('4402', 'แกดำ'), ('4403', 'โกสุมพิสัย'), ('4404', 'กันทรวิชัย'), ('4405', 'เชียงยืน'), ('4406', 'บรบือ'), ('4407', 'นาเชือก'), ('4408', 'พยัคฆภูมิพิสัย'), ('4409', 'วาปีปทุม'), ('4410', 'นาดูน'), ('4411', 'ยางสีสุราช'), ('4412', 'กุดรัง'), ('4413', 'ชื่นชม'), ('4501', 'เมืองร้อยเอ็ด'), ('4502', 'เกษตรวิสัย'), ('4503', 'ปทุมรัตต์'), ('4504', 'จตุรพักตรพิมาน'), ('4505', 'ธวัชบุรี'), ('4506', 'พนมไพร'), ('4507', 'โพนทอง'), ('4508', 'โพธิ์ชัย'), ('4509', 'หนองพอก'), ('4510', 'เสลภูมิ'), ('4511', 'สุวรรณภูมิ'), ('4512', 'เมืองสรวง'), ('4513', 'โพนทราย'), ('4514', 'อาจสามารถ'), ('4515', 'เมยวดี'), ('4516', 'ศรีสมเด็จ'), ('4517', 'จังหาร'), ('4518', 'เชียงขวัญ'), ('4519', 'หนองฮี'), ('4520', 'ทุ่งเขาหลวง'), ('4601', 'เมืองกาฬสินธุ์'), ('4602', 'นามน'), ('4603', 'กมลาไสย'), ('4604', 'ร่องคำ'), ('4605', 'กุฉินารายณ์'), ('4606', 'เขาวง'), ('4607', 'ยางตลาด'), ('4608', 'ห้วยเม็ก'), ('4609', 'สหัสขันธ์'), ('4610', 'คำม่วง'), ('4611', 'ท่าคันโท'), ('4612', 'หนองกุงศรี'), ('4613', 'สมเด็จ'), ('4614', 'ห้วยผึ้ง'), ('4615', 'สามชัย'), ('4616', 'นาคู'), ('4617', 'ดอนจาน'), ('4618', 'ฆ้องชัย'), ('4701', 'เมืองสกลนคร'), ('4702', 'กุสุมาลย์'), ('4703', 'กุดบาก'), ('4704', 'พรรณานิคม'), ('4705', 'พังโคน'), ('4706', 'วาริชภูมิ'), ('4707', 'นิคมน้ำอูน'), ('4708', 'วานรนิวาส'), ('4709', 'คำตากล้า'), ('4710', 'บ้านม่วง'), ('4711', 'อากาศอำนวย'), ('4712', 'สว่างแดนดิน'), ('4713', 'ส่องดาว'), ('4714', 'เต่างอย'), ('4715', 'โคกศรีสุพรรณ'), ('4716', 'เจริญศิลป์'), ('4717', 'โพนนาแก้ว'), ('4718', 'ภูพาน'), ('4801', 'เมืองนครพนม'), ('4802', 'ปลาปาก'), ('4803', 'ท่าอุเทน'), ('4804', 'บ้านแพง'), ('4805', 'ธาตุพนม'), ('4806', 'เรณูนคร'), ('4807', 'นาแก'), ('4808', 'ศรีสงคราม'), ('4809', 'นาหว้า'), ('4810', 'โพนสวรรค์'), ('4811', 'นาทม'), ('4812', 'วังยาง'), ('4901', 'เมืองมุกดาหาร'), ('4902', 'นิคมคำสร้อย'), ('4903', 'ดอนตาล'), ('4904', 'ดงหลวง'), ('4905', 'คำชะอี'), ('4906', 'หว้านใหญ่'), ('4907', 'หนองสูง'), ('5001', 'เมืองเชียงใหม่'), ('5002', 'จอมทอง'), ('5003', 'แม่แจ่ม'), ('5004', 'เชียงดาว'), ('5005', 'ดอยสะเก็ด'), ('5006', 'แม่แตง'), ('5007', 'แม่ริม'), ('5008', 'สะเมิง'), ('5009', 'ฝาง'), ('5010', 'แม่อาย'), ('5011', 'พร้าว'), ('5012', 'สันป่าตอง'), ('5013', 'สันกำแพง'), ('5014', 'สันทราย'), ('5015', 'หางดง'), ('5016', 'ฮอด'), ('5017', 'ดอยเต่า'), ('5018', 'อมก๋อย'), ('5019', 'สารภี'), ('5020', 'เวียงแหง'), ('5021', 'ไชยปราการ'), ('5022', 'แม่วาง'), ('5023', 'แม่ออน'), ('5024', 'ดอยหล่อ'), ('5025', 'กัลยาณิวัฒนา'), ('5101', 'เมืองลำพูน'), ('5102', 'แม่ทา'), ('5103', 'บ้านโฮ่ง'), ('5104', 'ลี้'), ('5105', 'ทุ่งหัวช้าง'), ('5106', 'ป่าซาง'), ('5107', 'บ้านธิ'), ('5108', 'เวียงหนองล่อง'), ('5201', 'เมืองลำปาง'), ('5202', 'แม่เมาะ'), ('5203', 'เกาะคา'), ('5204', 'เสริมงาม'), ('5205', 'งาว'), ('5206', 'แจ้ห่ม'), ('5207', 'วังเหนือ'), ('5208', 'เถิน'), ('5209', 'แม่พริก'), ('5210', 'แม่ทะ'), ('5211', 'สบปราบ'), ('5212', 'ห้างฉัตร'), ('5213', 'เมืองปาน'), ('5301', 'เมืองอุตรดิตถ์'), ('5302', 'ตรอน'), ('5303', 'ท่าปลา'), ('5304', 'น้ำปาด'), ('5305', 'ฟากท่า'), ('5306', 'บ้านโคก'), ('5307', 'พิชัย'), ('5308', 'ลับแล'), ('5309', 'ทองแสนขัน'), ('5401', 'เมืองแพร่'), ('5402', 'ร้องกวาง'), ('5403', 'ลอง'), ('5404', 'สูงเม่น'), ('5405', 'เด่นชัย'), ('5406', 'สอง'), ('5407', 'วังชิ้น'), ('5408', 'หนองม่วงไข่'), ('5501', 'เมืองน่าน'), ('5502', 'แม่จริม'), ('5503', 'บ้านหลวง'), ('5504', 'นาน้อย'), ('5505', 'ปัว'), ('5506', 'ท่าวังผา'), ('5507', 'เวียงสา'), ('5508', 'ทุ่งช้าง'), ('5509', 'เชียงกลาง'), ('5510', 'นาหมื่น'), ('5511', 'สันติสุข'), ('5512', 'บ่อเกลือ'), ('5513', 'สองแคว'), ('5514', 'ภูเพียง'), ('5515', 'เฉลิมพระเกียรติ'), ('5601', 'เมืองพะเยา'), ('5602', 'จุน'), ('5603', 'เชียงคำ'), ('5604', 'เชียงม่วน'), ('5605', 'ดอกคำใต้'), ('5606', 'ปง'), ('5607', 'แม่ใจ'), ('5608', 'ภูซาง'), ('5609', 'ภูกามยาว'), ('5701', 'เมืองเชียงราย'), ('5702', 'เวียงชัย'), ('5703', 'เชียงของ'), ('5704', 'เทิง'), ('5705', 'พาน'), ('5706', 'ป่าแดด'), ('5707', 'แม่จัน'), ('5708', 'เชียงแสน'), ('5709', 'แม่สาย'), ('5710', 'แม่สรวย'), ('5711', 'เวียงป่าเป้า'), ('5712', 'พญาเม็งราย'), ('5713', 'เวียงแก่น'), ('5714', 'ขุนตาล'), ('5715', 'แม่ฟ้าหลวง'), ('5716', 'แม่ลาว'), ('5717', 'เวียงเชียงรุ้ง'), ('5718', 'ดอยหลวง'), ('5801', 'เมืองแม่ฮ่องสอน'), ('5802', 'ขุนยวม'), ('5803', 'ปาย'), ('5804', 'แม่สะเรียง'), ('5805', 'แม่ลาน้อย'), ('5806', 'สบเมย'), ('5807', 'ปางมะผ้า'), ('6001', 'เมืองนครสวรรค์'), ('6002', 'โกรกพระ'), ('6003', 'ชุมแสง'), ('6004', 'หนองบัว'), ('6005', 'บรรพตพิสัย'), ('6006', 'เก้าเลี้ยว'), ('6007', 'ตาคลี'), ('6008', 'ท่าตะโก'), ('6009', 'ไพศาลี'), ('6010', 'พยุหะคีรี'), ('6011', 'ลาดยาว'), ('6012', 'ตากฟ้า'), ('6013', 'แม่วงก์'), ('6014', 'แม่เปิน'), ('6015', 'ชุมตาบง'), ('6101', 'เมืองอุทัยธานี'), ('6102', 'ทัพทัน'), ('6103', 'สว่างอารมณ์'), ('6104', 'หนองฉาง'), ('6105', 'หนองขาหย่าง'), ('6106', 'บ้านไร่'), ('6107', 'ลานสัก'), ('6108', 'ห้วยคต'), ('6201', 'เมืองกำแพงเพชร'), ('6202', 'ไทรงาม'), ('6203', 'คลองลาน'), ('6204', 'ขาณุวรลักษบุรี'), ('6205', 'คลองขลุง'), ('6206', 'พรานกระต่าย'), ('6207', 'ลานกระบือ'), ('6208', 'ทรายทองวัฒนา'), ('6209', 'ปางศิลาทอง'), ('6210', 'บึงสามัคคี'), ('6211', 'โกสัมพีนคร'), ('6301', 'เมืองตาก'), ('6302', 'บ้านตาก'), ('6303', 'สามเงา'), ('6304', 'แม่ระมาด'), ('6305', 'ท่าสองยาง'), ('6306', 'แม่สอด'), ('6307', 'พบพระ'), ('6308', 'อุ้มผาง'), ('6309', 'วังเจ้า'), ('6401', 'เมืองสุโขทัย'), ('6402', 'บ้านด่านลานหอย'), ('6403', 'คีรีมาศ'), ('6404', 'กงไกรลาศ'), ('6405', 'ศรีสัชนาลัย'), ('6406', 'ศรีสำโรง'), ('6407', 'สวรรคโลก'), ('6408', 'ศรีนคร'), ('6409', 'ทุ่งเสลี่ยม'), ('6501', 'เมืองพิษณุโลก'), ('6502', 'นครไทย'), ('6503', 'ชาติตระการ'), ('6504', 'บางระกำ'), ('6505', 'บางกระทุ่ม'), ('6506', 'พรหมพิราม'), ('6507', 'วัดโบสถ์'), ('6508', 'วังทอง'), ('6509', 'เนินมะปราง'), ('6601', 'เมืองพิจิตร'), ('6602', 'วังทรายพูน'), ('6603', 'โพธิ์ประทับช้าง'), ('6604', 'ตะพานหิน'), ('6605', 'บางมูลนาก'), ('6606', 'โพทะเล'), ('6607', 'สามง่าม'), ('6608', 'ทับคล้อ'), ('6609', 'สากเหล็ก'), ('6610', 'บึงนาราง'), ('6611', 'ดงเจริญ'), ('6612', 'วชิรบารมี'), ('6701', 'เมืองเพชรบูรณ์'), ('6702', 'ชนแดน'), ('6703', 'หล่มสัก'), ('6704', 'หล่มเก่า'), ('6705', 'วิเชียรบุรี'), ('6706', 'ศรีเทพ'), ('6707', 'หนองไผ่'), ('6708', 'บึงสามพัน'), ('6709', 'น้ำหนาว'), ('6710', 'วังโป่ง'), ('6711', 'เขาค้อ'), ('7001', 'เมืองราชบุรี'), ('7002', 'จอมบึง'), ('7003', 'สวนผึ้ง'), ('7004', 'ดำเนินสะดวก'), ('7005', 'บ้านโป่ง'), ('7006', 'บางแพ'), ('7007', 'โพธาราม'), ('7008', 'ปากท่อ'), ('7009', 'วัดเพลง'), ('7010', 'บ้านคา'), ('7101', 'เมืองกาญจนบุรี'), ('7102', 'ไทรโยค'), ('7103', 'บ่อพลอย'), ('7104', 'ศรีสวัสดิ์'), ('7105', 'ท่ามะกา'), ('7106', 'ท่าม่วง'), ('7107', 'ทองผาภูมิ'), ('7108', 'สังขละบุรี'), ('7109', 'พนมทวน'), ('7110', 'เลาขวัญ'), ('7111', 'ด่านมะขามเตี้ย'), ('7112', 'หนองปรือ'), ('7113', 'ห้วยกระเจา'), ('7201', 'เมืองสุพรรณบุรี'), ('7202', 'เดิมบางนางบวช'), ('7203', 'ด่านช้าง'), ('7204', 'บางปลาม้า'), ('7205', 'ศรีประจันต์'), ('7206', 'ดอนเจดีย์'), ('7207', 'สองพี่น้อง'), ('7208', 'สามชุก'), ('7209', 'อู่ทอง'), ('7210', 'หนองหญ้าไซ'), ('7301', 'เมืองนครปฐม'), ('7302', 'กำแพงแสน'), ('7303', 'นครชัยศรี'), ('7304', 'ดอนตูม'), ('7305', 'บางเลน'), ('7306', 'สามพราน'), ('7307', 'พุทธมณฑล'), ('7401', 'เมืองสมุทรสาคร'), ('7402', 'กระทุ่มแบน'), ('7403', 'บ้านแพ้ว'), ('7501', 'เมืองสมุทรสงคราม'), ('7502', 'บางคนที'), ('7503', 'อัมพวา'), ('7601', 'เมืองเพชรบุรี'), ('7602', 'เขาย้อย'), ('7603', 'หนองหญ้าปล้อง'), ('7604', 'ชะอำ'), ('7605', 'ท่ายาง'), ('7606', 'บ้านลาด'), ('7607', 'บ้านแหลม'), ('7608', 'แก่งกระจาน'), ('7701', 'เมืองประจวบคีรีขันธ์'), ('7702', 'กุยบุรี'), ('7703', 'ทับสะแก'), ('7704', 'บางสะพาน'), ('7705', 'บางสะพานน้อย'), ('7706', 'ปราณบุรี'), ('7707', 'หัวหิน'), ('7708', 'สามร้อยยอด'), ('8001', 'เมืองนครศรีธรรมราช'), ('8002', 'พรหมคีรี'), ('8003', 'ลานสกา'), ('8004', 'ฉวาง'), ('8005', 'พิปูน'), ('8006', 'เชียรใหญ่'), ('8007', 'ชะอวด'), ('8008', 'ท่าศาลา'), ('8009', 'ทุ่งสง'), ('8010', 'นาบอน'), ('8011', 'ทุ่งใหญ่'), ('8012', 'ปากพนัง'), ('8013', 'ร่อนพิบูลย์'), ('8014', 'สิชล'), ('8015', 'ขนอม'), ('8016', 'หัวไทร'), ('8017', 'บางขัน'), ('8018', 'ถ้ำพรรณรา'), ('8019', 'จุฬาภรณ์'), ('8020', 'พระพรหม'), ('8021', 'นบพิตำ'), ('8022', 'ช้างกลาง'), ('8023', 'เฉลิมพระเกียรติ'), ('8101', 'เมืองกระบี่'), ('8102', 'เขาพนม'), ('8103', 'เกาะลันตา'), ('8104', 'คลองท่อม'), ('8105', 'อ่าวลึก'), ('8106', 'ปลายพระยา'), ('8107', 'ลำทับ'), ('8108', 'เหนือคลอง'), ('8201', 'เมืองพังงา'), ('8202', 'เกาะยาว'), ('8203', 'กะปง'), ('8204', 'ตะกั่วทุ่ง'), ('8205', 'ตะกั่วป่า'), ('8206', 'คุระบุรี'), ('8207', 'ทับปุด'), ('8208', 'ท้ายเหมือง'), ('8301', 'เมืองภูเก็ต'), ('8302', 'กะทู้'), ('8303', 'ถลาง'), ('8401', 'เมืองสุราษฎร์ธานี'), ('8402', 'กาญจนดิษฐ์'), ('8403', 'ดอนสัก'), ('8404', 'เกาะสมุย'), ('8405', 'เกาะพะงัน'), ('8406', 'ไชยา'), ('8407', 'ท่าชนะ'), ('8408', 'คีรีรัฐนิคม'), ('8409', 'บ้านตาขุน'), ('8410', 'พนม'), ('8411', 'ท่าฉาง'), ('8412', 'บ้านนาสาร'), ('8413', 'บ้านนาเดิม'), ('8414', 'เคียนซา'), ('8415', 'เวียงสระ'), ('8416', 'พระแสง'), ('8417', 'พุนพิน'), ('8418', 'ชัยบุรี'), ('8419', 'วิภาวดี'), ('8501', 'เมืองระนอง'), ('8502', 'ละอุ่น'), ('8503', 'กะเปอร์'), ('8504', 'กระบุรี'), ('8505', 'สุขสำราญ'), ('8601', 'เมืองชุมพร'), ('8602', 'ท่าแซะ'), ('8603', 'ปะทิว'), ('8604', 'หลังสวน'), ('8605', 'ละแม'), ('8606', 'พะโต๊ะ'), ('8607', 'สวี'), ('8608', 'ทุ่งตะโก'), ('9001', 'เมืองสงขลา'), ('9002', 'สทิงพระ'), ('9003', 'จะนะ'), ('9004', 'นาทวี'), ('9005', 'เทพา'), ('9006', 'สะบ้าย้อย'), ('9007', 'ระโนด'), ('9008', 'กระแสสินธุ์'), ('9009', 'รัตภูมิ'), ('9010', 'สะเดา'), ('9011', 'หาดใหญ่'), ('9012', 'นาหม่อม'), ('9013', 'ควนเนียง'), ('9014', 'บางกล่ำ'), ('9015', 'สิงหนคร'), ('9016', 'คลองหอยโข่ง'), ('9101', 'เมืองสตูล'), ('9102', 'ควนโดน'), ('9103', 'ควนกาหลง'), ('9104', 'ท่าแพ'), ('9105', 'ละงู'), ('9106', 'ทุ่งหว้า'), ('9107', 'มะนัง'), ('9201', 'เมืองตรัง'), ('9202', 'กันตัง'), ('9203', 'ย่านตาขาว'), ('9204', 'ปะเหลียน'), ('9205', 'สิเกา'), ('9206', 'ห้วยยอด'), ('9207', 'วังวิเศษ'), ('9208', 'นาโยง'), ('9209', 'รัษฎา'), ('9210', 'หาดสำราญ'), ('9301', 'เมืองพัทลุง'), ('9302', 'กงหรา'), ('9303', 'เขาชัยสน'), ('9304', 'ตะโหมด'), ('9305', 'ควนขนุน'), ('9306', 'ปากพะยูน'), ('9307', 'ศรีบรรพต'), ('9308', 'ป่าบอน'), ('9309', 'บางแก้ว'), ('9310', 'ป่าพะยอม'), ('9311', 'ศรีนครินทร์'), ('9401', 'เมืองปัตตานี'), ('9402', 'โคกโพธิ์'), ('9403', 'หนองจิก'), ('9404', 'ปะนาเระ'), ('9405', 'มายอ'), ('9406', 'ทุ่งยางแดง'), ('9407', 'สายบุรี'), ('9408', 'ไม้แก่น'), ('9409', 'ยะหริ่ง'), ('9410', 'ยะรัง'), ('9411', 'กะพ้อ'), ('9412', 'แม่ลาน'), ('9501', 'เมืองยะลา'), ('9502', 'เบตง'), ('9503', 'บันนังสตา'), ('9504', 'ธารโต'), ('9505', 'ยะหา'), ('9506', 'รามัน'), ('9507', 'กาบัง'), ('9508', 'กรงปินัง'), ('9601', 'เมืองนราธิวาส'), ('9602', 'ตากใบ'), ('9603', 'บาเจาะ'), ('9604', 'ยี่งอ'), ('9605', 'ระแงะ'), ('9606', 'รือเสาะ'), ('9607', 'ศรีสาคร'), ('9608', 'แว้ง'), ('9609', 'สุคิริน'), ('9610', 'สุไหงโก-ลก'), ('9611', 'สุไหงปาดี'), ('9612', 'จะแนะ'), ('9613', 'เจาะไอร้อง');
DROP FUNCTION IF EXISTS read_livestock_map; CREATE FUNCTION read_livestock_map ( IN user_id INT , IN id INT ) RETURNS SETOF livestock_maps_readonly AS $body$ BEGIN IF permission_check_livestock_map(set_user_id(read_livestock_map.user_id), read_livestock_map.id) THEN RETURN QUERY SELECT cm.id , cm.farm_id , cm.target_id , c.name , cm.created_date , cm.modified_date FROM livestock_maps AS cm JOIN livestock AS c ON cm.target_id = c.id WHERE cm.id = read_livestock_map.id; END IF; END $body$ LANGUAGE plpgsql;
# --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table aluno ( matricula integer auto_increment not null, nome varchar(255), data_nasc timestamp, sexo varchar(255), curso_codigo integer, constraint pk_aluno primary key (matricula) ); create table curso ( codigo integer auto_increment not null, nome varchar(255), nivel varchar(255), constraint pk_curso primary key (codigo) ); create table disciplina ( codigo integer auto_increment not null, nome varchar(255), carga_horaria integer not null, ementa varchar(255), constraint pk_disciplina primary key (codigo) ); create table disciplina_aluno ( disciplina_codigo integer not null, aluno_matricula integer not null, constraint pk_disciplina_aluno primary key (disciplina_codigo,aluno_matricula) ); create index ix_aluno_curso_codigo on aluno (curso_codigo); alter table aluno add constraint fk_aluno_curso_codigo foreign key (curso_codigo) references curso (codigo) on delete restrict on update restrict; create index ix_disciplina_aluno_disciplina on disciplina_aluno (disciplina_codigo); alter table disciplina_aluno add constraint fk_disciplina_aluno_disciplina foreign key (disciplina_codigo) references disciplina (codigo) on delete restrict on update restrict; create index ix_disciplina_aluno_aluno on disciplina_aluno (aluno_matricula); alter table disciplina_aluno add constraint fk_disciplina_aluno_aluno foreign key (aluno_matricula) references aluno (matricula) on delete restrict on update restrict; # --- !Downs alter table aluno drop constraint if exists fk_aluno_curso_codigo; drop index if exists ix_aluno_curso_codigo; alter table disciplina_aluno drop constraint if exists fk_disciplina_aluno_disciplina; drop index if exists ix_disciplina_aluno_disciplina; alter table disciplina_aluno drop constraint if exists fk_disciplina_aluno_aluno; drop index if exists ix_disciplina_aluno_aluno; drop table if exists aluno; drop table if exists curso; drop table if exists disciplina; drop table if exists disciplina_aluno;
<reponame>CodingRacoonn/LibraryManager CREATE PROCEDURE [dbo].[spBook_GetByTitle] @Title nvarchar(50) AS BEGIN SET NOCOUNT ON SELECT Id, Title, [Description], AuthorFirstName, AuthorLastName, Publisher, ReleaseDate, Quantity, AvailableQuantity FROM dbo.Book WHERE Title LIKE @Title + '%' OR Title LIKE @Title + ' %' END
-- CreateTable CREATE TABLE "Leitores" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "none" TEXT NOT NULL, "sexo" TEXT NOT NULL, "cidade" TEXT NOT NULL, "email" TEXT NOT NULL, "telefone" TEXT NOT NULL ); -- CreateIndex CREATE UNIQUE INDEX "Leitores_email_key" ON "Leitores"("email");
CREATE PROCEDURE [dbo].[spPersoanaFiltrataDupaPrenume] @Prenume nvarchar(50) as begin select [Id], [Nume], [Prenume] from dbo.Persoana where Prenume = @Prenume; end
<gh_stars>0 -- TPC-H Query 22 select cntrycode, count(*) as numcust, sum(acctbal) as totacctbal from ( select substring(c.phone from 1 for 2) as cntrycode, c.acctbal from customer c where substring(c.phone from 1 for 2) in ('13', '31', '23', '29', '30', '18', '17') and c.acctbal > ( select avg(c2.acctbal) from customer c2 where c2.acctbal > 0.00 and substring(c2.phone from 1 for 2) in ('13', '31', '23', '29', '30', '18', '17') ) and not exists ( select * from orders o where o.custkey = c.custkey ) ) as custsale group by cntrycode order by cntrycode
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 20, 2021 at 07:56 AM -- Server version: 10.1.28-MariaDB -- PHP Version: 7.1.10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `capstone` -- -- -------------------------------------------------------- -- -- Table structure for table `areas` -- CREATE TABLE `areas` ( `id` int(11) NOT NULL, `areaNum` int(2) NOT NULL, `areaName` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `areas` -- INSERT INTO `areas` (`id`, `areaNum`, `areaName`) VALUES (1, 1, 'Mission, goals and objectives'), (2, 2, 'Faculty'), (3, 3, 'Curriculum and Instruction'), (4, 4, 'Support to Students'), (5, 5, 'Research'), (6, 6, 'Extension and Community Involvement'), (7, 7, 'Library'), (8, 8, 'Physical Facilities'), (9, 9, 'Laboratories'), (10, 10, 'Administration'); -- -------------------------------------------------------- -- -- Table structure for table `assessment` -- CREATE TABLE `assessment` ( `assessID` int(11) NOT NULL, `content` text, `assessUser` int(11) DEFAULT NULL, `file` int(11) DEFAULT NULL, `date` varchar(15) DEFAULT NULL, `type` enum('general','specific') DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `assessment` -- INSERT INTO `assessment` (`assessID`, `content`, `assessUser`, `file`, `date`, `type`) VALUES (13, 'lkfg', 62, NULL, 'May 13, 2021', 'general'); -- -------------------------------------------------------- -- -- Table structure for table `assigntask` -- CREATE TABLE `assigntask` ( `id` int(11) NOT NULL, `user` int(11) DEFAULT NULL, `area` int(11) DEFAULT NULL, `program` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `comID` int(11) NOT NULL, `content` text, `comUser` int(11) DEFAULT NULL, `file` int(11) DEFAULT NULL, `date` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `evaluation_file` -- CREATE TABLE `evaluation_file` ( `fileID` int(11) NOT NULL, `fileName` text, `path` int(11) DEFAULT NULL, `levelID` int(11) DEFAULT NULL, `uploader` int(11) DEFAULT NULL, `time` varchar(15) DEFAULT NULL, `date` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `evaluation_file` -- INSERT INTO `evaluation_file` (`fileID`, `fileName`, `path`, `levelID`, `uploader`, `time`, `date`) VALUES (1, 'GitHub - ryanmcdermott_clean-code-javascript_ Clean Code concepts adapted for JavaScript.pdf', 21, 31, 62, '01:52 pm', 'May 20, 2021'); -- -------------------------------------------------------- -- -- Table structure for table `files` -- CREATE TABLE `files` ( `id` int(11) NOT NULL, `fileName` text, `path` text, `uploader` int(11) DEFAULT NULL, `time` varchar(15) DEFAULT NULL, `date` varchar(15) DEFAULT NULL, `status` enum('notArchived','archived') DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `files` -- INSERT INTO `files` (`id`, `fileName`, `path`, `uploader`, `time`, `date`, `status`) VALUES (13, 'pic3.jpg', 'slider', 14, 'B', NULL, 'notArchived'), (14, 'pic4.jpg', 'slider', 14, 'C', NULL, 'notArchived'), (15, 'pic5.jpg', 'slider', 14, 'A', NULL, 'notArchived'), (16, 'pic6.jpg', 'slider', 14, 'F', NULL, 'notArchived'), (17, 'pic7.jpg', 'slider', 14, 'D', NULL, 'notArchived'), (19, 'pic9.jpg', 'slider', 14, 'G', NULL, 'notArchived'), (20, 'pic1.jpg', 'slider', 14, 'E', NULL, 'notArchived'), (46, 'GitHub - ryanmcdermott_clean-code-javascript_ Clean Code concepts adapted for JavaScript.pdf', 'Archive', 14, '01:31 pm', 'May 20, 2021', 'archived'); -- -------------------------------------------------------- -- -- Table structure for table `level` -- CREATE TABLE `level` ( `levelID` int(11) NOT NULL, `levelName` varchar(50) DEFAULT NULL, `num` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `level` -- INSERT INTO `level` (`levelID`, `levelName`, `num`) VALUES (31, 'PSV', 1), (32, 'Level 1', 2), (33, 'Level 2', 3), (34, 'Level 3', 4); -- -------------------------------------------------------- -- -- Table structure for table `notification` -- CREATE TABLE `notification` ( `notifyID` int(11) NOT NULL, `category` enum('upload','comment','assign','deleteAll','deleteSingle') DEFAULT NULL, `date` varchar(20) DEFAULT NULL, `time` varchar(10) DEFAULT NULL, `fileID` int(11) DEFAULT NULL, `usersID` int(11) DEFAULT NULL, `title` text, `assignTaskID` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `notification` -- INSERT INTO `notification` (`notifyID`, `category`, `date`, `time`, `fileID`, `usersID`, `title`, `assignTaskID`) VALUES (1, 'deleteSingle', 'Apr 22, 2021', '05:06 pm', NULL, 14, 'Letters', NULL), (2, 'deleteSingle', 'Apr 22, 2021', '05:06 pm', NULL, 14, 'Letters', NULL), (36, 'deleteSingle', 'May 17, 2021', '03:52 pm', NULL, 14, 'Letters', NULL), (37, 'deleteSingle', 'May 17, 2021', '04:51 pm', NULL, 14, 'Letters', NULL), (40, 'deleteSingle', 'May 20, 2021', '01:23 pm', NULL, 14, 'Letters', NULL), (41, 'deleteSingle', 'May 20, 2021', '01:23 pm', NULL, 14, 'Letters', NULL), (42, 'deleteSingle', 'May 20, 2021', '01:23 pm', NULL, 14, 'Letters', NULL), (43, 'deleteSingle', 'May 20, 2021', '01:23 pm', NULL, 14, 'Letters', NULL), (46, 'deleteSingle', 'May 20, 2021', '01:27 pm', NULL, 14, 'Letters', NULL), (47, 'deleteSingle', 'May 20, 2021', '01:27 pm', NULL, 14, 'Letters', NULL), (48, 'deleteAll', 'May 20, 2021', '01:28 pm', NULL, 14, 'mgh', NULL), (49, 'deleteAll', 'May 20, 2021', '01:31 pm', NULL, 14, 'kjnkd', NULL), (51, 'deleteAll', 'May 20, 2021', '01:31 pm', NULL, 14, ',mdnfkvssv', NULL), (52, 'deleteAll', 'May 20, 2021', '01:32 pm', NULL, 14, 'dklfngld', NULL), (53, 'deleteAll', 'May 20, 2021', '01:33 pm', NULL, 14, 'mn mn', NULL), (54, 'deleteAll', 'May 20, 2021', '01:38 pm', NULL, 14, 'New Folder', NULL), (56, 'deleteSingle', 'May 20, 2021', '01:42 pm', NULL, 14, 'Letters', NULL), (58, 'deleteSingle', 'May 20, 2021', '01:43 pm', NULL, 14, 'Letters', NULL), (60, 'deleteSingle', 'May 20, 2021', '01:46 pm', NULL, 14, 'Letters', NULL), (62, 'deleteSingle', 'May 20, 2021', '01:47 pm', NULL, 14, 'Letters', NULL); -- -------------------------------------------------------- -- -- Table structure for table `notify` -- CREATE TABLE `notify` ( `noteID` int(11) NOT NULL, `notifyID` int(11) DEFAULT NULL, `usersID` int(11) DEFAULT NULL, `status` enum('opened','unopened') DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `notify` -- INSERT INTO `notify` (`noteID`, `notifyID`, `usersID`, `status`) VALUES (1, 1, 14, 'opened'), (2, 1, 61, 'unopened'), (3, 1, 68, 'unopened'), (4, 1, 69, 'unopened'), (5, 1, 70, 'unopened'), (6, 1, 71, 'unopened'), (7, 1, 72, 'unopened'), (8, 1, 73, 'unopened'), (9, 1, 74, 'unopened'), (10, 1, 75, 'unopened'), (11, 1, 76, 'unopened'), (12, 1, 77, 'unopened'), (13, 1, 78, 'unopened'), (14, 1, 79, 'unopened'), (15, 1, 80, 'unopened'), (16, 1, 81, 'unopened'), (17, 1, 82, 'unopened'), (18, 1, 83, 'unopened'), (19, 1, 84, 'unopened'), (20, 1, 85, 'unopened'), (21, 1, 14, 'opened'), (22, 1, 61, 'unopened'), (23, 1, 68, 'unopened'), (24, 1, 69, 'unopened'), (25, 1, 70, 'unopened'), (26, 1, 71, 'unopened'), (27, 1, 72, 'unopened'), (28, 1, 73, 'unopened'), (29, 1, 74, 'unopened'), (30, 1, 75, 'unopened'), (31, 1, 76, 'unopened'), (32, 1, 77, 'unopened'), (33, 1, 78, 'unopened'), (34, 1, 79, 'unopened'), (35, 1, 80, 'unopened'), (36, 1, 81, 'unopened'), (37, 1, 82, 'unopened'), (38, 1, 83, 'unopened'), (39, 1, 84, 'unopened'), (40, 1, 85, 'unopened'), (473, 36, 14, 'opened'), (474, 36, 61, 'unopened'), (475, 36, 68, 'unopened'), (476, 36, 69, 'unopened'), (477, 36, 70, 'unopened'), (478, 36, 71, 'unopened'), (479, 36, 72, 'unopened'), (480, 36, 73, 'unopened'), (481, 36, 74, 'unopened'), (482, 36, 75, 'unopened'), (483, 36, 76, 'unopened'), (484, 36, 77, 'unopened'), (485, 36, 78, 'unopened'), (486, 36, 79, 'unopened'), (487, 36, 80, 'unopened'), (488, 36, 81, 'unopened'), (489, 36, 82, 'unopened'), (490, 36, 83, 'unopened'), (491, 36, 84, 'unopened'), (492, 36, 85, 'unopened'), (493, 37, 14, 'unopened'), (494, 37, 61, 'unopened'), (495, 37, 68, 'unopened'), (496, 37, 69, 'unopened'), (497, 37, 70, 'unopened'), (498, 37, 71, 'unopened'), (499, 37, 72, 'unopened'), (500, 37, 73, 'unopened'), (501, 37, 74, 'unopened'), (502, 37, 75, 'unopened'), (503, 37, 76, 'unopened'), (504, 37, 77, 'unopened'), (505, 37, 78, 'unopened'), (506, 37, 79, 'unopened'), (507, 37, 80, 'unopened'), (508, 37, 81, 'unopened'), (509, 37, 82, 'unopened'), (510, 37, 83, 'unopened'), (511, 37, 84, 'unopened'), (512, 37, 85, 'unopened'), (553, 40, 14, 'unopened'), (554, 40, 61, 'unopened'), (555, 40, 68, 'unopened'), (556, 40, 69, 'unopened'), (557, 40, 70, 'unopened'), (558, 40, 71, 'unopened'), (559, 40, 72, 'unopened'), (560, 40, 73, 'unopened'), (561, 40, 74, 'unopened'), (562, 40, 75, 'unopened'), (563, 40, 76, 'unopened'), (564, 40, 77, 'unopened'), (565, 40, 78, 'unopened'), (566, 40, 79, 'unopened'), (567, 40, 80, 'unopened'), (568, 40, 81, 'unopened'), (569, 40, 82, 'unopened'), (570, 40, 83, 'unopened'), (571, 40, 84, 'unopened'), (572, 40, 85, 'unopened'), (573, 40, 14, 'unopened'), (574, 40, 61, 'unopened'), (575, 40, 68, 'unopened'), (576, 40, 69, 'unopened'), (577, 40, 70, 'unopened'), (578, 40, 71, 'unopened'), (579, 40, 72, 'unopened'), (580, 40, 73, 'unopened'), (581, 40, 74, 'unopened'), (582, 40, 75, 'unopened'), (583, 40, 76, 'unopened'), (584, 40, 77, 'unopened'), (585, 40, 78, 'unopened'), (586, 40, 79, 'unopened'), (587, 40, 80, 'unopened'), (588, 40, 81, 'unopened'), (589, 40, 82, 'unopened'), (590, 40, 83, 'unopened'), (591, 40, 84, 'unopened'), (592, 40, 85, 'unopened'), (593, 40, 14, 'unopened'), (594, 40, 61, 'unopened'), (595, 40, 68, 'unopened'), (596, 40, 69, 'unopened'), (597, 40, 70, 'unopened'), (598, 40, 71, 'unopened'), (599, 40, 72, 'unopened'), (600, 40, 73, 'unopened'), (601, 40, 74, 'unopened'), (602, 40, 75, 'unopened'), (603, 40, 76, 'unopened'), (604, 40, 77, 'unopened'), (605, 40, 78, 'unopened'), (606, 40, 79, 'unopened'), (607, 40, 80, 'unopened'), (608, 40, 81, 'unopened'), (609, 40, 82, 'unopened'), (610, 40, 83, 'unopened'), (611, 40, 84, 'unopened'), (612, 40, 85, 'unopened'), (613, 40, 14, 'unopened'), (614, 40, 61, 'unopened'), (615, 40, 68, 'unopened'), (616, 40, 69, 'unopened'), (617, 40, 70, 'unopened'), (618, 40, 71, 'unopened'), (619, 40, 72, 'unopened'), (620, 40, 73, 'unopened'), (621, 40, 74, 'unopened'), (622, 40, 75, 'unopened'), (623, 40, 76, 'unopened'), (624, 40, 77, 'unopened'), (625, 40, 78, 'unopened'), (626, 40, 79, 'unopened'), (627, 40, 80, 'unopened'), (628, 40, 81, 'unopened'), (629, 40, 82, 'unopened'), (630, 40, 83, 'unopened'), (631, 40, 84, 'unopened'), (632, 40, 85, 'unopened'), (673, 46, 14, 'unopened'), (674, 46, 61, 'unopened'), (675, 46, 68, 'unopened'), (676, 46, 69, 'unopened'), (677, 46, 70, 'unopened'), (678, 46, 71, 'unopened'), (679, 46, 72, 'unopened'), (680, 46, 73, 'unopened'), (681, 46, 74, 'unopened'), (682, 46, 75, 'unopened'), (683, 46, 76, 'unopened'), (684, 46, 77, 'unopened'), (685, 46, 78, 'unopened'), (686, 46, 79, 'unopened'), (687, 46, 80, 'unopened'), (688, 46, 81, 'unopened'), (689, 46, 82, 'unopened'), (690, 46, 83, 'unopened'), (691, 46, 84, 'unopened'), (692, 46, 85, 'unopened'), (693, 46, 14, 'unopened'), (694, 46, 61, 'unopened'), (695, 46, 68, 'unopened'), (696, 46, 69, 'unopened'), (697, 46, 70, 'unopened'), (698, 46, 71, 'unopened'), (699, 46, 72, 'unopened'), (700, 46, 73, 'unopened'), (701, 46, 74, 'unopened'), (702, 46, 75, 'unopened'), (703, 46, 76, 'unopened'), (704, 46, 77, 'unopened'), (705, 46, 78, 'unopened'), (706, 46, 79, 'unopened'), (707, 46, 80, 'unopened'), (708, 46, 81, 'unopened'), (709, 46, 82, 'unopened'), (710, 46, 83, 'unopened'), (711, 46, 84, 'unopened'), (712, 46, 85, 'unopened'), (713, 48, 14, 'unopened'), (714, 48, 61, 'unopened'), (715, 48, 68, 'unopened'), (716, 48, 69, 'unopened'), (717, 48, 70, 'unopened'), (718, 48, 71, 'unopened'), (719, 48, 72, 'unopened'), (720, 48, 73, 'unopened'), (721, 48, 74, 'unopened'), (722, 48, 75, 'unopened'), (723, 48, 76, 'unopened'), (724, 48, 77, 'unopened'), (725, 48, 78, 'unopened'), (726, 48, 79, 'unopened'), (727, 48, 80, 'unopened'), (728, 48, 81, 'unopened'), (729, 48, 82, 'unopened'), (730, 48, 83, 'unopened'), (731, 48, 84, 'unopened'), (732, 48, 85, 'unopened'), (733, 49, 14, 'unopened'), (734, 49, 61, 'unopened'), (735, 49, 68, 'unopened'), (736, 49, 69, 'unopened'), (737, 49, 70, 'unopened'), (738, 49, 71, 'unopened'), (739, 49, 72, 'unopened'), (740, 49, 73, 'unopened'), (741, 49, 74, 'unopened'), (742, 49, 75, 'unopened'), (743, 49, 76, 'unopened'), (744, 49, 77, 'unopened'), (745, 49, 78, 'unopened'), (746, 49, 79, 'unopened'), (747, 49, 80, 'unopened'), (748, 49, 81, 'unopened'), (749, 49, 82, 'unopened'), (750, 49, 83, 'unopened'), (751, 49, 84, 'unopened'), (752, 49, 85, 'unopened'), (773, 51, 14, 'unopened'), (774, 51, 61, 'unopened'), (775, 51, 68, 'unopened'), (776, 51, 69, 'unopened'), (777, 51, 70, 'unopened'), (778, 51, 71, 'unopened'), (779, 51, 72, 'unopened'), (780, 51, 73, 'unopened'), (781, 51, 74, 'unopened'), (782, 51, 75, 'unopened'), (783, 51, 76, 'unopened'), (784, 51, 77, 'unopened'), (785, 51, 78, 'unopened'), (786, 51, 79, 'unopened'), (787, 51, 80, 'unopened'), (788, 51, 81, 'unopened'), (789, 51, 82, 'unopened'), (790, 51, 83, 'unopened'), (791, 51, 84, 'unopened'), (792, 51, 85, 'unopened'), (793, 52, 14, 'unopened'), (794, 52, 61, 'unopened'), (795, 52, 68, 'unopened'), (796, 52, 69, 'unopened'), (797, 52, 70, 'unopened'), (798, 52, 71, 'unopened'), (799, 52, 72, 'unopened'), (800, 52, 73, 'unopened'), (801, 52, 74, 'unopened'), (802, 52, 75, 'unopened'), (803, 52, 76, 'unopened'), (804, 52, 77, 'unopened'), (805, 52, 78, 'unopened'), (806, 52, 79, 'unopened'), (807, 52, 80, 'unopened'), (808, 52, 81, 'unopened'), (809, 52, 82, 'unopened'), (810, 52, 83, 'unopened'), (811, 52, 84, 'unopened'), (812, 52, 85, 'unopened'), (813, 53, 14, 'unopened'), (814, 53, 61, 'unopened'), (815, 53, 68, 'unopened'), (816, 53, 69, 'unopened'), (817, 53, 70, 'unopened'), (818, 53, 71, 'unopened'), (819, 53, 72, 'unopened'), (820, 53, 73, 'unopened'), (821, 53, 74, 'unopened'), (822, 53, 75, 'unopened'), (823, 53, 76, 'unopened'), (824, 53, 77, 'unopened'), (825, 53, 78, 'unopened'), (826, 53, 79, 'unopened'), (827, 53, 80, 'unopened'), (828, 53, 81, 'unopened'), (829, 53, 82, 'unopened'), (830, 53, 83, 'unopened'), (831, 53, 84, 'unopened'), (832, 53, 85, 'unopened'), (833, 54, 14, 'unopened'), (834, 54, 61, 'unopened'), (835, 54, 68, 'unopened'), (836, 54, 69, 'unopened'), (837, 54, 70, 'unopened'), (838, 54, 71, 'unopened'), (839, 54, 72, 'unopened'), (840, 54, 73, 'unopened'), (841, 54, 74, 'unopened'), (842, 54, 75, 'unopened'), (843, 54, 76, 'unopened'), (844, 54, 77, 'unopened'), (845, 54, 78, 'unopened'), (846, 54, 79, 'unopened'), (847, 54, 80, 'unopened'), (848, 54, 81, 'unopened'), (849, 54, 82, 'unopened'), (850, 54, 83, 'unopened'), (851, 54, 84, 'unopened'), (852, 54, 85, 'unopened'), (873, 56, 14, 'unopened'), (874, 56, 61, 'unopened'), (875, 56, 68, 'unopened'), (876, 56, 69, 'unopened'), (877, 56, 70, 'unopened'), (878, 56, 71, 'unopened'), (879, 56, 72, 'unopened'), (880, 56, 73, 'unopened'), (881, 56, 74, 'unopened'), (882, 56, 75, 'unopened'), (883, 56, 76, 'unopened'), (884, 56, 77, 'unopened'), (885, 56, 78, 'unopened'), (886, 56, 79, 'unopened'), (887, 56, 80, 'unopened'), (888, 56, 81, 'unopened'), (889, 56, 82, 'unopened'), (890, 56, 83, 'unopened'), (891, 56, 84, 'unopened'), (892, 56, 85, 'unopened'), (913, 58, 14, 'unopened'), (914, 58, 61, 'unopened'), (915, 58, 68, 'unopened'), (916, 58, 69, 'unopened'), (917, 58, 70, 'unopened'), (918, 58, 71, 'unopened'), (919, 58, 72, 'unopened'), (920, 58, 73, 'unopened'), (921, 58, 74, 'unopened'), (922, 58, 75, 'unopened'), (923, 58, 76, 'unopened'), (924, 58, 77, 'unopened'), (925, 58, 78, 'unopened'), (926, 58, 79, 'unopened'), (927, 58, 80, 'unopened'), (928, 58, 81, 'unopened'), (929, 58, 82, 'unopened'), (930, 58, 83, 'unopened'), (931, 58, 84, 'unopened'), (932, 58, 85, 'unopened'), (953, 60, 14, 'unopened'), (954, 60, 61, 'unopened'), (955, 60, 68, 'unopened'), (956, 60, 69, 'unopened'), (957, 60, 70, 'unopened'), (958, 60, 71, 'unopened'), (959, 60, 72, 'unopened'), (960, 60, 73, 'unopened'), (961, 60, 74, 'unopened'), (962, 60, 75, 'unopened'), (963, 60, 76, 'unopened'), (964, 60, 77, 'unopened'), (965, 60, 78, 'unopened'), (966, 60, 79, 'unopened'), (967, 60, 80, 'unopened'), (968, 60, 81, 'unopened'), (969, 60, 82, 'unopened'), (970, 60, 83, 'unopened'), (971, 60, 84, 'unopened'), (972, 60, 85, 'unopened'), (993, 62, 14, 'unopened'), (994, 62, 61, 'unopened'), (995, 62, 68, 'unopened'), (996, 62, 69, 'unopened'), (997, 62, 70, 'unopened'), (998, 62, 71, 'unopened'), (999, 62, 72, 'unopened'), (1000, 62, 73, 'unopened'), (1001, 62, 74, 'unopened'), (1002, 62, 75, 'unopened'), (1003, 62, 76, 'unopened'), (1004, 62, 77, 'unopened'), (1005, 62, 78, 'unopened'), (1006, 62, 79, 'unopened'), (1007, 62, 80, 'unopened'), (1008, 62, 81, 'unopened'), (1009, 62, 82, 'unopened'), (1010, 62, 83, 'unopened'), (1011, 62, 84, 'unopened'), (1012, 62, 85, 'unopened'); -- -------------------------------------------------------- -- -- Table structure for table `programs` -- CREATE TABLE `programs` ( `programID` int(11) NOT NULL, `programName` varchar(50) DEFAULT NULL, `levelID` int(11) DEFAULT NULL, `num` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `programs` -- INSERT INTO `programs` (`programID`, `programName`, `levelID`, `num`) VALUES (19, 'BS Computer Science', 31, 1), (20, 'BS Information Technology', 31, 2), (21, 'BS Information System', 32, NULL); -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` int(11) NOT NULL, `fileName` int(11) DEFAULT NULL, `tagger` int(11) DEFAULT NULL, `sourcePath` int(11) DEFAULT NULL, `tagNum` int(11) DEFAULT NULL, `date` varchar(15) DEFAULT NULL, `time` varchar(15) DEFAULT NULL, `targetPath` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `usersID` int(11) NOT NULL, `Fname` varchar(20) DEFAULT NULL, `Mname` varchar(20) DEFAULT NULL, `Lname` varchar(20) DEFAULT NULL, `username` text, `password` text, `userType` enum('Admin','Area Faculty','Accreditor') NOT NULL, `status` enum('activated','deactivated') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`usersID`, `Fname`, `Mname`, `Lname`, `username`, `password`, `userType`, `status`) VALUES (14, 'Nurjadein', 'Tominaman', 'Abdulmorid', 'nurj', '$2y$10$sFAcugS29RZWiIN/oqSVLO5IgPoCztC/67q81/h1xG9.NVgztmUbe', 'Admin', 'activated'), (61, 'Mubin', 'M.', 'Macadadaya', 'mubin61', '$2y$10$mahQFOzXiZsllLcZvHquZOfPAwEpDdH6TMzxabBvtoOQhV6mr7BTC', 'Area Faculty', 'activated'), (62, 'Accreditor', 'Accreditor', 'Accreditor', 'accreditor', '$2y$10$A3HytBENyLAKaXKap.a.ZuubMmd9QHqEtJAdj1ZExiWe0KrT75h/y', 'Accreditor', 'activated'), (68, 'Al\'Annuar', 'H.', 'Asakil', 'al\'annuar68', '$2y$10$Kr8wC98LNdJkhV3zVJdEVeaK8zqz7/hsHlmPJdLNQT/SYa3Ecf6oi', 'Area Faculty', 'activated'), (69, '<NAME>', '.', 'Rande', 'jenanfathma69', '$2y$10$4/htKKn66/NKj3vj/t46euOFX4.uc/yQnAOVoy/PWhTbT970710xe', 'Area Faculty', 'activated'), (70, 'Maimona', 'M.', 'Asum', 'maimona70', '$2y$10$equPUc0Nl4LLb9BS1CmC2eqoRx8lcetAbNRBUN2.YRk.q0vI5K.nq', 'Admin', 'activated'), (71, 'Jeffrey', 'M.', 'Mondejar', 'jeffrey71', '$2y$10$rEzc3QRO3ZVVmuJxVAQZPOD6heL2geHJT0eiBKq3V5Fv.qK2f5/KO', 'Area Faculty', 'activated'), (72, '<NAME>', 'C.', 'Mama', 'jasminejeanette72', '$2y$10$fL9CVVL8tU.77/ukgenTvuR9FRGaptgW/zfCrCkum2b.33.NMs0Oq', 'Area Faculty', 'activated'), (73, 'Janice', 'F.', 'Wade', 'janice73', '$2y$10$Ot4RSDKdtI4IIk9GJrtW3.IbSx73AE9yhAF7evQGSIna6BU7j3y.q', 'Area Faculty', 'activated'), (74, 'Mudzna', 'M.', 'Asakil', 'mudzna74', '$2y$10$zLZp12Ircxgh42yt81Oxr.RV4UZnKjDB8BBODVVnyjRyomIdEni3y', 'Area Faculty', 'activated'), (75, 'Nosaifa', 'M.', 'Mindalano', 'nosaifa75', '$2y$10$ySnjfxscwxgxWm5V/QWE1up/3qJ5RAZnA/ndC0Fs2G0E/uylltqHy', 'Area Faculty', 'activated'), (76, 'Bantogun', 'S.', 'Tarathingan', 'bantogun76', '$2y$10$rCiEVO6jAEngTtcZ4YIBLethrFX.6G1Fj9XyED.GWIJUjmIo20SES', 'Area Faculty', 'activated'), (77, 'Llewelyn', 'A.', 'Elcana', 'llewelyn77', '$2y$10$9cYtjxRpFC5lM8eec08dSOgy/tx1qTssQ/LmjTIHzhkI8rjBsRUjS', 'Area Faculty', 'activated'), (78, 'Lucman', 'M.', 'Abdulrachman', 'lucman78', '$2y$10$qncaESDw.xX1r5dxIaAk8.xB9G/KpZx3QaVD0N9LmNrerKEiCeuXW', 'Area Faculty', 'activated'), (79, 'Jogie', 'A.', 'Vistal', 'jogie79', '$2y$10$t5uT0y1vvOxU3eZTBCkvT.KkZU8zcpFvs4Rd2AZIz346KISi0ahl6', 'Area Faculty', 'activated'), (80, 'Azreen', 'M.', 'Marohomsalic', 'azreen80', '$2y$10$In3k1FnTIf.s0Eq1XzcdouBtRN.9ZINf2JwYHpB9fi1YoBx9inoz2', 'Area Faculty', 'activated'), (81, 'Suhaina', 'K.', 'Tamano', 'suhaina81', '$2y$10$1j95WuBIKf7NGi8z2EL3xuNg78d1qh7YkeE6QG2zzAw1grCxMmkA2', 'Area Faculty', 'activated'), (82, 'Reymark', '.', 'Delena', 'reymark82', '$2y$10$V5K5LQ6ZTvxaNLnPA.4qmOqLkoLl7F/q7TPtfRonXyXc/kgWmfIY6', 'Area Faculty', 'activated'), (83, '<NAME>', '.', 'Macatotong', 'amerhussien83', '$2y$10$1WfmR46qamrd7FaRa22tZOQ02rnj0vO6LeLM8RjHin2A5dRwhpyhC', 'Area Faculty', 'activated'), (84, 'Joseph', 'C.', 'Sieras', 'joseph84', '$2y$10$yi8X7pM.HefgPWSDnroez.n/zxZpNeP5g9G.33SbFN3z.HUtZ669W', 'Area Faculty', 'activated'), (85, 'Mohammad', 'P.', 'Domato', 'mohammad85', '$2y$10$jstXfIshtqTioVQw5u1Zeeo1Cmq5hRvoQgUmdJShEyyAMAJ4ueQPC', 'Area Faculty', 'activated'), (86, 'acc2', 'acc2', 'acc2', 'acc286', '$2y$10$n39RKW7dTvbS7wh.1WaRvu.0fYsBYerDwRuRs5uUzd037/nsiXprq', 'Accreditor', 'activated'); -- -------------------------------------------------------- -- -- Table structure for table `usersfolder` -- CREATE TABLE `usersfolder` ( `usersFolderID` int(11) NOT NULL, `name` text, `area` int(11) DEFAULT NULL, `letter` varchar(1) DEFAULT NULL, `program` int(11) DEFAULT NULL, `num` int(11) DEFAULT NULL, `level` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `usersfolder` -- INSERT INTO `usersfolder` (`usersFolderID`, `name`, `area`, `letter`, `program`, `num`, `level`) VALUES (562, '(Give this a label)', 1, 'A', 19, NULL, 31), (563, '(Give this a label)', 2, 'A', 19, NULL, 31), (564, '(Give this a label)', 3, 'A', 19, NULL, 31), (565, '(Give this a label)', 4, 'A', 19, NULL, 31), (566, '(Give this a label)', 5, 'A', 19, NULL, 31), (567, '(Give this a label)', 6, 'A', 19, NULL, 31), (568, '(Give this a label)', 7, 'A', 19, NULL, 31), (569, '(Give this a label)', 8, 'A', 19, NULL, 31), (570, '(Give this a label)', 9, 'A', 19, NULL, 31), (571, '(Give this a label)', 10, 'A', 19, NULL, 31), (572, '(Give this a label)', 1, 'A', 19, NULL, 32), (573, '(Give this a label)', 2, 'A', 19, NULL, 32), (574, '(Give this a label)', 3, 'A', 19, NULL, 32), (575, '(Give this a label)', 4, 'A', 19, NULL, 32), (576, '(Give this a label)', 5, 'A', 19, NULL, 32), (577, '(Give this a label)', 6, 'A', 19, NULL, 32), (578, '(Give this a label)', 7, 'A', 19, NULL, 32), (579, '(Give this a label)', 8, 'A', 19, NULL, 32), (580, '(Give this a label)', 9, 'A', 19, NULL, 32), (581, '(Give this a label)', 10, 'A', 19, NULL, 32), (582, '(Give this a label)', 1, 'A', 19, NULL, 33), (583, '(Give this a label)', 2, 'A', 19, NULL, 33), (584, '(Give this a label)', 3, 'A', 19, NULL, 33), (585, '(Give this a label)', 4, 'A', 19, NULL, 33), (586, '(Give this a label)', 5, 'A', 19, NULL, 33), (587, '(Give this a label)', 6, 'A', 19, NULL, 33), (588, '(Give this a label)', 7, 'A', 19, NULL, 33), (589, '(Give this a label)', 8, 'A', 19, NULL, 33), (590, '(Give this a label)', 9, 'A', 19, NULL, 33), (591, '(Give this a label)', 10, 'A', 19, NULL, 33), (592, '(Give this a label)', 1, 'A', 19, NULL, 34), (593, '(Give this a label)', 2, 'A', 19, NULL, 34), (594, '(Give this a label)', 3, 'A', 19, NULL, 34), (595, '(Give this a label)', 4, 'A', 19, NULL, 34), (596, '(Give this a label)', 5, 'A', 19, NULL, 34), (597, '(Give this a label)', 6, 'A', 19, NULL, 34), (598, '(Give this a label)', 7, 'A', 19, NULL, 34), (599, '(Give this a label)', 8, 'A', 19, NULL, 34), (600, '(Give this a label)', 9, 'A', 19, NULL, 34), (601, '(Give this a label)', 10, 'A', 19, NULL, 34), (602, '(Give this a label)', 1, 'A', 20, NULL, 31), (603, '(Give this a label)', 2, 'A', 20, NULL, 31), (604, '(Give this a label)', 3, 'A', 20, NULL, 31), (605, '(Give this a label)', 4, 'A', 20, NULL, 31), (606, '(Give this a label)', 5, 'A', 20, NULL, 31), (607, '(Give this a label)', 6, 'A', 20, NULL, 31), (608, '(Give this a label)', 7, 'A', 20, NULL, 31), (609, '(Give this a label)', 8, 'A', 20, NULL, 31), (610, '(Give this a label)', 9, 'A', 20, NULL, 31), (611, '(Give this a label)', 10, 'A', 20, NULL, 31), (612, '(Give this a label)', 1, 'A', 20, NULL, 32), (613, '(Give this a label)', 2, 'A', 20, NULL, 32), (614, '(Give this a label)', 3, 'A', 20, NULL, 32), (615, '(Give this a label)', 4, 'A', 20, NULL, 32), (616, '(Give this a label)', 5, 'A', 20, NULL, 32), (617, '(Give this a label)', 6, 'A', 20, NULL, 32), (618, '(Give this a label)', 7, 'A', 20, NULL, 32), (619, '(Give this a label)', 8, 'A', 20, NULL, 32), (620, '(Give this a label)', 9, 'A', 20, NULL, 32), (621, '(Give this a label)', 10, 'A', 20, NULL, 32), (622, '(Give this a label)', 1, 'A', 20, NULL, 33), (623, '(Give this a label)', 2, 'A', 20, NULL, 33), (624, '(Give this a label)', 3, 'A', 20, NULL, 33), (625, '(Give this a label)', 4, 'A', 20, NULL, 33), (626, '(Give this a label)', 5, 'A', 20, NULL, 33), (627, '(Give this a label)', 6, 'A', 20, NULL, 33), (628, '(Give this a label)', 7, 'A', 20, NULL, 33), (629, '(Give this a label)', 8, 'A', 20, NULL, 33), (630, '(Give this a label)', 9, 'A', 20, NULL, 33), (631, '(Give this a label)', 10, 'A', 20, NULL, 33), (632, '(Give this a label)', 1, 'A', 20, NULL, 34), (633, '(Give this a label)', 2, 'A', 20, NULL, 34), (634, '(Give this a label)', 3, 'A', 20, NULL, 34), (635, '(Give this a label)', 4, 'A', 20, NULL, 34), (636, '(Give this a label)', 5, 'A', 20, NULL, 34), (637, '(Give this a label)', 6, 'A', 20, NULL, 34), (638, '(Give this a label)', 7, 'A', 20, NULL, 34), (639, '(Give this a label)', 8, 'A', 20, NULL, 34), (640, '(Give this a label)', 9, 'A', 20, NULL, 34), (641, '(Give this a label)', 10, 'A', 20, NULL, 34), (642, '(Give this a label)', 1, 'A', 21, NULL, 31), (643, '(Give this a label)', 2, 'A', 21, NULL, 31), (644, '(Give this a label)', 3, 'A', 21, NULL, 31), (645, '(Give this a label)', 4, 'A', 21, NULL, 31), (646, '(Give this a label)', 5, 'A', 21, NULL, 31), (647, '(Give this a label)', 6, 'A', 21, NULL, 31), (648, '(Give this a label)', 7, 'A', 21, NULL, 31), (649, '(Give this a label)', 8, 'A', 21, NULL, 31), (650, '(Give this a label)', 9, 'A', 21, NULL, 31), (651, '(Give this a label)', 10, 'A', 21, NULL, 31), (652, '(Give this a label)', 1, 'A', 21, NULL, 32), (653, '(Give this a label)', 2, 'A', 21, NULL, 32), (654, '(Give this a label)', 3, 'A', 21, NULL, 32), (655, '(Give this a label)', 4, 'A', 21, NULL, 32), (656, '(Give this a label)', 5, 'A', 21, NULL, 32), (657, '(Give this a label)', 6, 'A', 21, NULL, 32), (658, '(Give this a label)', 7, 'A', 21, NULL, 32), (659, '(Give this a label)', 8, 'A', 21, NULL, 32), (660, '(Give this a label)', 9, 'A', 21, NULL, 32), (661, '(Give this a label)', 10, 'A', 21, NULL, 32), (662, '(Give this a label)', 1, 'A', 21, NULL, 33), (663, '(Give this a label)', 2, 'A', 21, NULL, 33), (664, '(Give this a label)', 3, 'A', 21, NULL, 33), (665, '(Give this a label)', 4, 'A', 21, NULL, 33), (666, '(Give this a label)', 5, 'A', 21, NULL, 33), (667, '(Give this a label)', 6, 'A', 21, NULL, 33), (668, '(Give this a label)', 7, 'A', 21, NULL, 33), (669, '(Give this a label)', 8, 'A', 21, NULL, 33), (670, '(Give this a label)', 9, 'A', 21, NULL, 33), (671, '(Give this a label)', 10, 'A', 21, NULL, 33), (672, '(Give this a label)', 1, 'A', 21, NULL, 34), (673, '(Give this a label)', 2, 'A', 21, NULL, 34), (674, '(Give this a label)', 3, 'A', 21, NULL, 34), (675, '(Give this a label)', 4, 'A', 21, NULL, 34), (676, '(Give this a label)', 5, 'A', 21, NULL, 34), (677, '(Give this a label)', 6, 'A', 21, NULL, 34), (678, '(Give this a label)', 7, 'A', 21, NULL, 34), (679, '(Give this a label)', 8, 'A', 21, NULL, 34), (680, '(Give this a label)', 9, 'A', 21, NULL, 34), (681, '(Give this a label)', 10, 'A', 21, NULL, 34); -- -------------------------------------------------------- -- -- Table structure for table `userssubfolder` -- CREATE TABLE `userssubfolder` ( `subID` int(11) NOT NULL, `subName` text, `folderNum` int(11) DEFAULT NULL, `usersFolder` int(11) DEFAULT NULL, `program` int(11) DEFAULT NULL, `level` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `userssubfolder` -- INSERT INTO `userssubfolder` (`subID`, `subName`, `folderNum`, `usersFolder`, `program`, `level`) VALUES (562, '(Give this a sub label)', 1, 562, 19, 31), (563, '(Give this a sub label)', 1, 563, 19, 31), (564, '(Give this a sub label)', 1, 564, 19, 31), (565, '(Give this a sub label)', 1, 565, 19, 31), (566, '(Give this a sub label)', 1, 566, 19, 31), (567, '(Give this a sub label)', 1, 567, 19, 31), (568, '(Give this a sub label)', 1, 568, 19, 31), (569, '(Give this a sub label)', 1, 569, 19, 31), (570, '(Give this a sub label)', 1, 570, 19, 31), (571, '(Give this a sub label)', 1, 571, 19, 31), (572, '(Give this a sub label)', 1, 572, 19, 32), (573, '(Give this a sub label)', 1, 573, 19, 32), (574, '(Give this a sub label)', 1, 574, 19, 32), (575, '(Give this a sub label)', 1, 575, 19, 32), (576, '(Give this a sub label)', 1, 576, 19, 32), (577, '(Give this a sub label)', 1, 577, 19, 32), (578, '(Give this a sub label)', 1, 578, 19, 32), (579, '(Give this a sub label)', 1, 579, 19, 32), (580, '(Give this a sub label)', 1, 580, 19, 32), (581, '(Give this a sub label)', 1, 581, 19, 32), (582, '(Give this a sub label)', 1, 582, 19, 33), (583, '(Give this a sub label)', 1, 583, 19, 33), (584, '(Give this a sub label)', 1, 584, 19, 33), (585, '(Give this a sub label)', 1, 585, 19, 33), (586, '(Give this a sub label)', 1, 586, 19, 33), (587, '(Give this a sub label)', 1, 587, 19, 33), (588, '(Give this a sub label)', 1, 588, 19, 33), (589, '(Give this a sub label)', 1, 589, 19, 33), (590, '(Give this a sub label)', 1, 590, 19, 33), (591, '(Give this a sub label)', 1, 591, 19, 33), (592, '(Give this a sub label)', 1, 592, 19, 34), (593, '(Give this a sub label)', 1, 593, 19, 34), (594, '(Give this a sub label)', 1, 594, 19, 34), (595, '(Give this a sub label)', 1, 595, 19, 34), (596, '(Give this a sub label)', 1, 596, 19, 34), (597, '(Give this a sub label)', 1, 597, 19, 34), (598, '(Give this a sub label)', 1, 598, 19, 34), (599, '(Give this a sub label)', 1, 599, 19, 34), (600, '(Give this a sub label)', 1, 600, 19, 34), (601, '(Give this a sub label)', 1, 601, 19, 34), (602, '(Give this a sub label)', 1, 602, 20, 31), (603, '(Give this a sub label)', 1, 603, 20, 31), (604, '(Give this a sub label)', 1, 604, 20, 31), (605, '(Give this a sub label)', 1, 605, 20, 31), (606, '(Give this a sub label)', 1, 606, 20, 31), (607, '(Give this a sub label)', 1, 607, 20, 31), (608, '(Give this a sub label)', 1, 608, 20, 31), (609, '(Give this a sub label)', 1, 609, 20, 31), (610, '(Give this a sub label)', 1, 610, 20, 31), (611, '(Give this a sub label)', 1, 611, 20, 31), (612, '(Give this a sub label)', 1, 612, 20, 32), (613, '(Give this a sub label)', 1, 613, 20, 32), (614, '(Give this a sub label)', 1, 614, 20, 32), (615, '(Give this a sub label)', 1, 615, 20, 32), (616, '(Give this a sub label)', 1, 616, 20, 32), (617, '(Give this a sub label)', 1, 617, 20, 32), (618, '(Give this a sub label)', 1, 618, 20, 32), (619, '(Give this a sub label)', 1, 619, 20, 32), (620, '(Give this a sub label)', 1, 620, 20, 32), (621, '(Give this a sub label)', 1, 621, 20, 32), (622, '(Give this a sub label)', 1, 622, 20, 33), (623, '(Give this a sub label)', 1, 623, 20, 33), (624, '(Give this a sub label)', 1, 624, 20, 33), (625, '(Give this a sub label)', 1, 625, 20, 33), (626, '(Give this a sub label)', 1, 626, 20, 33), (627, '(Give this a sub label)', 1, 627, 20, 33), (628, '(Give this a sub label)', 1, 628, 20, 33), (629, '(Give this a sub label)', 1, 629, 20, 33), (630, '(Give this a sub label)', 1, 630, 20, 33), (631, '(Give this a sub label)', 1, 631, 20, 33), (632, '(Give this a sub label)', 1, 632, 20, 34), (633, '(Give this a sub label)', 1, 633, 20, 34), (634, '(Give this a sub label)', 1, 634, 20, 34), (635, '(Give this a sub label)', 1, 635, 20, 34), (636, '(Give this a sub label)', 1, 636, 20, 34), (637, '(Give this a sub label)', 1, 637, 20, 34), (638, '(Give this a sub label)', 1, 638, 20, 34), (639, '(Give this a sub label)', 1, 639, 20, 34), (640, '(Give this a sub label)', 1, 640, 20, 34), (641, '(Give this a sub label)', 1, 641, 20, 34), (642, '(Give this a sub label)', 1, 642, 21, 31), (643, '(Give this a sub label)', 1, 643, 21, 31), (644, '(Give this a sub label)', 1, 644, 21, 31), (645, '(Give this a sub label)', 1, 645, 21, 31), (646, '(Give this a sub label)', 1, 646, 21, 31), (647, '(Give this a sub label)', 1, 647, 21, 31), (648, '(Give this a sub label)', 1, 648, 21, 31), (649, '(Give this a sub label)', 1, 649, 21, 31), (650, '(Give this a sub label)', 1, 650, 21, 31), (651, '(Give this a sub label)', 1, 651, 21, 31), (652, '(Give this a sub label)', 1, 652, 21, 32), (653, '(Give this a sub label)', 1, 653, 21, 32), (654, '(Give this a sub label)', 1, 654, 21, 32), (655, '(Give this a sub label)', 1, 655, 21, 32), (656, '(Give this a sub label)', 1, 656, 21, 32), (657, '(Give this a sub label)', 1, 657, 21, 32), (658, '(Give this a sub label)', 1, 658, 21, 32), (659, '(Give this a sub label)', 1, 659, 21, 32), (660, '(Give this a sub label)', 1, 660, 21, 32), (661, '(Give this a sub label)', 1, 661, 21, 32), (662, '(Give this a sub label)', 1, 662, 21, 33), (663, '(Give this a sub label)', 1, 663, 21, 33), (664, '(Give this a sub label)', 1, 664, 21, 33), (665, '(Give this a sub label)', 1, 665, 21, 33), (666, '(Give this a sub label)', 1, 666, 21, 33), (667, '(Give this a sub label)', 1, 667, 21, 33), (668, '(Give this a sub label)', 1, 668, 21, 33), (669, '(Give this a sub label)', 1, 669, 21, 33), (670, '(Give this a sub label)', 1, 670, 21, 33), (671, '(Give this a sub label)', 1, 671, 21, 33), (672, '(Give this a sub label)', 1, 672, 21, 34), (673, '(Give this a sub label)', 1, 673, 21, 34), (674, '(Give this a sub label)', 1, 674, 21, 34), (675, '(Give this a sub label)', 1, 675, 21, 34), (676, '(Give this a sub label)', 1, 676, 21, 34), (677, '(Give this a sub label)', 1, 677, 21, 34), (678, '(Give this a sub label)', 1, 678, 21, 34), (679, '(Give this a sub label)', 1, 679, 21, 34), (680, '(Give this a sub label)', 1, 680, 21, 34), (681, '(Give this a sub label)', 1, 681, 21, 34); -- -- Indexes for dumped tables -- -- -- Indexes for table `areas` -- ALTER TABLE `areas` ADD PRIMARY KEY (`id`); -- -- Indexes for table `assessment` -- ALTER TABLE `assessment` ADD PRIMARY KEY (`assessID`), ADD KEY `assessUser` (`assessUser`), ADD KEY `file` (`file`); -- -- Indexes for table `assigntask` -- ALTER TABLE `assigntask` ADD PRIMARY KEY (`id`), ADD KEY `user` (`user`), ADD KEY `area` (`area`), ADD KEY `program` (`program`); -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`comID`), ADD KEY `comUser` (`comUser`), ADD KEY `file` (`file`); -- -- Indexes for table `evaluation_file` -- ALTER TABLE `evaluation_file` ADD PRIMARY KEY (`fileID`), ADD KEY `path` (`path`), ADD KEY `levelID` (`levelID`), ADD KEY `uploader` (`uploader`); -- -- Indexes for table `files` -- ALTER TABLE `files` ADD PRIMARY KEY (`id`), ADD KEY `uploader` (`uploader`); -- -- Indexes for table `level` -- ALTER TABLE `level` ADD PRIMARY KEY (`levelID`); -- -- Indexes for table `notification` -- ALTER TABLE `notification` ADD PRIMARY KEY (`notifyID`), ADD KEY `fileID` (`fileID`), ADD KEY `usersID` (`usersID`); -- -- Indexes for table `notify` -- ALTER TABLE `notify` ADD PRIMARY KEY (`noteID`), ADD KEY `notifyID` (`notifyID`), ADD KEY `usersID` (`usersID`); -- -- Indexes for table `programs` -- ALTER TABLE `programs` ADD PRIMARY KEY (`programID`), ADD KEY `programs_ibfk_1` (`levelID`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`), ADD KEY `fileName` (`fileName`), ADD KEY `user` (`tagger`), ADD KEY `sourcePath` (`sourcePath`), ADD KEY `targetPath` (`targetPath`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`usersID`); -- -- Indexes for table `usersfolder` -- ALTER TABLE `usersfolder` ADD PRIMARY KEY (`usersFolderID`), ADD KEY `area` (`area`), ADD KEY `program` (`program`), ADD KEY `level` (`level`); -- -- Indexes for table `userssubfolder` -- ALTER TABLE `userssubfolder` ADD PRIMARY KEY (`subID`), ADD KEY `usersFolder` (`usersFolder`), ADD KEY `program` (`program`), ADD KEY `level` (`level`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `areas` -- ALTER TABLE `areas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `assessment` -- ALTER TABLE `assessment` MODIFY `assessID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `assigntask` -- ALTER TABLE `assigntask` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `comID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `evaluation_file` -- ALTER TABLE `evaluation_file` MODIFY `fileID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `files` -- ALTER TABLE `files` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51; -- -- AUTO_INCREMENT for table `level` -- ALTER TABLE `level` MODIFY `levelID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; -- -- AUTO_INCREMENT for table `notification` -- ALTER TABLE `notification` MODIFY `notifyID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=63; -- -- AUTO_INCREMENT for table `notify` -- ALTER TABLE `notify` MODIFY `noteID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1013; -- -- AUTO_INCREMENT for table `programs` -- ALTER TABLE `programs` MODIFY `programID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `usersID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87; -- -- AUTO_INCREMENT for table `usersfolder` -- ALTER TABLE `usersfolder` MODIFY `usersFolderID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=682; -- -- AUTO_INCREMENT for table `userssubfolder` -- ALTER TABLE `userssubfolder` MODIFY `subID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=682; -- -- Constraints for dumped tables -- -- -- Constraints for table `assessment` -- ALTER TABLE `assessment` ADD CONSTRAINT `assessment_ibfk_1` FOREIGN KEY (`assessUser`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `assessment_ibfk_2` FOREIGN KEY (`file`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `assigntask` -- ALTER TABLE `assigntask` ADD CONSTRAINT `assigntask_ibfk_1` FOREIGN KEY (`user`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `assigntask_ibfk_2` FOREIGN KEY (`area`) REFERENCES `areas` (`id`), ADD CONSTRAINT `assigntask_ibfk_3` FOREIGN KEY (`program`) REFERENCES `programs` (`programID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `comments` -- ALTER TABLE `comments` ADD CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`comUser`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`file`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `evaluation_file` -- ALTER TABLE `evaluation_file` ADD CONSTRAINT `evaluation_file_ibfk_1` FOREIGN KEY (`path`) REFERENCES `programs` (`programID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `evaluation_file_ibfk_2` FOREIGN KEY (`levelID`) REFERENCES `level` (`levelID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `evaluation_file_ibfk_3` FOREIGN KEY (`uploader`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `files` -- ALTER TABLE `files` ADD CONSTRAINT `files_ibfk_1` FOREIGN KEY (`uploader`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `notification` -- ALTER TABLE `notification` ADD CONSTRAINT `notification_ibfk_1` FOREIGN KEY (`fileID`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `notification_ibfk_2` FOREIGN KEY (`usersID`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `notify` -- ALTER TABLE `notify` ADD CONSTRAINT `notify_ibfk_1` FOREIGN KEY (`notifyID`) REFERENCES `notification` (`notifyID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `notify_ibfk_2` FOREIGN KEY (`usersID`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `programs` -- ALTER TABLE `programs` ADD CONSTRAINT `programs_ibfk_1` FOREIGN KEY (`levelID`) REFERENCES `level` (`levelID`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `tags` -- ALTER TABLE `tags` ADD CONSTRAINT `tags_ibfk_1` FOREIGN KEY (`fileName`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `tags_ibfk_2` FOREIGN KEY (`tagger`) REFERENCES `users` (`usersID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `tags_ibfk_3` FOREIGN KEY (`sourcePath`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `tags_ibfk_4` FOREIGN KEY (`targetPath`) REFERENCES `userssubfolder` (`subID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `usersfolder` -- ALTER TABLE `usersfolder` ADD CONSTRAINT `usersfolder_ibfk_2` FOREIGN KEY (`area`) REFERENCES `areas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `usersfolder_ibfk_3` FOREIGN KEY (`program`) REFERENCES `programs` (`programID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `usersfolder_ibfk_4` FOREIGN KEY (`level`) REFERENCES `level` (`levelID`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `userssubfolder` -- ALTER TABLE `userssubfolder` ADD CONSTRAINT `userssubfolder_ibfk_1` FOREIGN KEY (`usersFolder`) REFERENCES `usersfolder` (`usersFolderID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `userssubfolder_ibfk_2` FOREIGN KEY (`program`) REFERENCES `programs` (`programID`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `userssubfolder_ibfk_3` FOREIGN KEY (`level`) REFERENCES `level` (`levelID`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 27 Okt 2021 pada 11.30 -- Versi server: 10.4.19-MariaDB -- Versi PHP: 7.4.20 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `db_ssm` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_assessor` -- CREATE TABLE `tbl_assessor` ( `id_assessor` int(11) NOT NULL, `nama_assessor` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_informasi3p` -- CREATE TABLE `tbl_informasi3p` ( `id_informasi3p` int(11) NOT NULL, `no3p` int(11) NOT NULL, `image3p` varchar(255) NOT NULL, `title3p` varchar(255) NOT NULL, `filter_kategori3p` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_informasi3p` -- INSERT INTO `tbl_informasi3p` (`id_informasi3p`, `no3p`, `image3p`, `title3p`, `filter_kategori3p`) VALUES (32, 1, '2e8d49b700155b39f58632af69048cf8.jpg', 'kucing', 'kucing'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_informasi5r` -- CREATE TABLE `tbl_informasi5r` ( `id_informasi5r` int(11) NOT NULL, `no` int(11) NOT NULL, `image` varchar(255) NOT NULL, `title5r` varchar(255) NOT NULL, `filter_kategori5r` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_informasi5r` -- INSERT INTO `tbl_informasi5r` (`id_informasi5r`, `no`, `image`, `title5r`, `filter_kategori5r`) VALUES (1, 1, 'resik.jpg', 'resik', 'resik'), (2, 2, 'rajin.jpg', 'rajin', 'rajin'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_jadwal_assessment` -- CREATE TABLE `tbl_jadwal_assessment` ( `id_jadwal_assessment` int(11) NOT NULL, `nama_assessor` varchar(100) NOT NULL, `seksi_terkait` varchar(32) NOT NULL, `tanggal_mulai` date NOT NULL, `tanggal_selesai` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_jadwal_assessment` -- INSERT INTO `tbl_jadwal_assessment` (`id_jadwal_assessment`, `nama_assessor`, `seksi_terkait`, `tanggal_mulai`, `tanggal_selesai`) VALUES (1, 'Bobby', 'SIT', '2021-10-22', '2021-10-23'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_jobdesk` -- CREATE TABLE `tbl_jobdesk` ( `id_jobdesk` int(11) NOT NULL, `no` int(11) NOT NULL, `image` varchar(255) NOT NULL, `tittlejobdesk` varchar(255) NOT NULL, `filter_kategorijobdesk` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_jobdesk` -- INSERT INTO `tbl_jobdesk` (`id_jobdesk`, `no`, `image`, `tittlejobdesk`, `filter_kategorijobdesk`) VALUES (1, 1, 'jobdesk1.jpg', 'Ketua Tim', 'ketua'), (2, 2, 'jobdesk2.jpg', 'Sekretaris Tim', 'sekretaris'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_kategori3p` -- CREATE TABLE `tbl_kategori3p` ( `id_kategori3p` int(11) NOT NULL, `no` int(11) NOT NULL, `kategori3p` varchar(255) NOT NULL, `filter_kategori3p` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_kategori3p` -- INSERT INTO `tbl_kategori3p` (`id_kategori3p`, `no`, `kategori3p`, `filter_kategori3p`) VALUES (1, 1, '1 PILAR', 'pilar-1'), (2, 2, '2 PILAR', 'pilar-2'), (4, 3, 'kucing', 'kucing'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_kategori5r` -- CREATE TABLE `tbl_kategori5r` ( `id_kategori5r` int(11) NOT NULL, `no` int(11) NOT NULL, `kategori5r` varchar(255) NOT NULL, `filter_kategori5r` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_kategori5r` -- INSERT INTO `tbl_kategori5r` (`id_kategori5r`, `no`, `kategori5r`, `filter_kategori5r`) VALUES (1, 1, 'resik', 'resik'), (2, 2, 'rajin', 'rajin'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_kategorijobdesk` -- CREATE TABLE `tbl_kategorijobdesk` ( `id_kategorijobdesk` int(11) NOT NULL, `no` int(11) NOT NULL, `kategorijobdesk` varchar(255) NOT NULL, `filter_kategorijobdesk` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_kategorijobdesk` -- INSERT INTO `tbl_kategorijobdesk` (`id_kategorijobdesk`, `no`, `kategorijobdesk`, `filter_kategorijobdesk`) VALUES (1, 1, 'ketua ', 'ketua'), (2, 2, 'sekretaris', 'sekretaris'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_kategoristruktur` -- CREATE TABLE `tbl_kategoristruktur` ( `id_kategoristruktur` int(11) NOT NULL, `no` int(11) NOT NULL, `kategoristruktur` varchar(255) NOT NULL, `filter_kategoristruktur` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_kategoristruktur` -- INSERT INTO `tbl_kategoristruktur` (`id_kategoristruktur`, `no`, `kategoristruktur`, `filter_kategoristruktur`) VALUES (1, 1, 'Struktur Tim Shopfloor', 'struktur-tim'), (2, 2, 'Struktur Organisasi', 'struktur-organisasi'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_profileassessor` -- CREATE TABLE `tbl_profileassessor` ( `id_profileassessor` int(11) NOT NULL, `no` int(11) NOT NULL, `image` varchar(40) NOT NULL, `nama_assessor` varchar(255) NOT NULL, `jabatan_assessor` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_profileassessor` -- INSERT INTO `tbl_profileassessor` (`id_profileassessor`, `no`, `image`, `nama_assessor`, `jabatan_assessor`) VALUES (1, 1, 'firmanashad.jpg', '<NAME>', 'Kepala Departemen SRC'), (2, 3, 'nasrunnasution.jpg', '<NAME> ', 'Kepala Seksi SMT'), (3, 2, 'dwiagusyuwono.jpg', '<NAME>', 'Kepala Seksi SCA'), (4, 4, 'ferdyrahadian.jpg', '<NAME>', 'Kepala Seksi SRO'), (5, 5, 'yudiabdillah.jpg', '<NAME>', 'Junior Manager SCA'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_score` -- CREATE TABLE `tbl_score` ( `id_score` int(11) NOT NULL, `seksi` varchar(32) NOT NULL, `score` float NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_score` -- INSERT INTO `tbl_score` (`id_score`, `seksi`, `score`) VALUES (1, 'SIT', 4.3), (2, 'SIT', 4.2); -- -------------------------------------------------------- -- -- Struktur dari tabel `tbl_struktur` -- CREATE TABLE `tbl_struktur` ( `id_struktur` int(11) NOT NULL, `no` int(11) NOT NULL, `image` varchar(255) NOT NULL, `tittlestruktur` varchar(255) NOT NULL, `filter_kategoristruktur` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tbl_struktur` -- INSERT INTO `tbl_struktur` (`id_struktur`, `no`, `image`, `tittlestruktur`, `filter_kategoristruktur`) VALUES (1, 1, 'struktur1.jpg', 'Struktur Tim Shopfloor', 'struktur-tim'), (2, 2, 'struktur2.jpg', 'Struktur Organisasi', 'struktur-organisasi'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `tbl_assessor` -- ALTER TABLE `tbl_assessor` ADD PRIMARY KEY (`id_assessor`); -- -- Indeks untuk tabel `tbl_informasi3p` -- ALTER TABLE `tbl_informasi3p` ADD PRIMARY KEY (`id_informasi3p`); -- -- Indeks untuk tabel `tbl_informasi5r` -- ALTER TABLE `tbl_informasi5r` ADD PRIMARY KEY (`id_informasi5r`); -- -- Indeks untuk tabel `tbl_jadwal_assessment` -- ALTER TABLE `tbl_jadwal_assessment` ADD PRIMARY KEY (`id_jadwal_assessment`); -- -- Indeks untuk tabel `tbl_jobdesk` -- ALTER TABLE `tbl_jobdesk` ADD PRIMARY KEY (`id_jobdesk`); -- -- Indeks untuk tabel `tbl_kategori3p` -- ALTER TABLE `tbl_kategori3p` ADD PRIMARY KEY (`id_kategori3p`); -- -- Indeks untuk tabel `tbl_kategori5r` -- ALTER TABLE `tbl_kategori5r` ADD PRIMARY KEY (`id_kategori5r`); -- -- Indeks untuk tabel `tbl_kategorijobdesk` -- ALTER TABLE `tbl_kategorijobdesk` ADD PRIMARY KEY (`id_kategorijobdesk`); -- -- Indeks untuk tabel `tbl_kategoristruktur` -- ALTER TABLE `tbl_kategoristruktur` ADD PRIMARY KEY (`id_kategoristruktur`); -- -- Indeks untuk tabel `tbl_profileassessor` -- ALTER TABLE `tbl_profileassessor` ADD PRIMARY KEY (`id_profileassessor`); -- -- Indeks untuk tabel `tbl_score` -- ALTER TABLE `tbl_score` ADD PRIMARY KEY (`id_score`); -- -- Indeks untuk tabel `tbl_struktur` -- ALTER TABLE `tbl_struktur` ADD PRIMARY KEY (`id_struktur`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `tbl_assessor` -- ALTER TABLE `tbl_assessor` MODIFY `id_assessor` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `tbl_informasi3p` -- ALTER TABLE `tbl_informasi3p` MODIFY `id_informasi3p` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33; -- -- AUTO_INCREMENT untuk tabel `tbl_informasi5r` -- ALTER TABLE `tbl_informasi5r` MODIFY `id_informasi5r` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_jadwal_assessment` -- ALTER TABLE `tbl_jadwal_assessment` MODIFY `id_jadwal_assessment` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `tbl_jobdesk` -- ALTER TABLE `tbl_jobdesk` MODIFY `id_jobdesk` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_kategori3p` -- ALTER TABLE `tbl_kategori3p` MODIFY `id_kategori3p` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `tbl_kategori5r` -- ALTER TABLE `tbl_kategori5r` MODIFY `id_kategori5r` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_kategorijobdesk` -- ALTER TABLE `tbl_kategorijobdesk` MODIFY `id_kategorijobdesk` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_kategoristruktur` -- ALTER TABLE `tbl_kategoristruktur` MODIFY `id_kategoristruktur` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_profileassessor` -- ALTER TABLE `tbl_profileassessor` MODIFY `id_profileassessor` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT untuk tabel `tbl_score` -- ALTER TABLE `tbl_score` MODIFY `id_score` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `tbl_struktur` -- ALTER TABLE `tbl_struktur` MODIFY `id_struktur` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>JobExecutionFramework/ConfigDB/Scripts/FillSystem.sql SET IDENTITY_INSERT [etljob].[System] ON MERGE INTO [etljob].[System] AS Target USING ( VALUES ( 0 ,N'All' ) ,( 1 ,N'Development' ) ,( 2 ,N'QA' ) ,( 3 ,N'Production' ) ) AS Source([SystemID], [System]) ON [Target].[SystemID] = [source].[SystemID] WHEN MATCHED THEN UPDATE SET [System] = Source.[System] WHEN NOT MATCHED BY TARGET THEN INSERT ( [SystemID] ,[System] ) VALUES ( [SystemID] ,[System] ); SET IDENTITY_INSERT [etljob].[System] OFF
<gh_stars>1-10 --- name: ins_list description: | Creates a mailing list returns: void templates: - user.userlogin - email.insert parameters: - name: p_localpart type: email.t_localpart - name: p_domain type: dns.t_hostname - name: p_admin type: email.t_address variables: - name: v_subservice type: commons.t_key default: "'list'" --- INSERT INTO email.list (service, subservice, localpart, domain, owner, admin, service_entity_name) VALUES ('email', 'list', p_localpart, p_domain, v_owner, p_admin, (SELECT service_entity_name FROM dns.service WHERE service='email' AND domain = p_domain)); PERFORM backend._notify_domain('email', 'list', p_domain);
CREATE TABLE "CNSAPIServers" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE TABLE "CNSTopicSubscriptionsUserIndex" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE INDEX usersAccessKeyIdx ON "Users CREATE TABLE "CNSTopicsByUserId" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE TABLE "CNSTopicSubscriptionsTokenIndex" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE TABLE "CNSTopicStats" ( key text, column1 text, value counter, PRIMARY KEY ((key), column1)) CREATE INDEX CQSQueuesOwnerUserIdIdx ON "CQSQueues CREATE TABLE "CQSPartitionedQueueMessages" ( key text, column1 bigint, column2 bigint, value text, PRIMARY KEY ((key), column1, column2)) CREATE INDEX usersUserIdIdx ON "Users CREATE TABLE "CNSTopicSubscriptionsIndex" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE INDEX CQSQueuesArnIdx ON "CQSQueues CREATE TABLE "CNSTopicSubscriptions" ( key text, column1 text, column2 text, value text, PRIMARY KEY ((key), column1, column2)) CREATE TABLE "CQSQueuesByUserId" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE TABLE "CNSWorkers" ( key text, column1 text, value text, PRIMARY KEY ((key), column1)) CREATE TABLE "CQSAPIServers" ( key text, column1 text, value text, PRIMARY KEY ((key), column1))
CREATE OR REPLACE FUNCTION udf.decode_uri_component(uri STRING) RETURNS STRING LANGUAGE js AS """ return decodeURIComponent(uri); """;
update CalculationRule SET name = 'Mandatory Trip Reduction Program' WHERE calculationId = 1 and code = 'STRATEGY_HOV_5' update CalculationRule SET minValue = 8, maxValue = 8, functionBody = 'return <<STRATEGY_HOV_5>> ? 8 : 0;' WHERE calculationId = 1 and code = 'PTS_HOV_5'
ALTER TABLE public.user_sub_good ADD state int4 NULL DEFAULT 1; COMMENT ON COLUMN public.user_sub_good.state IS '0: disable 1: enable'; ALTER TABLE public."user" ADD state int4 NULL DEFAULT 1; COMMENT ON COLUMN public.user_sub_good.state IS '0: disable 1: enable'; ALTER TABLE public.good_info ADD state int4 NULL DEFAULT 1; COMMENT ON COLUMN public.user_sub_good.state IS '0: disable 1: enable';
SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; -- CREATE PROCEDURAL LANGUAGE plpgsql; -- ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; CREATE TABLE authentication ( username character varying NOT NULL, password character varying, enabled boolean DEFAULT false, id integer NOT NULL ); -- user:admin pass:admin, user:max pass:max INSERT INTO authentication (username, password, enabled, id) VALUES ('admin', '<PASSWORD>', true, 1); INSERT INTO authentication (username, password, enabled, id) VALUES ('max', '<PASSWORD>', true, 2); CREATE TABLE roles ( id integer NOT NULL, rolename character varying NOT NULL, username character varying NOT NULL ); INSERT INTO roles (rolename, username, id) VALUES ('ROLE_ADMIN', 'admin', 1); INSERT INTO roles (rolename, username, id) VALUES ('ROLE_USER', 'max', 2); CREATE TABLE customers ( id bigint NOT NULL, name character varying NOT NULL, street character varying, city character varying, state character varying, email character varying, fax character varying, mobile character varying, phone character varying, enabled boolean DEFAULT true ); ALTER TABLE public.customers OWNER TO sffs; CREATE TABLE fruittype ( id integer NOT NULL, flavour character varying, color character varying, location character varying NOT NULL, name character varying NOT NULL, price double precision NOT NULL ); ALTER TABLE public.fruittype OWNER TO sffs; COMMENT ON TABLE fruittype IS 'Table with various types of fruit'; CREATE TABLE orderitems ( id_order bigint NOT NULL, id_fruit bigint NOT NULL, quantity integer DEFAULT 0 NOT NULL ); ALTER TABLE public.orderitems OWNER TO sffs; CREATE TABLE orders ( id bigint NOT NULL, date date NOT NULL, id_customer bigint NOT NULL ); ALTER TABLE public.orders OWNER TO sffs; CREATE SEQUENCE customers_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1 CYCLE; ALTER TABLE public.customers_id_seq OWNER TO sffs; SELECT pg_catalog.setval('customers_id_seq', 2080, true); CREATE SEQUENCE fruittype_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1 CYCLE; ALTER TABLE public.fruittype_id_seq OWNER TO sffs; SELECT pg_catalog.setval('fruittype_id_seq', 2, true); CREATE SEQUENCE orders_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1 CYCLE; ALTER TABLE public.orders_id_seq OWNER TO sffs; SELECT pg_catalog.setval('orders_id_seq', 1537, true); ALTER TABLE ONLY customers ADD CONSTRAINT customers_pk PRIMARY KEY (id); ALTER TABLE ONLY fruittype ADD CONSTRAINT fruittype_pk PRIMARY KEY (id); ALTER TABLE ONLY orderitems ADD CONSTRAINT orderitems_pk PRIMARY KEY (id_order, id_fruit); ALTER TABLE ONLY orders ADD CONSTRAINT orders_pk PRIMARY KEY (id); ALTER TABLE ONLY orders ADD CONSTRAINT customers_fk FOREIGN KEY (id_customer) REFERENCES customers(id); ALTER TABLE ONLY orderitems ADD CONSTRAINT orders_fk FOREIGN KEY (id_order) REFERENCES orders(id); REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC;
alter table export add hidden boolean not null default false; alter table export add pinned boolean not null default false; alter table export add "type" character varying(40); update export set "type" = 'DATA_EXPORT'; alter table export alter column "type" set not null;
-- Produce a list of tables and directory locations that need to be checked for ownership. -- -- If 'hive' is the owner, then these 'managed' table will be 'migrated' to the new warehouse location: -- `/warehouse/tablespace/managed/hive` -- -- Variables: -- DB - The database you placed the hms dump table. -- ENV - IE: dev,qa,prod. Used to support multiple -- environment dump files in the same database. USE ${DB}; WITH migrations AS ( SELECT db_name , tbl_name , tbl_type , tbl_serde_slib , regexp_extract(tbl_location, 'hdfs://([^/]+)(.*)', 2) AS hdfs_path , -- Look for Manage table that are NOT 'transaction' AND are ORC format AND are MANAGED. CASE WHEN tbl_type = "MANAGED_TABLE" -- If the base directory is the warehouse, then it may be migrated if owned by 'hive'. AND instr(regexp_extract(tbl_location, 'hdfs://([^/]+)(.*)', 2), '/apps/hive/warehouse') = 1 AND tbl_serde_slib = "org.apache.hadoop.hive.ql.io.orc.OrcSerde" THEN "ACIDv2/Migrate" WHEN tbl_type = "MANAGED_TABLE" -- If the base directory is the warehouse, then it may be migrated if owned by 'hive'. AND instr(regexp_extract(tbl_location, 'hdfs://([^/]+)(.*)', 2), '/apps/hive/warehouse') = 1 AND tbl_serde_slib != "org.apache.hadoop.hive.ql.io.orc.OrcSerde" THEN "ACIDv2(native/append)/Migrate" ELSE "NO" END AS CONVERSION_POSSIBLE FROM hms_dump_${ENV} WHERE db_name != "information_schema" AND db_name != "sys" AND tbl_name IS NOT NULL GROUP BY db_name, tbl_name, tbl_type, tbl_location, tbl_serde_slib ORDER BY db_name, tbl_name ) SELECT db_name , tbl_name , tbl_type , tbl_serde_slib , CONVERSION_POSSIBLE , hdfs_path FROM migrations WHERE CONVERSION_POSSIBLE != 'NO';
<reponame>pecigonzalo/schemahero alter table `user_projects` drop primary key; alter table `user_projects` drop column `project_id`;
-- Convert schema '/Users/doug/perl/cpantesters/schema/share/CPAN-Testers-Schema-0.010-MySQL.sql' to 'CPAN::Testers::Schema v0.011':; -- No differences found;
<gh_stars>1-10 ALTER TABLE ABSTRACT_PERSISTED_ANALYSIS_JOB MODIFY COLUMN RESULTS_ZIP_FILE_PATH VARCHAR(255); ALTER TABLE ABSTRACT_PERSISTED_ANALYSIS_JOB ADD COLUMN INPUT_ZIP_FILE_PATH VARCHAR(255) AFTER MAIN_GRID_URL; ALTER TABLE PLATFORM_CONFIGURATION ADD COLUMN PLATFORM_TYPE VARCHAR(50) AFTER PLATFORM_ID;
<gh_stars>0 CREATE OR REPLACE FUNCTION change_host() RETURNS trigger AS $$ BEGIN IF TG_OP = 'INSERT' THEN UPDATE "Host" AS H SET listings_count = listings_count + 1 WHERE H.id=NEW.host_id; RETURN NEW; ELSIF TG_OP = 'DELETE' THEN UPDATE "Host" AS H SET listings_count = listings_count - 1 WHERE H.id=OLD.host_id ; RETURN OLD; END IF; END; $$ LANGUAGE plpgsql; CREATE TRIGGER hostListings AFTER INSERT OR DELETE ON "Listing" FOR EACH ROW EXECUTE PROCEDURE change_host(); -------------------------------------------------------------------------------- CREATE OR REPLACE FUNCTION change_listing() RETURNS trigger AS $$ BEGIN IF TG_OP = 'INSERT' THEN UPDATE "Listing" AS L SET number_of_reviews = number_of_reviews + 1 WHERE L.id=NEW.listing_id ; INSERT INTO "Review_Summary"(listing_id,date) VALUES(NEW.listing_id,NEW.date); RETURN NEW; ELSIF TG_OP = 'DELETE' THEN UPDATE "Listing" AS L SET number_of_reviews = number_of_reviews - 1 WHERE L.id=OLD.listing_id; DELETE FROM "Review_Summary" AS R WHERE OLD.listing_id=R.listing_id AND R.date=OLD.date; RETURN OLD; END IF; END; $$ LANGUAGE plpgsql; CREATE TRIGGER reviewsListings AFTER INSERT OR DELETE ON "Review" FOR EACH ROW EXECUTE PROCEDURE change_listing();
<filename>labs/SQL/SQL Task 3.4/Exercise 1.sql<gh_stars>0 /* 1.1 */ SELECT CustomerID, CompanyName, Address, PostalCode FROM Customers WHERE City = 'Paris' OR City = 'London' /* 1.2 */ SELECT ProductID, ProductName, QuantityPerUnit FROM Products WHERE QuantityPerUnit LIKE '%bot%'; /* 1.3 */ SELECT s.CompanyName, s.Country,ProductID, ProductName, QuantityPerUnit FROM Products JOIN Suppliers s ON s.SupplierID = Products.SupplierID WHERE QuantityPerUnit LIKE '%bot%'; /* 1.4 */ SELECT c.CategoryName, COUNT(ProductName) as 'Highest Product' FROM Products JOIN Categories c ON c.CategoryID = Products.CategoryID GROUP BY c.CategoryName ORDER BY 'Highest Product' desc /* 1.5 */ SELECT (TitleOfCourtesy + ' ' + FirstName + ' ' + LastName) AS Name, City FROM Employees /* 1.6 */ /* 1.7 */ SELECT Count(*) as 'Orders over 100 freight' FROM Orders o WHERE o.Freight > 100 AND (ShipCountry = 'UK' or ShipCountry = 'USA') /* 1.8 */ SELECT TOP 1 OrderID, (UnitPrice * Quantity * Discount) AS HighestDiscount FROM [Order Details] ORDER BY HighestDiscount desc /* 2.1 */
<gh_stars>0 CREATE PROCEDURE [dbo].[spPMGetMeasure] @token_id NVARCHAR(50), @filter_msr_id_Pk BIGINT = NULL, @filter_msr_unity_of_measurement NVARCHAR(500) = NULL, @filter_msr_value NVARCHAR(500) = NULL, @filter_msr_external_identifier NVARCHAR(500) = NULL, @filter_msr_comments NVARCHAR(500) = NULL, @filter_msr_document_Fk BIGINT = NULL, @filter_msr_device_type NVARCHAR(20) = NULL, @filter_msr_technical_object_Fk BIGINT = NULL AS DECLARE @v_token_user nvarchar(20); DECLARE @v_token_employee_id int; BEGIN SELECT @v_token_employee_id = [TBL_SRA_EMPLOYEE].[id], @v_token_user = [TBL_SCMS_TOKEN].[token_user_id] FROM [TBL_SRA_EMPLOYEE] INNER JOIN [TBL_SCMS_USER] ON [TBL_SCMS_USER].[user_id] = [TBL_SRA_EMPLOYEE].[user] INNER JOIN [TBL_SCMS_TOKEN] ON [TBL_SCMS_TOKEN].[token_user_id] = [TBL_SCMS_USER].[user_id] AND [TBL_SCMS_TOKEN].[token_id] = @token_id AND [TBL_SCMS_TOKEN].[token_expires_at] > GETDATE(); IF @v_token_employee_id IS NULL RAISERROR ('Invalid token', 16, 1); ELSE SELECT [TBL_PM_MEASURE].[msr_id_Pk], [TBL_PM_MEASURE].[msr_unity_of_measurement], [TBL_PM_MEASURE].[msr_value], [TBL_PM_MEASURE].[msr_external_identifier], [TBL_PM_MEASURE].[msr_comments], [TBL_PM_MEASUREMENT_DOCUMENT].[msrdcm_id_Pk], [TBL_PM_MEASURE].[msr_device_type] FROM [TBL_PM_MEASURE] INNER JOIN [TBL_PM_MEASUREMENT_DOCUMENT] ON [TBL_PM_MEASUREMENT_DOCUMENT].[msrdcm_id_Pk] = [TBL_PM_MEASURE].[msr_document_Fk] INNER JOIN [TBL_PM_TECHNICALOBJECT] ON [TBL_PM_TECHNICALOBJECT].[tchobj_id_Pk] = [TBL_PM_MEASURE].[msr_technical_object_Fk] WHERE [TBL_PM_MEASURE].[msr_id_Pk] = ISNULL(@filter_msr_id_Pk, [TBL_PM_MEASURE].[msr_id_Pk]) AND [TBL_PM_MEASURE].[msr_unity_of_measurement] = ISNULL(@filter_msr_unity_of_measurement, [TBL_PM_MEASURE].[msr_unity_of_measurement]) AND [TBL_PM_MEASURE].[msr_value] = ISNULL(@filter_msr_value, [TBL_PM_MEASURE].[msr_value]) AND [TBL_PM_MEASURE].[msr_external_identifier] = ISNULL(@filter_msr_external_identifier, [TBL_PM_MEASURE].[msr_external_identifier]) AND [TBL_PM_MEASURE].[msr_comments] = ISNULL(@filter_msr_comments, [TBL_PM_MEASURE].[msr_comments]) AND [TBL_PM_MEASURE].[msr_document_Fk] = ISNULL(@filter_msr_document_Fk, [TBL_PM_MEASURE].[msr_document_Fk]) AND [TBL_PM_MEASURE].[msr_device_type] = ISNULL(@filter_msr_device_type, [TBL_PM_MEASURE].[msr_device_type]) AND [TBL_PM_MEASURE].[msr_technical_object_Fk] = ISNULL(@filter_msr_technical_object_Fk, [TBL_PM_MEASURE].[msr_technical_object_Fk]);; END RETURN 0
<filename>src/cli/bundled/sql/AudienceInsightsStudySpec.sql<gh_stars>1-10 CREATE TABLE audience_insights_study_spec ( creation_time Nullable(Int64), end_time Nullable(Int64), start_time Nullable(Int64), status Nullable(String) ) ENGINE = Log
-- https://clickhouse.tech/docs/en/operations/system-tables/parts/ select concat(database, '.', table) as table, formatReadableSize(sum(bytes)) as size, sum(rows) as rows, max(modification_time) as latest_modification, sum(bytes) as bytes_size, any(engine) as engine, formatReadableSize(sum(primary_key_bytes_in_memory)) as primary_keys_size from system.parts where active group by database, table order by bytes_size desc; -- Можно получить более подробную информацию, в т.ч. если база разбита на разные части. SELECT database, table, partition, name part_name, active, bytes_on_disk, * FROM system.parts ORDER BY database, table, partition, name
<filename>db/schema.sql -- Payee table CREATE TABLE IF NOT EXISTS accounts( id SERIAL PRIMARY KEY, name text NOT NULL UNIQUE ); CREATE TABLE IF NOT EXISTS payees( id SERIAL PRIMARY KEY, account_id integer REFERENCES accounts(id), associated boolean NOT NULL DERFAULT true, name text NOT NULL UNIQUE ); -- Used for the jaro winkler testing CREATE TABLE IF NOT EXISTS to_payees( id SERIAL PRIMARY KEY, payee_id integer NOT NULL REFERENCES payees(id), description text NOT NULL ); CREATE TABLE IF NOT EXISTS transactions ( id SERIAL PRIMARY KEY, payee_id integer NOT NULL REFERENCES payees(id), date date NOT NULL, note text ); CREATE TABLE IF NOT EXISTS entries ( id SERIAL PRIMARY KEY, account_id integer NOT NULL REFERENCES accounts(id), transaction_id integer NOT NULL REFERENCES transactions(id), comodity text NOT NULL DEFAULT 'USD', amount integer NOT NULL, type text NOT NULL CHECK (type IN ('debit', 'credit')), note text ); CREATE TABLE IF NOT EXISTS imports ( id SERIAL PRIMARY KEY, account_name text NOT NULL REFERENCES accounts(name), sha256 text NOT NULL UNIQUE, date_field text NOT NULL, note_field text NOT NULL, amount_field text NOT NULL, path text NOT NULL, byte_count integer NOT NULL, content text NOT NULL ); CREATE TABLE IF NOT EXISTS import_rows( id SERIAL PRIMARY KEY, import_id integer NOT NULL REFERENCES imports(id), row_index integer NOT NULL, date text NOT NULL, note text NOT NULL, amount text NOT NULL, content text NOT NULL, entry_id integer REFERENCES entries(id) ); CREATE UNIQUE INDEX idx_import_lines_on_id_line_idx ON import_rows( import_id, row_index); CREATE UNIQUE INDEX idx_import_lines_on_entry_id ON import_rows( entry_id ) WHERE entry_id IS NOT NULL;
<reponame>mtsoltan/oxyz INSERT IGNORE INTO products VALUES(5,1, 'ar=تصميم ميكانيكي هندسي وخردوات\n' 'en=Mechanical and Gadget Design\n', 'ar=' 'بكل بساطة يمكنك ارسال صورة او ابعاد او تصور لأي ' 'منتج أيا كان تصميم ميكانيكي او ديكور او كماليات وسوف ' 'نقوم بتصميمه لك. نحن أيضا نوفر لك وسائل وإرشادات ' 'لتصنيع منتجك بكفاءة بخبرتنا السابقة في عمليات التصنيع ' 'المختلفة. ' '\n' 'en=' 'You simply send us a photo or dimensions for any product, be it a mechanical product, ' 'a decorative product, or a gadget, and we ' 'will design it for you. We also offer you the ways to manufacture this product in ' 'an efficient way using our experience in manucature procedures. ' '\n', '/static/images/services/5.jpg',1,0,1,'',UNIX_TIMESTAMP(),0); INSERT IGNORE INTO keystore VALUES(NULL,1,1, 'ar=الصورة\n' 'en=Picture\n', 'ar=برجاء رفع صورة للتصميم المراد تنفيذه او ملف مضغوط يحتوي علي اكثر من صورة ان وجدت\n' 'en=Please upload the picture of the product you want designed, or a compressed file (zip, rar) containing the images if you wish to provide multiple images.\n', '__form::\n' 'name=file\n' 'type=file\n' 'id=file\n' 'required=1\n', 3,5,1,0,UNIX_TIMESTAMP(),0); INSERT IGNORE INTO keystore VALUES(NULL,1,2, 'ar=نوع التصميم\n' 'en=Design Type\n', 'ar=برجاء توضيح نوع التصميم المراد تنفيذه.\n' 'en=Please select the desired design type from the following options.\n', '[ar]\n' '0=تصميم هندسي ميكانيكي\n' '1=تصميم ديكورات وزخارف\n' '2=افكار منتجات استهالكية اخري\n' '[en]\n' '0=Mechanical Engineering Design\n' '1=Decor and Decorative Motif Design\n' '2=Other Consumer Product Ideas\n', 3,5,1,1,UNIX_TIMESTAMP(),0); INSERT IGNORE INTO keystore VALUES(NULL,1,127, 'ar=وصف للمنتج المراد تصميمه\n' 'en=Product Description.\n', 'ar=برجاء ادارج وصف للمنتج و الخامة المرات تصنيعه منها والاستخدامات وسيتم التواصل مع سيادتكم هاتفيا للتاكيد اكثر او بزيارة سيادتكم لمكتبنا\n' 'en=Please describe the product you want designed, including information about the dimensions, material, and uses of the product.\n', '__form::\n' 'name=notes\n' 'type=textarea\n' 'id=notes\n' 'maxlength=4095\n', 3,5,1,0,UNIX_TIMESTAMP(),0); INSERT IGNORE INTO keystore VALUES(NULL,1,126, 'ar=\n' 'en=Allowed mechanical design upload extensions\n', 'ar=\n' 'en=\n', '0=jpg\n' '1=jpeg\n' '2=png\n' '3=rar\n' '4=rar\n' '5=zip\n', 3,5,0,1,UNIX_TIMESTAMP(),0);
<filename>backend/de.metas.swat/de.metas.swat.base/src/main/sql/postgresql/system/40-sw01_swat/5460320_sys_gh1064_InOutLine_ID_In_InventoryLine_Index.sql -- 2017-04-18T17:33:59.957 -- URL zum Konzept UPDATE AD_Index_Table SET WhereClause='IsActive = ''Y'' AND exists (select 1 from M_Inventory i where M_Inventory_ID = i.M_Inventory_ID and i.C_DocType_ID != 540948 )',Updated=TO_TIMESTAMP('2017-04-18 17:33:59','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Index_Table_ID=50015 ; -- 2017-04-18T17:34:30.117 -- URL zum Konzept UPDATE AD_Index_Table SET WhereClause='',Updated=TO_TIMESTAMP('2017-04-18 17:34:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Index_Table_ID=50015 ; -- 2017-04-18T17:34:53.303 -- URL zum Konzept INSERT INTO AD_Index_Column (AD_Client_ID,AD_Column_ID,AD_Index_Column_ID,AD_Index_Table_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,SeqNo,Updated,UpdatedBy) VALUES (0,556484,540797,50015,0,TO_TIMESTAMP('2017-04-18 17:34:53','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.swat','Y',50,TO_TIMESTAMP('2017-04-18 17:34:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2017-04-18T17:34:55.534 -- URL zum Konzept DROP INDEX IF EXISTS m_inventoryline_productlocattr ; -- 2017-04-18T17:34:55.536 -- URL zum Konzept CREATE UNIQUE INDEX m_inventoryline_productlocattr ON M_InventoryLine (M_Inventory_ID,M_Locator_ID,M_Product_ID,M_AttributeSetInstance_ID,M_InOutLine_ID) ;
-- subscribe_all_employees.sql create or replace function inline_0() returns varchar as ' DECLARE row RECORD; BEGIN FOR row IN select u.user_id from acs_rels r, users_active u where r.object_id_two = u.user_id and object_id_one = 463 and u.user_id not in ( select user_id from notification_requests where object_id = 18518 and type_id = 576034 ) LOOP RAISE NOTICE ''new notif for %'', row.user_id; PERFORM notification_request__new ( null, ''notification_request'', 576034, row.user_id, 18518, 78033, 78049, ''text'', ''f'', now(), 624, ''0.0.0.0'', null ); END LOOP; return 0; END;' language 'plpgsql'; select inline_0(); drop function inline_0();
<gh_stars>0 -- Schema CREATE TABLE UNIT ( id INT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, name varchar(64), abbreviation varchar(8), enabled BOOLEAN DEFAULT TRUE NOT NULL ) CREATE TABLE COMPONENT ( id INT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, unitId INT, name varchar(64), quantity DOUBLE, enabled BOOLEAN DEFAULT TRUE NOT NULL, FOREIGN KEY(unitId) REFERENCES UNIT(id) -- n to 1 ) CREATE TABLE PRODUCT ( id INT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, name varchar(64), description varchar(512), enabled BOOLEAN DEFAULT TRUE NOT NULL ) CREATE TABLE ASSEMBLY ( componentId INT NOT NULL, productId INT NOT NULL, quantity DOUBLE, enabled BOOLEAN DEFAULT TRUE NOT NULL, PRIMARY KEY(componentId, productId), FOREIGN KEY(componentId) REFERENCES COMPONENT(id), FOREIGN KEY(productId) REFERENCES PRODUCT(id) ) CREATE TABLE UNITCONVERSION ( fromUnitId INT NOT NULL, toUnitId INT NOT NULL, factor DOUBLE, enabled BOOLEAN DEFAULT TRUE NOT NULL, PRIMARY KEY(fromUnitId, toUnitId), FOREIGN KEY(fromUnitId) REFERENCES UNIT(id), FOREIGN KEY(toUnitId) REFERENCES UNIT(id) );
CREATE TABLE [dbo].[cmsTags] ( [id] INT IDENTITY (1, 1) NOT NULL, [tag] NVARCHAR (200) NULL, [ParentId] INT NULL, [group] NVARCHAR (100) NULL, CONSTRAINT [PK_cmsTags] PRIMARY KEY CLUSTERED ([id] ASC), CONSTRAINT [FK_cmsTags_cmsTags] FOREIGN KEY ([ParentId]) REFERENCES [dbo].[cmsTags] ([id]) ); GO CREATE NONCLUSTERED INDEX [IX_cmsTags] ON [dbo].[cmsTags]([tag] ASC, [group] ASC);
/* SQLyog Community v9.63 MySQL - 5.5.16 : Database - tutor ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!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' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`tutor` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `tutor`; /*Table structure for table `accounts` */ DROP TABLE IF EXISTS `accounts`; CREATE TABLE `accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL, `first_name` varchar(255) DEFAULT NULL, `last_name` varchar(255) DEFAULT NULL, `password` varchar(255) NOT NULL, `status` tinyint(1) DEFAULT '0', `is_feature` tinyint(1) DEFAULT '0', `role` tinyint(4) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, `last_login` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; /*Table structure for table `advertises` */ DROP TABLE IF EXISTS `advertises`; CREATE TABLE `advertises` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_account_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `summary` text NOT NULL, `detail` text NOT NULL, `audiences` varchar(255) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; /*Table structure for table `blocks` */ DROP TABLE IF EXISTS `blocks`; CREATE TABLE `blocks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `body` text NOT NULL, `status` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*Table structure for table `deliveries` */ DROP TABLE IF EXISTS `deliveries`; CREATE TABLE `deliveries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*Table structure for table `errors` */ DROP TABLE IF EXISTS `errors`; CREATE TABLE `errors` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `level` varchar(255) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `source` varchar(255) DEFAULT NULL, `content` text, `created` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=latin1; /*Table structure for table `galleries` */ DROP TABLE IF EXISTS `galleries`; CREATE TABLE `galleries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_account_id` int(11) DEFAULT NULL, `photo` varchar(255) NOT NULL, `description` text, `is_favourite` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*Table structure for table `hash` */ DROP TABLE IF EXISTS `hash`; CREATE TABLE `hash` ( `hash` char(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `type` tinyint(3) unsigned NOT NULL DEFAULT '0', `id` bigint(20) unsigned NOT NULL DEFAULT '0', `expire` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`hash`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*Table structure for table `messages` */ DROP TABLE IF EXISTS `messages`; CREATE TABLE `messages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sender_name` varchar(255) DEFAULT NULL, `sender_email` varchar(255) DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `content` text NOT NULL, `is_read` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*Table structure for table `page_blocks` */ DROP TABLE IF EXISTS `page_blocks`; CREATE TABLE `page_blocks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_page_id` int(11) NOT NULL, `ref_block_id` int(11) NOT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=latin1; /*Table structure for table `pages` */ DROP TABLE IF EXISTS `pages`; CREATE TABLE `pages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `body` text NOT NULL, `status` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*Table structure for table `profiles` */ DROP TABLE IF EXISTS `profiles`; CREATE TABLE `profiles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_account_id` int(11) DEFAULT NULL, `ref_category_id` int(11) DEFAULT NULL, `salutation` varchar(30) DEFAULT NULL, `gender` varchar(30) NOT NULL, `company` varchar(255) DEFAULT NULL, `address` varchar(255) NOT NULL, `suburb` varchar(255) DEFAULT NULL, `state` varchar(30) NOT NULL, `post_code` varchar(30) NOT NULL, `phone` varchar(30) NOT NULL, `default_hourly_rate` varchar(30) NOT NULL, `currency` varchar(30) NOT NULL, `avatar` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `lat` double DEFAULT NULL, `lng` double DEFAULT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; /*Table structure for table `queues` */ DROP TABLE IF EXISTS `queues`; CREATE TABLE `queues` ( `id` int(11) NOT NULL AUTO_INCREMENT, `recipient_email` varchar(255) NOT NULL, `recipient_name` varchar(255) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Table structure for table `reviews` */ DROP TABLE IF EXISTS `reviews`; CREATE TABLE `reviews` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_tutor_account_id` int(11) NOT NULL, `post_by` int(11) NOT NULL, `rating` int(11) NOT NULL, `content` text NOT NULL, `status` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Table structure for table `settings` */ DROP TABLE IF EXISTS `settings`; CREATE TABLE `settings` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `description` text, `created` date DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*Table structure for table `subjects` */ DROP TABLE IF EXISTS `subjects`; CREATE TABLE `subjects` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_parent_id` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `root` varchar(255) DEFAULT NULL, `level` int(11) DEFAULT NULL, `status` tinyint(1) DEFAULT '1', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Table structure for table `subscriptions` */ DROP TABLE IF EXISTS `subscriptions`; CREATE TABLE `subscriptions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` tinyint(1) DEFAULT '0', `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `return_url` varchar(255) NOT NULL, `currency` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `frequency` varchar(30) NOT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`,`name`,`email`,`return_url`,`currency`,`amount`,`frequency`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Table structure for table `templates` */ DROP TABLE IF EXISTS `templates`; CREATE TABLE `templates` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `subject` varchar(255) NOT NULL, `content` text NOT NULL, `description` text, `status` tinyint(1) DEFAULT '0', `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Table structure for table `transaction` */ DROP TABLE IF EXISTS `transaction`; CREATE TABLE `transaction` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `practiceId` int(11) unsigned NOT NULL, `txn_id` varchar(64) NOT NULL, `payment_status` varchar(16) NOT NULL, `payment_date` varchar(64) NOT NULL, `mc_gross` decimal(6,2) NOT NULL, `info` text NOT NULL, `status` enum('created','verified') NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Table structure for table `tutor_deliveries` */ DROP TABLE IF EXISTS `tutor_deliveries`; CREATE TABLE `tutor_deliveries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_account_id` int(1) DEFAULT NULL, `ref_delivery_id` int(1) DEFAULT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; /*Table structure for table `tutor_subjects` */ DROP TABLE IF EXISTS `tutor_subjects`; CREATE TABLE `tutor_subjects` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_account_id` int(11) NOT NULL, `ref_subject_id` int(11) DEFAULT NULL, `experience` varchar(30) DEFAULT NULL, `level` varchar(30) DEFAULT NULL, `hourly_rate` varchar(30) DEFAULT NULL, `created` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=latin1; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
WITH products AS( SELECT id, product_id, name as product_name, price as product_price, quantity as product_quantity FROM {{ source('tutorial', 'products') }} ) SELECT * FROM products
<filename>api/src/main/resources/db/migration/v2018.08.15_18.00__EPMCMBIBPC-2280_Run_pretty_url.sql CREATE UNIQUE INDEX pipeline_run_pretty_url_uindex ON pipeline.pipeline_run (pretty_url);
<gh_stars>0 CREATE TABLE `shared_tag_mess_def` ( `id` int(8) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_bin NOT NULL, `alias_for_def_id` int(11) unsigned DEFAULT NULL, `has_implications` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `tag` (`name`), KEY `alias_for_id` (`alias_for_def_id`), CONSTRAINT `shared_tag_mess_def_ibfk_1` FOREIGN KEY (`alias_for_def_id`) REFERENCES `shared_tag_mess_def` (`id`) ON DELETE SET NULL ON UPDATE CASCADE )
postgres=# SELECT * FROM pg_create_physical_replication_slot('node_a_slot'); slot_name | lsn -------------+----- node_a_slot | postgres=# SELECT slot_name, slot_type, active FROM pg_replication_slots; slot_name | slot_type | active -------------+-----------+-------- node_a_slot | physical | f (1 row)
<reponame>conqueror23/c5LocalPractice -- MySQL dump 10.13 Distrib 8.0.20, for Linux (x86_64) -- -- Host: localhost Database: localC5 -- ------------------------------------------------------ -- Server version 8.0.20-0ubuntu0.20.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!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' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `AreaLayoutColumns` -- DROP TABLE IF EXISTS `AreaLayoutColumns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayoutColumns` ( `arLayoutColumnID` int unsigned NOT NULL AUTO_INCREMENT, `arLayoutID` int unsigned NOT NULL DEFAULT '0', `arLayoutColumnIndex` int unsigned NOT NULL DEFAULT '0', `arID` int unsigned NOT NULL DEFAULT '0', `arLayoutColumnDisplayID` int DEFAULT '0', PRIMARY KEY (`arLayoutColumnID`), KEY `arLayoutID` (`arLayoutID`,`arLayoutColumnIndex`), KEY `arID` (`arID`), KEY `arLayoutColumnDisplayID` (`arLayoutColumnDisplayID`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayoutColumns` -- LOCK TABLES `AreaLayoutColumns` WRITE; /*!40000 ALTER TABLE `AreaLayoutColumns` DISABLE KEYS */; INSERT INTO `AreaLayoutColumns` VALUES (1,1,0,2,1),(2,1,1,3,2),(3,1,2,4,3),(4,2,0,5,4),(5,2,1,6,5),(6,3,0,7,6),(7,3,1,8,7),(8,3,2,9,8),(9,4,0,11,9),(10,5,0,12,10),(11,6,0,14,11),(12,7,0,15,12),(13,8,0,35,13),(14,8,1,36,14),(15,9,0,39,15),(16,9,1,40,16),(17,9,2,41,17),(18,10,0,42,18),(19,10,1,43,19),(20,11,0,44,20),(21,11,1,45,21),(22,11,2,46,22),(23,12,0,49,23),(24,12,1,50,24),(25,12,2,51,25),(26,12,3,52,26),(27,13,0,53,27),(28,13,1,54,28),(29,14,0,56,29),(30,14,1,57,30),(31,15,0,84,31),(32,15,1,85,32),(33,16,0,86,33),(34,16,1,87,34),(35,16,2,88,35),(36,17,0,89,36),(37,17,1,90,37),(38,18,0,105,38),(39,18,1,106,39),(40,19,0,107,40),(41,19,1,108,41),(42,19,2,109,42),(43,20,0,112,43),(44,20,1,113,44),(45,21,0,114,45),(46,21,1,115,46),(47,22,0,116,47),(48,22,1,117,48),(49,23,0,119,49),(50,23,1,120,50),(51,23,2,121,51),(52,24,0,122,52),(53,24,1,123,53),(54,25,0,39,15),(55,25,1,40,16),(56,25,2,41,17); /*!40000 ALTER TABLE `AreaLayoutColumns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaLayoutCustomColumns` -- DROP TABLE IF EXISTS `AreaLayoutCustomColumns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayoutCustomColumns` ( `arLayoutColumnID` int unsigned NOT NULL AUTO_INCREMENT, `arLayoutColumnWidth` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`arLayoutColumnID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayoutCustomColumns` -- LOCK TABLES `AreaLayoutCustomColumns` WRITE; /*!40000 ALTER TABLE `AreaLayoutCustomColumns` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaLayoutCustomColumns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaLayoutPresets` -- DROP TABLE IF EXISTS `AreaLayoutPresets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayoutPresets` ( `arLayoutPresetID` int unsigned NOT NULL AUTO_INCREMENT, `arLayoutID` int unsigned NOT NULL DEFAULT '0', `arLayoutPresetName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`arLayoutPresetID`), KEY `arLayoutID` (`arLayoutID`), KEY `arLayoutPresetName` (`arLayoutPresetName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayoutPresets` -- LOCK TABLES `AreaLayoutPresets` WRITE; /*!40000 ALTER TABLE `AreaLayoutPresets` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaLayoutPresets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaLayoutThemeGridColumns` -- DROP TABLE IF EXISTS `AreaLayoutThemeGridColumns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayoutThemeGridColumns` ( `arLayoutColumnID` int unsigned NOT NULL AUTO_INCREMENT, `arLayoutColumnSpan` int unsigned DEFAULT '0', `arLayoutColumnOffset` int unsigned DEFAULT '0', PRIMARY KEY (`arLayoutColumnID`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayoutThemeGridColumns` -- LOCK TABLES `AreaLayoutThemeGridColumns` WRITE; /*!40000 ALTER TABLE `AreaLayoutThemeGridColumns` DISABLE KEYS */; INSERT INTO `AreaLayoutThemeGridColumns` VALUES (1,4,0),(2,4,0),(3,4,0),(4,4,0),(5,8,0),(6,4,0),(7,4,0),(8,4,0),(9,12,0),(10,12,0),(11,12,0),(12,12,0),(13,8,0),(14,3,1),(15,4,0),(16,4,0),(17,4,0),(18,6,0),(19,6,0),(20,2,0),(21,3,0),(22,6,1),(23,3,0),(24,3,0),(25,3,0),(26,3,0),(27,6,0),(28,6,0),(29,5,0),(30,5,2),(31,6,0),(32,6,0),(33,4,0),(34,4,0),(35,4,0),(36,4,0),(37,7,1),(38,7,0),(39,4,1),(40,2,0),(41,4,0),(42,6,0),(43,7,0),(44,5,0),(45,4,0),(46,7,1),(47,4,0),(48,7,1),(49,4,0),(50,4,0),(51,4,0),(52,4,0),(53,8,0),(54,3,0),(55,3,2),(56,3,1); /*!40000 ALTER TABLE `AreaLayoutThemeGridColumns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaLayouts` -- DROP TABLE IF EXISTS `AreaLayouts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayouts` ( `arLayoutID` int unsigned NOT NULL AUTO_INCREMENT, `arLayoutSpacing` int unsigned NOT NULL DEFAULT '0', `arLayoutIsCustom` tinyint(1) NOT NULL DEFAULT '0', `arLayoutIsPreset` tinyint(1) NOT NULL DEFAULT '0', `arLayoutMaxColumns` int unsigned NOT NULL DEFAULT '0', `arLayoutUsesThemeGridFramework` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`arLayoutID`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayouts` -- LOCK TABLES `AreaLayouts` WRITE; /*!40000 ALTER TABLE `AreaLayouts` DISABLE KEYS */; INSERT INTO `AreaLayouts` VALUES (1,0,0,0,12,1),(2,0,0,0,12,1),(3,0,0,0,12,1),(4,0,0,0,12,1),(5,0,0,0,12,1),(6,0,0,0,12,1),(7,0,0,0,12,1),(8,0,0,0,12,1),(9,0,0,0,12,1),(10,0,0,0,12,1),(11,0,0,0,12,1),(12,0,0,0,12,1),(13,0,0,0,12,1),(14,0,0,0,12,1),(15,0,0,0,12,1),(16,0,0,0,12,1),(17,0,0,0,12,1),(18,0,0,0,12,1),(19,0,0,0,12,1),(20,0,0,0,12,1),(21,0,0,0,12,1),(22,0,0,0,12,1),(23,0,0,0,12,1),(24,0,0,0,12,1),(25,0,0,0,12,1); /*!40000 ALTER TABLE `AreaLayouts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaLayoutsUsingPresets` -- DROP TABLE IF EXISTS `AreaLayoutsUsingPresets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaLayoutsUsingPresets` ( `arLayoutID` int unsigned NOT NULL, `preset` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`arLayoutID`), CONSTRAINT `FK_7A9049A1385521EA` FOREIGN KEY (`arLayoutID`) REFERENCES `AreaLayouts` (`arLayoutID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaLayoutsUsingPresets` -- LOCK TABLES `AreaLayoutsUsingPresets` WRITE; /*!40000 ALTER TABLE `AreaLayoutsUsingPresets` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaLayoutsUsingPresets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaPermissionAssignments` -- DROP TABLE IF EXISTS `AreaPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaPermissionAssignments` ( `cID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`arHandle`,`pkID`,`paID`), KEY `paID` (`paID`), KEY `pkID` (`pkID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaPermissionAssignments` -- LOCK TABLES `AreaPermissionAssignments` WRITE; /*!40000 ALTER TABLE `AreaPermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaPermissionBlockTypeAccessList` -- DROP TABLE IF EXISTS `AreaPermissionBlockTypeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaPermissionBlockTypeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaPermissionBlockTypeAccessList` -- LOCK TABLES `AreaPermissionBlockTypeAccessList` WRITE; /*!40000 ALTER TABLE `AreaPermissionBlockTypeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaPermissionBlockTypeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AreaPermissionBlockTypeAccessListCustom` -- DROP TABLE IF EXISTS `AreaPermissionBlockTypeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AreaPermissionBlockTypeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `btID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`btID`), KEY `peID` (`peID`), KEY `btID` (`btID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AreaPermissionBlockTypeAccessListCustom` -- LOCK TABLES `AreaPermissionBlockTypeAccessListCustom` WRITE; /*!40000 ALTER TABLE `AreaPermissionBlockTypeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `AreaPermissionBlockTypeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Areas` -- DROP TABLE IF EXISTS `Areas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Areas` ( `arID` int unsigned NOT NULL AUTO_INCREMENT, `cID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `arOverrideCollectionPermissions` tinyint(1) NOT NULL DEFAULT '0', `arInheritPermissionsFromAreaOnCID` int unsigned NOT NULL DEFAULT '0', `arIsGlobal` tinyint(1) NOT NULL DEFAULT '0', `arParentID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`arID`), KEY `arIsGlobal` (`arIsGlobal`), KEY `cID` (`cID`), KEY `arHandle` (`arHandle`), KEY `arParentID` (`arParentID`) ) ENGINE=InnoDB AUTO_INCREMENT=149 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Areas` -- LOCK TABLES `Areas` WRITE; /*!40000 ALTER TABLE `Areas` DISABLE KEYS */; INSERT INTO `Areas` VALUES (1,164,'Main',0,0,0,0),(2,164,'Main : 1',0,0,0,1),(3,164,'Main : 2',0,0,0,1),(4,164,'Main : 3',0,0,0,1),(5,164,'Main : 4',0,0,0,1),(6,164,'Main : 5',0,0,0,1),(7,164,'Main : 6',0,0,0,1),(8,164,'Main : 7',0,0,0,1),(9,164,'Main : 8',0,0,0,1),(10,165,'Main',0,0,0,0),(11,165,'Main : 9',0,0,0,10),(12,165,'Main : 10',0,0,0,10),(13,178,'Main',0,0,0,0),(14,178,'Main : 11',0,0,0,13),(15,178,'Main : 12',0,0,0,13),(16,179,'Main',0,0,0,0),(17,180,'Main',0,0,0,0),(18,181,'Main',0,0,0,0),(19,182,'Main',0,0,0,0),(20,183,'Main',0,0,0,0),(21,184,'Main',0,0,0,0),(22,185,'Main',0,0,0,0),(23,186,'Main',0,0,0,0),(24,204,'Main',0,0,0,0),(25,204,'Sidebar',0,0,0,0),(26,204,'Page Footer',0,0,0,0),(27,211,'Page Header',0,0,0,0),(28,211,'Sidebar',0,0,0,0),(29,211,'Main',0,0,0,0),(30,197,'Page Header',0,0,0,0),(31,197,'Sidebar',0,0,0,0),(32,197,'Main',0,0,0,0),(33,197,'Page Footer',0,0,0,0),(34,192,'Main',0,0,0,0),(35,192,'Main : 13',0,0,0,34),(36,192,'Main : 14',0,0,0,34),(37,189,'Main',0,0,0,0),(38,1,'Main',0,0,0,0),(39,1,'Main : 15',0,0,0,38),(40,1,'Main : 16',0,0,0,38),(41,1,'Main : 17',0,0,0,38),(42,1,'Main : 18',0,0,0,38),(43,1,'Main : 19',0,0,0,38),(44,1,'Main : 20',0,0,0,38),(45,1,'Main : 21',0,0,0,38),(46,1,'Main : 22',0,0,0,38),(47,1,'Page Footer',0,0,0,0),(48,188,'Main',0,0,0,0),(49,188,'Main : 23',0,0,0,48),(50,188,'Main : 24',0,0,0,48),(51,188,'Main : 25',0,0,0,48),(52,188,'Main : 26',0,0,0,48),(53,188,'Main : 27',0,0,0,48),(54,188,'Main : 28',0,0,0,48),(55,188,'Page Footer',0,0,0,0),(56,188,'Page Footer : 29',0,0,0,55),(57,188,'Page Footer : 30',0,0,0,55),(58,190,'Main',0,0,0,0),(59,198,'Page Header',0,0,0,0),(60,198,'Main',0,0,0,0),(61,198,'Sidebar',0,0,0,0),(62,198,'Page Footer',0,0,0,0),(63,199,'Page Header',0,0,0,0),(64,199,'Main',0,0,0,0),(65,199,'Sidebar',0,0,0,0),(66,199,'Page Footer',0,0,0,0),(67,200,'Page Header',0,0,0,0),(68,200,'Main',0,0,0,0),(69,200,'Sidebar',0,0,0,0),(70,200,'Page Footer',0,0,0,0),(71,201,'Page Header',0,0,0,0),(72,201,'Main',0,0,0,0),(73,201,'Sidebar',0,0,0,0),(74,201,'Page Footer',0,0,0,0),(75,202,'Page Header',0,0,0,0),(76,202,'Main',0,0,0,0),(77,202,'Sidebar',0,0,0,0),(78,202,'Page Footer',0,0,0,0),(79,203,'Page Header',0,0,0,0),(80,203,'Main',0,0,0,0),(81,203,'Sidebar',0,0,0,0),(82,203,'Page Footer',0,0,0,0),(83,191,'Main',0,0,0,0),(84,191,'Main : 31',0,0,0,83),(85,191,'Main : 32',0,0,0,83),(86,191,'Main : 33',0,0,0,83),(87,191,'Main : 34',0,0,0,83),(88,191,'Main : 35',0,0,0,83),(89,191,'Main : 36',0,0,0,83),(90,191,'Main : 37',0,0,0,83),(91,193,'Main',0,0,0,0),(92,193,'Main : 13',0,0,0,0),(93,193,'Main : 14',0,0,0,0),(94,205,'Page Footer',0,0,0,0),(95,205,'Main',0,0,0,0),(96,205,'Sidebar',0,0,0,0),(97,206,'Page Footer',0,0,0,0),(98,206,'Main',0,0,0,0),(99,206,'Sidebar',0,0,0,0),(100,207,'Page Footer',0,0,0,0),(101,207,'Main',0,0,0,0),(102,207,'Sidebar',0,0,0,0),(103,194,'Main',0,0,0,0),(104,195,'Main',0,0,0,0),(105,195,'Main : 38',0,0,0,104),(106,195,'Main : 39',0,0,0,104),(107,195,'Main : 40',0,0,0,104),(108,195,'Main : 41',0,0,0,104),(109,195,'Main : 42',0,0,0,104),(110,196,'Main',0,0,0,0),(111,208,'Main',0,0,0,0),(112,208,'Main : 43',0,0,0,111),(113,208,'Main : 44',0,0,0,111),(114,208,'Main : 45',0,0,0,111),(115,208,'Main : 46',0,0,0,111),(116,208,'Main : 47',0,0,0,111),(117,208,'Main : 48',0,0,0,111),(118,209,'Main',0,0,0,0),(119,209,'Main : 49',0,0,0,118),(120,209,'Main : 50',0,0,0,118),(121,209,'Main : 51',0,0,0,118),(122,209,'Main : 52',0,0,0,118),(123,209,'Main : 53',0,0,0,118),(124,212,'Main',0,0,0,0),(125,212,'Page Header',0,0,0,0),(126,212,'Sidebar',0,0,0,0),(127,213,'Main',0,0,0,0),(128,213,'Page Header',0,0,0,0),(129,213,'Sidebar',0,0,0,0),(130,210,'Main',0,0,0,0),(131,1,'Header Site Title',0,0,1,0),(132,1,'Header Navigation',0,0,1,0),(133,1,'Header Search',0,0,1,0),(134,1,'Footer Site Title',0,0,1,0),(135,1,'Footer Social',0,0,1,0),(136,1,'Footer Legal',0,0,1,0),(137,1,'Footer Navigation',0,0,1,0),(138,1,'Footer Contact',0,0,1,0),(139,190,'Header Site Title',0,0,1,0),(140,190,'Header Navigation',0,0,1,0),(141,190,'Header Search',0,0,1,0),(142,190,'Page Footer',0,0,0,0),(143,190,'Footer Site Title',0,0,1,0),(144,190,'Footer Social',0,0,1,0),(145,190,'Footer Legal',0,0,1,0),(146,190,'Footer Navigation',0,0,1,0),(147,190,'Footer Contact',0,0,1,0),(148,169,'Disclaimer',0,0,0,0); /*!40000 ALTER TABLE `Areas` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeKeyCategories` -- DROP TABLE IF EXISTS `AttributeKeyCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeKeyCategories` ( `akCategoryID` int unsigned NOT NULL AUTO_INCREMENT, `akCategoryHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `akCategoryAllowSets` int NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`akCategoryID`), UNIQUE KEY `UNIQ_A2A0CC67FA0337B` (`akCategoryHandle`), KEY `IDX_A2A0CC67CE45CBB0` (`pkgID`), KEY `pkgID` (`pkgID`,`akCategoryID`), KEY `akCategoryHandle` (`akCategoryHandle`), CONSTRAINT `FK_A2A0CC67CE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeKeyCategories` -- LOCK TABLES `AttributeKeyCategories` WRITE; /*!40000 ALTER TABLE `AttributeKeyCategories` DISABLE KEYS */; INSERT INTO `AttributeKeyCategories` VALUES (1,'collection',1,NULL),(2,'user',1,NULL),(3,'file',1,NULL),(4,'site',1,NULL),(5,'event',1,NULL); /*!40000 ALTER TABLE `AttributeKeyCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeKeys` -- DROP TABLE IF EXISTS `AttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeKeys` ( `akID` int unsigned NOT NULL AUTO_INCREMENT, `akHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `akName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `akIsSearchable` tinyint(1) NOT NULL, `akIsInternal` tinyint(1) NOT NULL, `akIsSearchableIndexed` tinyint(1) NOT NULL, `atID` int unsigned DEFAULT NULL, `akCategoryID` int unsigned DEFAULT NULL, `pkgID` int unsigned DEFAULT NULL, `akCategory` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`akID`), KEY `IDX_DCA32C62A12CFE33` (`atID`), KEY `IDX_DCA32C62B059B76B` (`akCategoryID`), KEY `pkgID` (`pkgID`), CONSTRAINT `FK_DCA32C62A12CFE33` FOREIGN KEY (`atID`) REFERENCES `AttributeTypes` (`atID`), CONSTRAINT `FK_DCA32C62B059B76B` FOREIGN KEY (`akCategoryID`) REFERENCES `AttributeKeyCategories` (`akCategoryID`), CONSTRAINT `FK_DCA32C62CE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeKeys` -- LOCK TABLES `AttributeKeys` WRITE; /*!40000 ALTER TABLE `AttributeKeys` DISABLE KEYS */; INSERT INTO `AttributeKeys` VALUES (1,'meta_title','Meta Title',1,0,0,1,1,NULL,'pagekey'),(2,'meta_description','Meta Description',1,0,0,2,1,NULL,'pagekey'),(3,'meta_keywords','Meta Keywords',1,0,0,2,1,NULL,'pagekey'),(4,'desktop_priority','Desktop Priority',1,1,0,6,1,NULL,'pagekey'),(5,'is_desktop','Is Desktop',1,1,0,3,1,NULL,'pagekey'),(6,'icon_dashboard','Dashboard Icon',1,1,0,2,1,NULL,'pagekey'),(7,'exclude_nav','Exclude From Nav',1,0,0,3,1,NULL,'pagekey'),(8,'exclude_page_list','Exclude From Page List',1,0,0,3,1,NULL,'pagekey'),(9,'header_extra_content','Header Extra Content',1,0,0,2,1,NULL,'pagekey'),(10,'tags','Tags',1,0,1,7,1,NULL,'pagekey'),(11,'is_featured','Is Featured',1,0,0,3,1,NULL,'pagekey'),(12,'exclude_search_index','Exclude From Search Index',1,0,0,3,1,NULL,'pagekey'),(13,'exclude_sitemapxml','Exclude From sitemap.xml',1,0,0,3,1,NULL,'pagekey'),(14,'profile_private_messages_enabled','I would like to receive private messages.',1,0,0,3,2,NULL,'userkey'),(15,'profile_private_messages_notification_enabled','Send me email notifications when I receive a private message.',1,0,0,3,2,NULL,'userkey'),(16,'width','Width',1,0,0,6,3,NULL,'filekey'),(17,'height','Height',1,0,0,6,3,NULL,'filekey'),(18,'account_profile_links','Personal Links',1,0,0,14,2,NULL,'userkey'),(19,'duration','Duration',1,0,0,6,3,NULL,'filekey'),(20,'job_posting_department','Department',1,0,1,7,1,NULL,'pagekey'),(21,'job_location','Location',1,0,1,2,1,NULL,'pagekey'),(22,'exclude_subpages_from_nav','Exclude Sub-Pages From Nav',1,0,1,3,1,NULL,'pagekey'),(23,'thumbnail','Thumbnail',1,0,1,5,1,NULL,'pagekey'),(24,'blog_entry_topics','Blog Entry Topics',1,0,1,13,1,NULL,'pagekey'),(25,'project_topics','Project Topics',1,0,1,13,1,NULL,'pagekey'),(26,'event_categories','Event Categories',1,0,1,13,5,NULL,'eventkey'),(27,'project_client','Client',1,0,1,1,1,NULL,'pagekey'),(28,'project_tasks','Task',1,0,1,7,1,NULL,'pagekey'),(29,'project_skills','Skills',1,0,1,7,1,NULL,'pagekey'),(30,'contact_question_first_name','First Name',1,0,1,1,NULL,NULL,'expresskey'),(31,'contact_question_last_name','Last Name',1,0,1,1,NULL,NULL,'expresskey'),(32,'contact_question_email_address','Email Address',1,0,1,11,NULL,NULL,'expresskey'),(33,'contact_question_subject','Subject',1,0,1,7,NULL,NULL,'expresskey'),(34,'contact_question_message','Message',1,0,1,2,NULL,NULL,'expresskey'),(35,'BlogTitle','Title',1,0,1,1,NULL,NULL,'expresskey'),(36,'BlogCreatedDate','Date',1,0,1,4,NULL,NULL,'expresskey'),(37,'BlogEmail','Email Address',1,0,1,11,NULL,NULL,'expresskey'),(38,'BlogBody','Blog Main Body',1,0,0,2,NULL,NULL,'expresskey'),(39,'campaign_title_handler','Campaign Title',1,0,1,1,NULL,NULL,'expresskey'),(40,'campaign_date_handler','Campaign Date',1,0,1,4,NULL,NULL,'expresskey'),(41,'campaign_body','Campaign Body',1,0,0,2,NULL,NULL,'expresskey'); /*!40000 ALTER TABLE `AttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeSetKeys` -- DROP TABLE IF EXISTS `AttributeSetKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeSetKeys` ( `asDisplayOrder` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `asID` int unsigned NOT NULL, PRIMARY KEY (`akID`,`asID`), KEY `IDX_222F72D8B6561A7E` (`akID`), KEY `IDX_222F72D8A463E8B6` (`asID`), CONSTRAINT `FK_222F72D8A463E8B6` FOREIGN KEY (`asID`) REFERENCES `AttributeSets` (`asID`), CONSTRAINT `FK_222F72D8B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeSetKeys` -- LOCK TABLES `AttributeSetKeys` WRITE; /*!40000 ALTER TABLE `AttributeSetKeys` DISABLE KEYS */; INSERT INTO `AttributeSetKeys` VALUES (0,1,1),(1,2,1),(1,7,2),(2,8,2),(2,9,1),(4,10,2),(0,11,2),(3,12,2),(3,13,1),(0,20,3),(1,21,3),(6,22,2),(5,23,2),(0,24,4),(0,25,5),(0,26,6),(1,27,5),(2,28,5),(3,29,5); /*!40000 ALTER TABLE `AttributeSetKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeSets` -- DROP TABLE IF EXISTS `AttributeSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeSets` ( `asID` int unsigned NOT NULL AUTO_INCREMENT, `asHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `asName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `asDisplayOrder` int unsigned NOT NULL, `asIsLocked` tinyint(1) NOT NULL, `akCategoryID` int unsigned DEFAULT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`asID`), KEY `IDX_FCA02D5FB059B76B` (`akCategoryID`), KEY `asHandle` (`asHandle`), KEY `pkgID` (`pkgID`), CONSTRAINT `FK_FCA02D5FB059B76B` FOREIGN KEY (`akCategoryID`) REFERENCES `AttributeKeyCategories` (`akCategoryID`), CONSTRAINT `FK_FCA02D5FCE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeSets` -- LOCK TABLES `AttributeSets` WRITE; /*!40000 ALTER TABLE `AttributeSets` DISABLE KEYS */; INSERT INTO `AttributeSets` VALUES (1,'seo','SEO',0,1,1,NULL),(2,'navigation','Navigation and Indexing',0,1,1,NULL),(3,'job_board','Jobs',0,1,1,NULL),(4,'blog','Blog',0,1,1,NULL),(5,'portfolio','Portfolio',0,1,1,NULL),(6,'event_categories','Categories',0,1,5,NULL); /*!40000 ALTER TABLE `AttributeSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeTypeCategories` -- DROP TABLE IF EXISTS `AttributeTypeCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeTypeCategories` ( `akCategoryID` int unsigned NOT NULL, `atID` int unsigned NOT NULL, PRIMARY KEY (`akCategoryID`,`atID`), KEY `IDX_49A9CABEB059B76B` (`akCategoryID`), KEY `IDX_49A9CABEA12CFE33` (`atID`), CONSTRAINT `FK_49A9CABEA12CFE33` FOREIGN KEY (`atID`) REFERENCES `AttributeTypes` (`atID`), CONSTRAINT `FK_49A9CABEB059B76B` FOREIGN KEY (`akCategoryID`) REFERENCES `AttributeKeyCategories` (`akCategoryID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeTypeCategories` -- LOCK TABLES `AttributeTypeCategories` WRITE; /*!40000 ALTER TABLE `AttributeTypeCategories` DISABLE KEYS */; INSERT INTO `AttributeTypeCategories` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,9),(1,10),(1,11),(1,12),(1,13),(1,15),(1,16),(1,17),(1,18),(1,19),(2,1),(2,2),(2,3),(2,4),(2,6),(2,7),(2,8),(2,9),(2,10),(2,11),(2,13),(2,14),(2,17),(2,19),(3,1),(3,2),(3,3),(3,4),(3,6),(3,7),(3,9),(3,10),(3,11),(3,12),(3,13),(3,17),(3,19),(4,1),(4,2),(4,3),(4,4),(4,5),(4,6),(4,7),(4,8),(4,9),(4,10),(4,11),(4,13),(4,15),(4,17),(4,18),(4,19),(5,1),(5,2),(5,3),(5,4),(5,5),(5,6),(5,7),(5,8),(5,9),(5,10),(5,11),(5,13),(5,19); /*!40000 ALTER TABLE `AttributeTypeCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeTypes` -- DROP TABLE IF EXISTS `AttributeTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeTypes` ( `atID` int unsigned NOT NULL AUTO_INCREMENT, `atHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `atName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`atID`), UNIQUE KEY `UNIQ_53580A7F46AA0F38` (`atHandle`), KEY `IDX_53580A7FCE45CBB0` (`pkgID`), KEY `pkgID` (`pkgID`,`atID`), CONSTRAINT `FK_53580A7FCE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeTypes` -- LOCK TABLES `AttributeTypes` WRITE; /*!40000 ALTER TABLE `AttributeTypes` DISABLE KEYS */; INSERT INTO `AttributeTypes` VALUES (1,'text','Text',NULL),(2,'textarea','Text Area',NULL),(3,'boolean','Checkbox',NULL),(4,'date_time','Date/Time',NULL),(5,'image_file','Image/File',NULL),(6,'number','Number',NULL),(7,'select','Option List',NULL),(8,'address','Address',NULL),(9,'telephone','Phone Number',NULL),(10,'url','URL',NULL),(11,'email','Email',NULL),(12,'rating','Rating',NULL),(13,'topics','Topics',NULL),(14,'social_links','Social Links',NULL),(15,'calendar','Calendar',NULL),(16,'calendar_event','Calendar Event',NULL),(17,'express','Express Entity',NULL),(18,'page_selector','Page Selector',NULL),(19,'user_selector','User Selector',NULL); /*!40000 ALTER TABLE `AttributeTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AttributeValues` -- DROP TABLE IF EXISTS `AttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AttributeValues` ( `avID` int unsigned NOT NULL AUTO_INCREMENT, `akID` int unsigned DEFAULT NULL, PRIMARY KEY (`avID`), KEY `IDX_DCCE7864B6561A7E` (`akID`), CONSTRAINT `FK_DCCE7864B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AttributeValues` -- LOCK TABLES `AttributeValues` WRITE; /*!40000 ALTER TABLE `AttributeValues` DISABLE KEYS */; INSERT INTO `AttributeValues` VALUES (219,1),(230,1),(237,1),(244,1),(220,2),(231,2),(238,2),(245,2),(2,3),(3,3),(4,3),(5,3),(6,3),(7,3),(8,3),(10,3),(11,3),(12,3),(13,3),(14,3),(15,3),(17,3),(19,3),(20,3),(21,3),(22,3),(23,3),(26,3),(27,3),(28,3),(29,3),(30,3),(39,3),(40,3),(41,3),(47,3),(50,3),(51,3),(52,3),(53,3),(54,3),(55,3),(57,3),(58,3),(59,3),(60,3),(61,3),(62,3),(63,3),(64,3),(65,3),(66,3),(68,3),(69,3),(72,3),(83,3),(84,3),(85,3),(86,3),(87,3),(88,3),(89,3),(90,3),(91,3),(93,3),(94,3),(95,3),(96,3),(97,3),(98,3),(99,3),(100,3),(101,3),(102,3),(103,3),(105,3),(106,3),(107,3),(108,3),(109,3),(110,3),(111,3),(112,3),(113,3),(114,3),(115,3),(116,3),(117,3),(118,3),(119,3),(120,3),(121,3),(122,3),(123,3),(124,3),(125,3),(126,3),(127,3),(128,3),(130,3),(131,3),(132,3),(133,3),(134,3),(135,3),(136,3),(137,3),(138,3),(221,3),(232,3),(239,3),(246,3),(141,4),(148,4),(142,5),(149,5),(1,6),(46,6),(144,6),(145,6),(146,6),(147,6),(9,7),(16,7),(18,7),(24,7),(31,7),(32,7),(33,7),(34,7),(35,7),(36,7),(37,7),(38,7),(42,7),(44,7),(48,7),(56,7),(67,7),(70,7),(73,7),(75,7),(77,7),(79,7),(81,7),(92,7),(104,7),(139,7),(143,7),(150,7),(183,7),(233,7),(236,7),(222,9),(234,9),(240,9),(247,9),(185,11),(196,11),(202,11),(25,12),(43,12),(45,12),(49,12),(71,12),(74,12),(76,12),(78,12),(80,12),(82,12),(129,12),(140,12),(223,13),(235,13),(241,13),(248,13),(151,16),(153,16),(155,16),(157,16),(159,16),(161,16),(163,16),(165,16),(167,16),(169,16),(171,16),(173,16),(175,16),(177,16),(179,16),(181,16),(152,17),(154,17),(156,17),(158,17),(160,17),(162,17),(164,17),(166,17),(168,17),(170,17),(172,17),(174,17),(176,17),(178,17),(180,17),(182,17),(242,20),(249,20),(243,21),(250,21),(184,22),(218,22),(186,23),(191,23),(197,23),(203,23),(208,23),(213,23),(224,23),(226,23),(228,23),(225,24),(227,24),(229,24),(187,25),(192,25),(198,25),(204,25),(209,25),(214,25),(188,27),(193,27),(199,27),(205,27),(210,27),(215,27),(189,28),(194,28),(200,28),(206,28),(211,28),(216,28),(190,29),(195,29),(201,29),(207,29),(212,29),(217,29); /*!40000 ALTER TABLE `AttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `AuthenticationTypes` -- DROP TABLE IF EXISTS `AuthenticationTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `AuthenticationTypes` ( `authTypeID` int unsigned NOT NULL AUTO_INCREMENT, `authTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `authTypeName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `authTypeIsEnabled` tinyint(1) NOT NULL, `authTypeDisplayOrder` int unsigned DEFAULT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`authTypeID`), UNIQUE KEY `authTypeHandle` (`authTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `AuthenticationTypes` -- LOCK TABLES `AuthenticationTypes` WRITE; /*!40000 ALTER TABLE `AuthenticationTypes` DISABLE KEYS */; INSERT INTO `AuthenticationTypes` VALUES (1,'concrete','Standard',1,0,0),(2,'community','concrete5.org',0,0,0),(3,'facebook','Facebook',0,0,0),(4,'twitter','Twitter',0,0,0),(5,'google','Google',0,0,0),(6,'external_concrete5','External concrete5',0,0,0); /*!40000 ALTER TABLE `AuthenticationTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BannedWords` -- DROP TABLE IF EXISTS `BannedWords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BannedWords` ( `bwID` int unsigned NOT NULL AUTO_INCREMENT, `bannedWord` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`bwID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BannedWords` -- LOCK TABLES `BannedWords` WRITE; /*!40000 ALTER TABLE `BannedWords` DISABLE KEYS */; INSERT INTO `BannedWords` VALUES (1,'fuck'),(2,'shit'),(3,'bitch'),(4,'ass'); /*!40000 ALTER TABLE `BannedWords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BasicWorkflowPermissionAssignments` -- DROP TABLE IF EXISTS `BasicWorkflowPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BasicWorkflowPermissionAssignments` ( `wfID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`wfID`,`pkID`,`paID`), KEY `pkID` (`pkID`), KEY `paID` (`paID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BasicWorkflowPermissionAssignments` -- LOCK TABLES `BasicWorkflowPermissionAssignments` WRITE; /*!40000 ALTER TABLE `BasicWorkflowPermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `BasicWorkflowPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BasicWorkflowProgressData` -- DROP TABLE IF EXISTS `BasicWorkflowProgressData`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BasicWorkflowProgressData` ( `wpID` int unsigned NOT NULL DEFAULT '0', `uIDStarted` int unsigned NOT NULL DEFAULT '0', `uIDCompleted` int unsigned NOT NULL DEFAULT '0', `wpDateCompleted` datetime DEFAULT NULL, PRIMARY KEY (`wpID`), KEY `uIDStarted` (`uIDStarted`), KEY `uIDCompleted` (`uIDCompleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BasicWorkflowProgressData` -- LOCK TABLES `BasicWorkflowProgressData` WRITE; /*!40000 ALTER TABLE `BasicWorkflowProgressData` DISABLE KEYS */; /*!40000 ALTER TABLE `BasicWorkflowProgressData` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockFeatureAssignments` -- DROP TABLE IF EXISTS `BlockFeatureAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockFeatureAssignments` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `bID` int unsigned NOT NULL DEFAULT '0', `faID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`faID`), KEY `faID` (`faID`,`cID`,`cvID`), KEY `bID` (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockFeatureAssignments` -- LOCK TABLES `BlockFeatureAssignments` WRITE; /*!40000 ALTER TABLE `BlockFeatureAssignments` DISABLE KEYS */; INSERT INTO `BlockFeatureAssignments` VALUES (204,1,29,1),(191,1,123,2),(205,1,125,3),(206,1,127,4),(207,1,129,5),(195,1,138,6),(208,1,145,7),(208,1,152,8),(208,1,156,9),(209,1,159,10); /*!40000 ALTER TABLE `BlockFeatureAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockPermissionAssignments` -- DROP TABLE IF EXISTS `BlockPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockPermissionAssignments` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `bID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`pkID`,`paID`), KEY `bID` (`bID`), KEY `pkID` (`pkID`), KEY `paID` (`paID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockPermissionAssignments` -- LOCK TABLES `BlockPermissionAssignments` WRITE; /*!40000 ALTER TABLE `BlockPermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `BlockPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockTypePermissionBlockTypeAccessList` -- DROP TABLE IF EXISTS `BlockTypePermissionBlockTypeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockTypePermissionBlockTypeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockTypePermissionBlockTypeAccessList` -- LOCK TABLES `BlockTypePermissionBlockTypeAccessList` WRITE; /*!40000 ALTER TABLE `BlockTypePermissionBlockTypeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `BlockTypePermissionBlockTypeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockTypePermissionBlockTypeAccessListCustom` -- DROP TABLE IF EXISTS `BlockTypePermissionBlockTypeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockTypePermissionBlockTypeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `btID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`btID`), KEY `peID` (`peID`), KEY `btID` (`btID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockTypePermissionBlockTypeAccessListCustom` -- LOCK TABLES `BlockTypePermissionBlockTypeAccessListCustom` WRITE; /*!40000 ALTER TABLE `BlockTypePermissionBlockTypeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `BlockTypePermissionBlockTypeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockTypeSetBlockTypes` -- DROP TABLE IF EXISTS `BlockTypeSetBlockTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockTypeSetBlockTypes` ( `btID` int unsigned NOT NULL DEFAULT '0', `btsID` int unsigned NOT NULL DEFAULT '0', `displayOrder` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`btID`,`btsID`), KEY `btsID` (`btsID`,`displayOrder`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockTypeSetBlockTypes` -- LOCK TABLES `BlockTypeSetBlockTypes` WRITE; /*!40000 ALTER TABLE `BlockTypeSetBlockTypes` DISABLE KEYS */; INSERT INTO `BlockTypeSetBlockTypes` VALUES (1,1,0),(2,1,1),(3,1,2),(4,1,3),(5,1,4),(6,1,5),(7,2,0),(8,2,1),(9,2,2),(10,2,3),(11,2,4),(12,2,5),(13,2,6),(14,2,7),(15,2,8),(16,2,9),(17,3,0),(18,3,1),(19,3,2),(20,4,0),(21,4,1),(22,5,0),(23,5,1),(24,5,2),(25,5,3),(26,5,4),(27,6,0),(28,6,1),(29,6,2),(30,7,0),(31,7,1),(32,7,2),(33,7,3),(34,7,4),(35,7,5),(36,8,0),(37,8,1),(38,8,2),(39,8,3),(40,8,4),(41,8,5),(42,8,6),(43,8,7); /*!40000 ALTER TABLE `BlockTypeSetBlockTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockTypeSets` -- DROP TABLE IF EXISTS `BlockTypeSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockTypeSets` ( `btsID` int unsigned NOT NULL AUTO_INCREMENT, `btsName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `btsHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', `btsDisplayOrder` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`btsID`), UNIQUE KEY `btsHandle` (`btsHandle`), KEY `btsDisplayOrder` (`btsDisplayOrder`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockTypeSets` -- LOCK TABLES `BlockTypeSets` WRITE; /*!40000 ALTER TABLE `BlockTypeSets` DISABLE KEYS */; INSERT INTO `BlockTypeSets` VALUES (1,'Basic','basic',0,0),(2,'Navigation','navigation',0,0),(3,'Forms','form',0,0),(4,'Express','express',0,0),(5,'Social Networking','social',0,0),(6,'Calendar & Events','calendar',0,0),(7,'Multimedia','multimedia',0,0),(8,'Desktop','core_desktop',0,0); /*!40000 ALTER TABLE `BlockTypeSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlockTypes` -- DROP TABLE IF EXISTS `BlockTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlockTypes` ( `btIgnorePageThemeGridFrameworkContainer` tinyint(1) NOT NULL, `btID` int NOT NULL AUTO_INCREMENT, `btHandle` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `btName` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `btDescription` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `btCopyWhenPropagate` tinyint(1) NOT NULL, `btIncludeAll` tinyint(1) NOT NULL, `btIsInternal` tinyint(1) NOT NULL, `btSupportsInlineEdit` tinyint(1) NOT NULL, `btSupportsInlineAdd` tinyint(1) NOT NULL, `btDisplayOrder` int NOT NULL, `btInterfaceHeight` int NOT NULL, `btInterfaceWidth` int NOT NULL, `pkgID` int unsigned NOT NULL, PRIMARY KEY (`btID`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlockTypes` -- LOCK TABLES `BlockTypes` WRITE; /*!40000 ALTER TABLE `BlockTypes` DISABLE KEYS */; INSERT INTO `BlockTypes` VALUES (0,1,'content','Content','HTML/WYSIWYG Editor Content.',0,0,0,1,1,0,465,600,0),(1,2,'html','HTML','For adding HTML by hand.',0,0,0,0,0,0,500,600,0),(0,3,'image','Image','Adds images and onstates from the library to pages.',0,0,0,0,0,0,550,400,0),(0,4,'file','File','Link to files stored in the asset library.',0,0,0,0,0,0,320,300,0),(1,5,'horizontal_rule','Horizontal Rule','Adds a thin hairline horizontal divider to the page.',0,0,0,0,0,0,400,400,0),(0,6,'feature','Feature','Displays an icon, a title, and a short paragraph description.',0,0,0,0,0,0,520,400,0),(0,7,'autonav','Auto-Nav','Creates navigation trees and sitemaps.',0,0,0,0,0,0,525,700,0),(0,8,'page_title','Page Title','Displays a Page\'s Title',0,0,0,0,0,0,500,470,0),(0,9,'faq','FAQ','Frequently Asked Questions Block',0,0,0,0,0,0,465,600,0),(0,10,'page_list','Page List','List pages based on type, area.',0,0,0,0,0,0,525,700,0),(0,11,'next_previous','Next & Previous Nav','Navigate through sibling pages.',0,0,0,0,0,0,400,430,0),(0,12,'date_navigation','Date Navigation','Displays a list of months to filter a page list by.',0,0,0,0,0,0,450,400,0),(0,13,'tags','Tags','List pages based on type, area.',0,0,0,0,0,0,439,450,0),(0,14,'topic_list','Topic List','Displays a list of your site\'s topics, allowing you to click on them to filter a page list.',0,0,0,0,0,0,400,400,0),(0,15,'rss_displayer','RSS Displayer','Fetch, parse and display the contents of an RSS or Atom feed.',0,0,0,0,0,0,550,400,0),(0,16,'switch_language','Switch Language','Adds a front-end language switcher to your website.',0,0,0,0,0,0,150,500,0),(0,17,'express_form','Form','Build simple forms and surveys.',0,0,0,0,0,0,700,640,0),(0,18,'search','Search','Add a search box to your site.',0,0,0,0,0,0,420,400,0),(0,19,'external_form','External Form','Include external forms in the filesystem and place them on pages.',0,0,0,0,0,0,175,420,0),(0,20,'express_entry_list','Express Entry List','Add a searchable Express entry list to a page.',0,0,0,0,0,0,400,640,0),(0,21,'express_entry_detail','Express Entry Detail','Add an Express entry detail display to a page.',0,0,0,0,0,0,400,640,0),(0,22,'survey','Survey','Provide a simple survey, along with results in a pie chart format.',0,0,0,0,0,0,500,500,0),(0,23,'core_conversation','Conversation','Displays conversations on a page.',1,0,0,0,0,0,400,450,0),(0,24,'social_links','Social Links','Allows users to add social icons to their website',0,0,0,0,0,0,400,400,0),(0,25,'testimonial','Testimonial','Displays a quote or paragraph next to biographical information and a person\'s picture.',0,0,0,0,0,0,560,450,0),(0,26,'share_this_page','Share This Page','Allows users to share this page with social networks.',0,0,0,0,0,0,400,400,0),(0,27,'calendar','Calendar','Displays a month view calendar on a page.',0,0,0,0,0,0,475,500,0),(0,28,'event_list','Event List','Displays a list of events from a calendar.',0,0,0,0,0,0,340,500,0),(0,29,'calendar_event','Calendar Event','Displays a calendar event on a page.',0,0,0,0,0,0,400,550,0),(0,30,'page_attribute_display','Page Attribute Display','Displays the value of a page attribute for the current page.',0,0,0,0,0,0,365,500,0),(1,31,'image_slider','Image Slider','Display your images and captions in an attractive slideshow format.',0,0,0,0,0,0,550,600,0),(0,32,'video','Video Player','Embeds uploaded video into a web page. Supports WebM, Ogg, and Quicktime/MPEG4 formats.',0,0,0,0,0,0,440,450,0),(0,33,'document_library','Document Library','Add a searchable document library to a page.',0,0,0,0,0,0,400,640,0),(0,34,'youtube','YouTube Video','Embeds a YouTube Video in your web page.',0,0,0,0,0,0,490,400,0),(0,35,'google_map','Google Map','Enter an address and a Google Map of that location will be placed in your page.',0,0,0,0,0,0,550,525,0),(0,36,'desktop_app_status','concrete5 Status Messages','Displays alerts about your concrete5 site and package updates.',0,0,0,0,0,0,400,400,0),(0,37,'desktop_site_activity','Site Activity','Displays a graph of recent activity on your site.',0,0,0,0,0,0,560,450,0),(0,38,'desktop_featured_addon','Dashboard Featured Add-On','Features an add-on from concrete5.org.',0,0,0,0,0,0,100,300,0),(0,39,'desktop_featured_theme','Dashboard Featured Theme','Features a theme from concrete5.org.',0,0,0,0,0,0,100,300,0),(0,40,'desktop_latest_form','Latest Form','Shows the latest form submission.',0,0,0,0,0,0,400,400,0),(0,41,'desktop_waiting_for_me','Waiting for Me','Displays workflow actions waiting for you.',0,0,0,0,0,0,560,450,0),(0,42,'desktop_draft_list','Draft List','Displays a list of all drafts.',0,0,0,0,0,0,400,400,0),(0,43,'desktop_newsflow_latest','Dashboard Newsflow Latest','Grabs the latest newsflow data from concrete5.org.',0,0,0,0,0,0,400,400,0),(0,44,'core_area_layout','Area Layout','Proxy block for area layouts.',0,0,1,1,1,0,400,400,0),(0,45,'core_page_type_composer_control_output','Composer Control','Proxy block for blocks that need to be output through composer.',0,0,1,0,0,0,400,400,0),(0,46,'core_scrapbook_display','Scrapbook Display','Proxy block for blocks pasted through the scrapbook.',0,0,1,0,0,0,400,400,0),(0,47,'core_stack_display','Stack Display','Proxy block for stacks added through the UI.',0,0,1,0,0,0,400,400,0),(0,48,'form','Legacy Form','Build simple forms and surveys.',1,0,0,0,0,0,430,420,0); /*!40000 ALTER TABLE `BlockTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Blocks` -- DROP TABLE IF EXISTS `Blocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Blocks` ( `bID` int unsigned NOT NULL AUTO_INCREMENT, `bName` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bDateAdded` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `bDateModified` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `bFilename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bIsActive` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `btID` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned DEFAULT NULL, `btCachedBlockRecord` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`bID`), KEY `btID` (`btID`), KEY `uID` (`uID`) ) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Blocks` -- LOCK TABLES `Blocks` WRITE; /*!40000 ALTER TABLE `Blocks` DISABLE KEYS */; INSERT INTO `Blocks` VALUES (1,'','2020-05-22 13:43:27','2020-05-22 13:43:27',NULL,'0',36,1,NULL),(2,'','2020-05-22 13:43:27','2020-05-22 13:43:27',NULL,'0',44,1,NULL),(3,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',40,1,NULL),(4,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',38,1,NULL),(5,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',37,1,NULL),(6,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',44,1,NULL),(7,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',15,1,NULL),(8,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',39,1,NULL),(9,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',44,1,NULL),(10,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',43,1,NULL),(11,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',43,1,NULL),(12,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',43,1,NULL),(13,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',15,1,NULL),(14,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',44,1,NULL),(15,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',41,1,NULL),(16,'','2020-05-22 13:43:28','2020-05-22 13:43:28',NULL,'0',44,1,NULL),(17,'','2020-05-22 13:43:29','2020-05-22 13:43:29',NULL,'0',42,1,NULL),(18,'','2020-05-22 13:43:30','2020-05-22 13:43:30',NULL,'0',44,1,NULL),(19,'','2020-05-22 13:43:30','2020-05-22 13:43:30',NULL,'0',41,1,NULL),(20,'','2020-05-22 13:43:30','2020-05-22 13:43:30',NULL,'0',44,1,NULL),(21,'','2020-05-22 13:43:30','2020-05-22 13:43:30',NULL,'0',42,1,NULL),(22,'','2020-05-22 13:43:37','2020-05-22 13:43:37','byline.php','0',8,1,NULL),(23,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',45,1,NULL),(24,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',11,1,NULL),(25,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',26,1,NULL),(26,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',14,1,NULL),(27,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',10,1,NULL),(28,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',5,1,NULL),(29,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',23,1,NULL),(30,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',8,1,NULL),(31,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',10,1,NULL),(32,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',1,1,NULL),(33,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',1,1,NULL),(34,'','2020-05-22 13:43:37','2020-05-22 13:43:37',NULL,'0',30,1,NULL),(35,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',1,1,NULL),(36,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',30,1,NULL),(37,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',1,1,NULL),(38,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',45,1,NULL),(39,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',1,1,NULL),(40,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',8,1,NULL),(41,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',45,1,NULL),(42,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',30,1,NULL),(43,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',30,1,NULL),(44,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',30,1,NULL),(45,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',45,1,NULL),(46,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',5,1,NULL),(47,'','2020-05-22 13:43:38','2020-05-22 13:43:38','thumbnail_grid','0',10,1,NULL),(48,'','2020-05-22 13:43:38','2020-05-22 13:43:38','archive.php','0',8,1,NULL),(49,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',44,1,NULL),(50,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',10,1,NULL),(51,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',14,1,NULL),(52,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',12,1,NULL),(53,'','2020-05-22 13:43:38','2020-05-22 13:43:38',NULL,'0',8,1,NULL),(54,'','2020-05-22 13:43:38','2020-05-22 13:43:38','flat_filter.php','0',14,1,NULL),(55,'','2020-05-22 13:43:38','2020-05-22 13:43:38','thumbnail_grid','0',10,1,NULL),(56,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(57,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(58,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(59,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(60,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',24,1,NULL),(61,'','2020-05-22 13:43:39','2020-05-22 13:43:39','responsive_header_navigation','0',7,1,NULL),(62,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',18,1,NULL),(63,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(64,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',31,1,NULL),(65,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',44,1,NULL),(66,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',6,1,NULL),(67,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',6,1,NULL),(68,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',6,1,NULL),(69,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',5,1,NULL),(70,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(71,'','2020-05-22 13:43:39','2020-05-22 13:43:39','thumbnail_grid','0',10,1,NULL),(72,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',5,1,NULL),(73,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',44,1,NULL),(74,'','2020-05-22 13:43:39','2020-05-22 13:43:39',NULL,'0',1,1,NULL),(75,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',1,1,NULL),(76,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',44,1,NULL),(77,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',10,1,NULL),(78,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',10,1,NULL),(79,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',1,1,NULL),(80,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',1,1,NULL),(81,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',8,1,NULL),(82,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',44,1,NULL),(83,'','2020-05-22 13:43:40','2020-05-22 13:43:40','hover_description','0',6,1,NULL),(84,'','2020-05-22 13:43:40','2020-05-22 13:43:40','hover_description','0',6,1,NULL),(85,'','2020-05-22 13:43:40','2020-05-22 13:43:40','hover_description','0',6,1,NULL),(86,'','2020-05-22 13:43:40','2020-05-22 13:43:40','hover_description','0',6,1,NULL),(87,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',5,1,NULL),(88,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',44,1,NULL),(89,'','2020-05-22 13:43:40','2020-05-22 13:43:40',NULL,'0',1,1,NULL),(90,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',1,1,NULL),(91,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',1,1,NULL),(92,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',44,1,NULL),(93,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',25,1,NULL),(94,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',25,1,NULL),(95,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',25,1,NULL),(96,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',25,1,NULL),(97,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',31,1,NULL),(98,'','2020-05-22 13:43:41','2020-05-22 13:43:41',NULL,'0',1,1,NULL),(99,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',31,1,NULL),(100,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',1,1,NULL),(101,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',31,1,NULL),(102,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',1,1,NULL),(103,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',31,1,NULL),(104,'','2020-05-22 13:43:42','2020-05-22 13:43:42',NULL,'0',1,1,NULL),(105,'','2020-05-22 13:43:43','2020-05-22 13:43:43',NULL,'0',31,1,NULL),(106,'','2020-05-22 13:43:43','2020-05-22 13:43:43',NULL,'0',1,1,NULL),(107,'','2020-05-22 13:43:43','2020-05-22 13:43:43',NULL,'0',31,1,NULL),(108,'','2020-05-22 13:43:43','2020-05-22 13:43:43',NULL,'0',1,1,NULL),(109,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',8,1,NULL),(110,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',44,1,NULL),(111,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(112,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(113,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',5,1,NULL),(114,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',44,1,NULL),(115,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(116,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(117,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(118,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(119,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(120,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',25,1,NULL),(121,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',5,1,NULL),(122,'','2020-05-22 13:43:44','2020-05-22 13:43:44',NULL,'0',44,1,NULL),(123,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',3,1,NULL),(124,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',1,1,NULL),(125,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',23,1,NULL),(126,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',1,1,NULL),(127,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',23,1,NULL),(128,'','2020-05-22 13:43:45','2020-05-22 13:43:45',NULL,'0',1,1,NULL),(129,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',23,1,NULL),(130,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',1,1,NULL),(131,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',18,1,NULL),(132,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',8,1,NULL),(133,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',44,1,NULL),(134,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',35,1,NULL),(135,'','2020-05-22 13:43:46','2020-05-22 13:43:46',NULL,'0',1,1,NULL),(136,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',5,1,NULL),(137,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',44,1,NULL),(138,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',3,1,NULL),(139,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(140,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(141,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',17,1,NULL),(142,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(143,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',8,1,NULL),(144,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',44,1,NULL),(145,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',3,1,NULL),(146,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(147,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(148,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',5,1,NULL),(149,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',44,1,NULL),(150,'','2020-05-22 13:43:47','2020-05-22 13:43:47',NULL,'0',1,1,NULL),(151,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',1,1,NULL),(152,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',3,1,NULL),(153,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',1,1,NULL),(154,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',5,1,NULL),(155,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',44,1,NULL),(156,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',3,1,NULL),(157,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',1,1,NULL),(158,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',8,1,NULL),(159,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',3,1,NULL),(160,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',2,1,NULL),(161,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',44,1,NULL),(162,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',6,1,NULL),(163,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',6,1,NULL),(164,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',6,1,NULL),(165,'','2020-05-22 13:43:48','2020-05-22 13:43:48',NULL,'0',6,1,NULL),(166,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',6,1,NULL),(167,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',6,1,NULL),(168,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',5,1,NULL),(169,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',44,1,NULL),(170,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',1,1,NULL),(171,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',10,1,NULL),(172,'','2020-05-22 13:43:49','2020-05-22 13:43:49',NULL,'0',1,1,NULL),(173,'','2020-05-22 13:43:50','2020-05-22 13:43:50',NULL,'0',1,1,NULL),(174,'','2020-05-22 13:43:50','2020-05-22 13:43:50',NULL,'0',8,1,NULL),(175,'','2020-05-22 13:43:50','2020-05-22 13:43:50',NULL,'0',9,1,NULL),(176,'','2020-05-22 15:31:40','2020-05-22 15:31:40','','1',1,1,NULL),(177,'','2020-05-22 15:31:54','2020-05-22 15:31:54','','1',1,1,NULL),(178,'','2020-05-22 15:32:09','2020-05-22 15:32:09','','1',1,1,NULL),(179,'','2020-05-25 15:03:19','2020-05-25 15:03:19',NULL,'1',44,1,NULL); /*!40000 ALTER TABLE `Blocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `BlogExpressSearchIndexAttributes` -- DROP TABLE IF EXISTS `BlogExpressSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `BlogExpressSearchIndexAttributes` ( `exEntryID` int NOT NULL, `ak_BlogTitle` longtext COLLATE utf8mb4_unicode_ci, `ak_BlogCreatedDate` datetime DEFAULT NULL, `ak_BlogEmail` longtext COLLATE utf8mb4_unicode_ci, `ak_BlogBody` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`exEntryID`), CONSTRAINT `FK_E816F8E26DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BlogExpressSearchIndexAttributes` -- LOCK TABLES `BlogExpressSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `BlogExpressSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `BlogExpressSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventAttributeKeys` -- DROP TABLE IF EXISTS `CalendarEventAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventAttributeKeys` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_27F477CCB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventAttributeKeys` -- LOCK TABLES `CalendarEventAttributeKeys` WRITE; /*!40000 ALTER TABLE `CalendarEventAttributeKeys` DISABLE KEYS */; INSERT INTO `CalendarEventAttributeKeys` VALUES (26); /*!40000 ALTER TABLE `CalendarEventAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventOccurrences` -- DROP TABLE IF EXISTS `CalendarEventOccurrences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventOccurrences` ( `occurrenceID` int unsigned NOT NULL AUTO_INCREMENT, `startTime` int NOT NULL, `endTime` int NOT NULL, `cancelled` tinyint(1) NOT NULL, `repetitionID` int unsigned DEFAULT NULL, PRIMARY KEY (`occurrenceID`), KEY `IDX_7DD686EC31391E00` (`repetitionID`), KEY `eventdates` (`occurrenceID`,`startTime`,`endTime`), CONSTRAINT `FK_7DD686EC31391E00` FOREIGN KEY (`repetitionID`) REFERENCES `CalendarEventRepetitions` (`repetitionID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventOccurrences` -- LOCK TABLES `CalendarEventOccurrences` WRITE; /*!40000 ALTER TABLE `CalendarEventOccurrences` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventOccurrences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventRepetitions` -- DROP TABLE IF EXISTS `CalendarEventRepetitions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventRepetitions` ( `repetitionID` int unsigned NOT NULL AUTO_INCREMENT, `repetitionObject` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', PRIMARY KEY (`repetitionID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventRepetitions` -- LOCK TABLES `CalendarEventRepetitions` WRITE; /*!40000 ALTER TABLE `CalendarEventRepetitions` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventRepetitions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventSearchIndexAttributes` -- DROP TABLE IF EXISTS `CalendarEventSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventSearchIndexAttributes` ( `eventID` int unsigned NOT NULL DEFAULT '0', `ak_event_categories` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`eventID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventSearchIndexAttributes` -- LOCK TABLES `CalendarEventSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `CalendarEventSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventVersionAttributeValues` -- DROP TABLE IF EXISTS `CalendarEventVersionAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventVersionAttributeValues` ( `eventVersionID` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`eventVersionID`,`akID`), KEY `IDX_8C835B05403F5D6` (`eventVersionID`), KEY `IDX_8C835B05B6561A7E` (`akID`), KEY `IDX_8C835B05A2A82A5D` (`avID`), CONSTRAINT `FK_8C835B05403F5D6` FOREIGN KEY (`eventVersionID`) REFERENCES `CalendarEventVersions` (`eventVersionID`), CONSTRAINT `FK_8C835B05A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_8C835B05B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventVersionAttributeValues` -- LOCK TABLES `CalendarEventVersionAttributeValues` WRITE; /*!40000 ALTER TABLE `CalendarEventVersionAttributeValues` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventVersionAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventVersionOccurrences` -- DROP TABLE IF EXISTS `CalendarEventVersionOccurrences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventVersionOccurrences` ( `versionOccurrenceID` int unsigned NOT NULL AUTO_INCREMENT, `eventVersionID` int unsigned DEFAULT NULL, `occurrenceID` int unsigned DEFAULT NULL, PRIMARY KEY (`versionOccurrenceID`), KEY `IDX_60310489403F5D6` (`eventVersionID`), KEY `IDX_60310489B4FDDC0F` (`occurrenceID`), CONSTRAINT `FK_60310489403F5D6` FOREIGN KEY (`eventVersionID`) REFERENCES `CalendarEventVersions` (`eventVersionID`), CONSTRAINT `FK_60310489B4FDDC0F` FOREIGN KEY (`occurrenceID`) REFERENCES `CalendarEventOccurrences` (`occurrenceID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventVersionOccurrences` -- LOCK TABLES `CalendarEventVersionOccurrences` WRITE; /*!40000 ALTER TABLE `CalendarEventVersionOccurrences` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventVersionOccurrences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventVersionRepetitions` -- DROP TABLE IF EXISTS `CalendarEventVersionRepetitions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventVersionRepetitions` ( `versionRepetitionID` int unsigned NOT NULL AUTO_INCREMENT, `eventVersionID` int unsigned DEFAULT NULL, `repetitionID` int unsigned DEFAULT NULL, PRIMARY KEY (`versionRepetitionID`), KEY `IDX_C1C3D3DB403F5D6` (`eventVersionID`), KEY `IDX_C1C3D3DB31391E00` (`repetitionID`), CONSTRAINT `FK_C1C3D3DB31391E00` FOREIGN KEY (`repetitionID`) REFERENCES `CalendarEventRepetitions` (`repetitionID`), CONSTRAINT `FK_C1C3D3DB403F5D6` FOREIGN KEY (`eventVersionID`) REFERENCES `CalendarEventVersions` (`eventVersionID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventVersionRepetitions` -- LOCK TABLES `CalendarEventVersionRepetitions` WRITE; /*!40000 ALTER TABLE `CalendarEventVersionRepetitions` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventVersionRepetitions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventVersions` -- DROP TABLE IF EXISTS `CalendarEventVersions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventVersions` ( `eventVersionID` int unsigned NOT NULL AUTO_INCREMENT, `evDateAdded` datetime NOT NULL, `evActivateDateTime` datetime DEFAULT NULL, `evIsApproved` tinyint(1) NOT NULL, `evDescription` longtext COLLATE utf8mb4_unicode_ci, `evName` longtext COLLATE utf8mb4_unicode_ci, `evRelatedPageRelationType` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cID` int unsigned NOT NULL DEFAULT '0', `eventID` int unsigned DEFAULT NULL, `uID` int unsigned DEFAULT NULL, PRIMARY KEY (`eventVersionID`), KEY `IDX_8E26027410409BA4` (`eventID`), KEY `IDX_8E260274FD71026C` (`uID`), CONSTRAINT `FK_8E26027410409BA4` FOREIGN KEY (`eventID`) REFERENCES `CalendarEvents` (`eventID`), CONSTRAINT `FK_8E260274FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventVersions` -- LOCK TABLES `CalendarEventVersions` WRITE; /*!40000 ALTER TABLE `CalendarEventVersions` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventVersions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEventWorkflowProgress` -- DROP TABLE IF EXISTS `CalendarEventWorkflowProgress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEventWorkflowProgress` ( `wpID` int unsigned NOT NULL DEFAULT '0', `eventID` int unsigned NOT NULL, PRIMARY KEY (`eventID`,`wpID`), KEY `IDX_C5EAACF910409BA4` (`eventID`), KEY `wpID` (`wpID`), CONSTRAINT `FK_C5EAACF910409BA4` FOREIGN KEY (`eventID`) REFERENCES `CalendarEvents` (`eventID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEventWorkflowProgress` -- LOCK TABLES `CalendarEventWorkflowProgress` WRITE; /*!40000 ALTER TABLE `CalendarEventWorkflowProgress` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEventWorkflowProgress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarEvents` -- DROP TABLE IF EXISTS `CalendarEvents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarEvents` ( `eventID` int unsigned NOT NULL AUTO_INCREMENT, `caID` int unsigned DEFAULT NULL, PRIMARY KEY (`eventID`), KEY `IDX_7F23C55611C85723` (`caID`), CONSTRAINT `FK_7F23C55611C85723` FOREIGN KEY (`caID`) REFERENCES `Calendars` (`caID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarEvents` -- LOCK TABLES `CalendarEvents` WRITE; /*!40000 ALTER TABLE `CalendarEvents` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarEvents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarPermissionAssignments` -- DROP TABLE IF EXISTS `CalendarPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarPermissionAssignments` ( `pkID` int unsigned NOT NULL, `paID` int unsigned NOT NULL, `caID` int unsigned NOT NULL, PRIMARY KEY (`caID`,`pkID`,`paID`), KEY `IDX_5AD546AA11C85723` (`caID`), KEY `paID` (`paID`), KEY `pkID` (`pkID`), CONSTRAINT `FK_5AD546AA11C85723` FOREIGN KEY (`caID`) REFERENCES `Calendars` (`caID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarPermissionAssignments` -- LOCK TABLES `CalendarPermissionAssignments` WRITE; /*!40000 ALTER TABLE `CalendarPermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CalendarRelatedEvents` -- DROP TABLE IF EXISTS `CalendarRelatedEvents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CalendarRelatedEvents` ( `relatedEventID` int unsigned NOT NULL AUTO_INCREMENT, `relationID` int unsigned NOT NULL, `relationType` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `eventID` int unsigned DEFAULT NULL, PRIMARY KEY (`relatedEventID`), KEY `IDX_310130E910409BA4` (`eventID`), CONSTRAINT `FK_310130E910409BA4` FOREIGN KEY (`eventID`) REFERENCES `CalendarEvents` (`eventID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CalendarRelatedEvents` -- LOCK TABLES `CalendarRelatedEvents` WRITE; /*!40000 ALTER TABLE `CalendarRelatedEvents` DISABLE KEYS */; /*!40000 ALTER TABLE `CalendarRelatedEvents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Calendars` -- DROP TABLE IF EXISTS `Calendars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Calendars` ( `caID` int unsigned NOT NULL AUTO_INCREMENT, `caName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `caOverridePermissions` tinyint(1) NOT NULL DEFAULT '0', `eventPageAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enableMoreDetails` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `eventPageParentID` int unsigned DEFAULT '0', `eventPageTypeID` int unsigned DEFAULT '0', `eventPageAssociatedID` int unsigned DEFAULT '0', `siteID` int unsigned DEFAULT NULL, PRIMARY KEY (`caID`), KEY `IDX_62E00AC521D8435` (`siteID`), CONSTRAINT `FK_62E00AC521D8435` FOREIGN KEY (`siteID`) REFERENCES `Sites` (`siteID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Calendars` -- LOCK TABLES `Calendars` WRITE; /*!40000 ALTER TABLE `Calendars` DISABLE KEYS */; /*!40000 ALTER TABLE `Calendars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CampaignHandlerExpressSearchIndexAttributes` -- DROP TABLE IF EXISTS `CampaignHandlerExpressSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CampaignHandlerExpressSearchIndexAttributes` ( `exEntryID` int NOT NULL, `ak_campaign_title_handler` longtext COLLATE utf8mb4_unicode_ci, `ak_campaign_date_handler` datetime DEFAULT NULL, `ak_campaign_body` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`exEntryID`), CONSTRAINT `FK_68BFC3E96DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CampaignHandlerExpressSearchIndexAttributes` -- LOCK TABLES `CampaignHandlerExpressSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `CampaignHandlerExpressSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `CampaignHandlerExpressSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionAttributeKeys` -- DROP TABLE IF EXISTS `CollectionAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionAttributeKeys` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_1E3E5B79B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionAttributeKeys` -- LOCK TABLES `CollectionAttributeKeys` WRITE; /*!40000 ALTER TABLE `CollectionAttributeKeys` DISABLE KEYS */; INSERT INTO `CollectionAttributeKeys` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(20),(21),(22),(23),(24),(25),(27),(28),(29); /*!40000 ALTER TABLE `CollectionAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionAttributeValues` -- DROP TABLE IF EXISTS `CollectionAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionAttributeValues` ( `cID` int unsigned NOT NULL, `cvID` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`cID`,`cvID`,`akID`), KEY `IDX_BB9995FCB6561A7E` (`akID`), KEY `IDX_BB9995FCA2A82A5D` (`avID`), CONSTRAINT `FK_BB9995FCA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_BB9995FCB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionAttributeValues` -- LOCK TABLES `CollectionAttributeValues` WRITE; /*!40000 ALTER TABLE `CollectionAttributeValues` DISABLE KEYS */; INSERT INTO `CollectionAttributeValues` VALUES (2,1,6,1),(3,1,3,2),(4,1,3,3),(5,1,3,4),(6,1,3,5),(8,1,3,6),(9,1,3,7),(10,1,3,8),(11,1,7,9),(11,1,3,10),(12,1,3,11),(13,1,3,12),(14,1,3,13),(15,1,3,14),(16,1,3,15),(16,1,7,16),(17,1,3,17),(17,1,7,18),(19,1,3,19),(20,1,3,20),(22,1,3,21),(25,1,3,22),(26,1,3,23),(27,1,7,24),(27,1,12,25),(28,1,3,26),(29,1,3,27),(30,1,3,28),(32,1,3,29),(33,1,3,30),(33,1,7,31),(35,1,7,32),(36,1,7,33),(37,1,7,34),(38,1,7,35),(39,1,7,36),(40,1,7,37),(42,1,7,38),(43,1,3,39),(44,1,3,40),(45,1,3,41),(48,1,7,42),(48,1,12,43),(50,1,7,44),(50,1,12,45),(53,1,6,46),(55,1,3,47),(57,1,7,48),(57,1,12,49),(57,1,3,50),(58,1,3,51),(59,1,3,52),(60,1,3,53),(61,1,3,54),(62,1,3,55),(62,1,7,56),(63,1,3,57),(64,1,3,58),(65,1,3,59),(67,1,3,60),(68,1,3,61),(69,1,3,62),(70,1,3,63),(71,1,3,64),(72,1,3,65),(73,1,3,66),(73,1,7,67),(74,1,3,68),(75,1,3,69),(75,1,7,70),(75,1,12,71),(76,1,3,72),(79,1,7,73),(79,1,12,74),(80,1,7,75),(80,1,12,76),(81,1,7,77),(81,1,12,78),(82,1,7,79),(82,1,12,80),(83,1,7,81),(83,1,12,82),(85,1,3,83),(91,1,3,84),(92,1,3,85),(93,1,3,86),(94,1,3,87),(95,1,3,88),(97,1,3,89),(98,1,3,90),(99,1,3,91),(100,1,7,92),(100,1,3,93),(101,1,3,94),(102,1,3,95),(103,1,3,96),(105,1,3,97),(106,1,3,98),(107,1,3,99),(108,1,3,100),(110,1,3,101),(111,1,3,102),(115,1,3,103),(116,1,7,104),(117,1,3,105),(118,1,3,106),(119,1,3,107),(120,1,3,108),(122,1,3,109),(123,1,3,110),(124,1,3,111),(125,1,3,112),(126,1,3,113),(129,1,3,114),(130,1,3,115),(131,1,3,116),(132,1,3,117),(133,1,3,118),(134,1,3,119),(135,1,3,120),(141,1,3,121),(142,1,3,122),(143,1,3,123),(144,1,3,124),(146,1,3,125),(147,1,3,126),(148,1,3,127),(149,1,3,128),(151,1,12,129),(152,1,3,130),(153,1,3,131),(154,1,3,132),(155,1,3,133),(156,1,3,134),(157,1,3,135),(158,1,3,136),(160,1,3,137),(162,1,3,138),(163,1,7,139),(163,1,12,140),(164,1,4,141),(164,1,5,142),(164,1,7,143),(166,1,6,144),(168,1,6,145),(171,1,6,146),(177,1,6,147),(178,1,4,148),(178,1,5,149),(178,1,7,150),(1,1,7,183),(1,2,7,183),(190,1,22,184),(190,2,22,184),(198,1,11,185),(198,1,23,186),(198,1,25,187),(198,1,27,188),(198,1,28,189),(198,1,29,190),(199,1,23,191),(199,1,25,192),(199,1,27,193),(199,1,28,194),(199,1,29,195),(200,1,11,196),(200,1,23,197),(200,1,25,198),(200,1,27,199),(200,1,28,200),(200,1,29,201),(201,1,11,202),(201,1,23,203),(201,1,25,204),(201,1,27,205),(201,1,28,206),(201,1,29,207),(202,1,23,208),(202,1,25,209),(202,1,27,210),(202,1,28,211),(202,1,29,212),(203,1,23,213),(203,1,25,214),(203,1,27,215),(203,1,28,216),(203,1,29,217),(193,1,22,218),(205,1,1,219),(205,1,2,220),(205,1,3,221),(205,1,9,222),(205,1,13,223),(205,1,23,224),(205,1,24,225),(206,1,23,226),(206,1,24,227),(207,1,23,228),(207,1,24,229),(194,1,1,230),(194,1,2,231),(194,1,3,232),(194,1,7,233),(194,1,9,234),(194,1,13,235),(196,1,7,236),(212,1,1,237),(212,1,2,238),(212,1,3,239),(212,1,9,240),(212,1,13,241),(212,1,20,242),(212,1,21,243),(213,1,1,244),(213,1,2,245),(213,1,3,246),(213,1,9,247),(213,1,13,248),(213,1,20,249),(213,1,21,250); /*!40000 ALTER TABLE `CollectionAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionSearchIndexAttributes` -- DROP TABLE IF EXISTS `CollectionSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionSearchIndexAttributes` ( `cID` int unsigned NOT NULL, `ak_meta_title` longtext COLLATE utf8mb4_unicode_ci, `ak_meta_description` longtext COLLATE utf8mb4_unicode_ci, `ak_meta_keywords` longtext COLLATE utf8mb4_unicode_ci, `ak_desktop_priority` decimal(14,4) DEFAULT '0.0000', `ak_is_desktop` tinyint(1) DEFAULT '0', `ak_icon_dashboard` longtext COLLATE utf8mb4_unicode_ci, `ak_exclude_nav` tinyint(1) DEFAULT '0', `ak_exclude_page_list` tinyint(1) DEFAULT '0', `ak_header_extra_content` longtext COLLATE utf8mb4_unicode_ci, `ak_tags` longtext COLLATE utf8mb4_unicode_ci, `ak_is_featured` tinyint(1) DEFAULT '0', `ak_exclude_search_index` tinyint(1) DEFAULT '0', `ak_exclude_sitemapxml` tinyint(1) DEFAULT '0', `ak_job_posting_department` longtext COLLATE utf8mb4_unicode_ci, `ak_job_location` longtext COLLATE utf8mb4_unicode_ci, `ak_exclude_subpages_from_nav` tinyint(1) DEFAULT '0', `ak_thumbnail` int DEFAULT '0', `ak_blog_entry_topics` longtext COLLATE utf8mb4_unicode_ci, `ak_project_topics` longtext COLLATE utf8mb4_unicode_ci, `ak_project_client` longtext COLLATE utf8mb4_unicode_ci, `ak_project_tasks` longtext COLLATE utf8mb4_unicode_ci, `ak_project_skills` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`cID`), CONSTRAINT `FK_FD84E56FE5DADDAE` FOREIGN KEY (`cID`) REFERENCES `Collections` (`cID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionSearchIndexAttributes` -- LOCK TABLES `CollectionSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `CollectionSearchIndexAttributes` DISABLE KEYS */; INSERT INTO `CollectionSearchIndexAttributes` VALUES (1,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(2,NULL,NULL,NULL,0.0000,0,'fa fa-th-large',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(3,NULL,NULL,'pages, add page, delete page, copy, move, alias',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(4,NULL,NULL,'pages, add page, delete page, copy, move, alias',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(5,NULL,NULL,'pages, add page, delete page, copy, move, alias, bulk',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(6,NULL,NULL,'find page, search page, search, find, pages, sitemap',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(8,NULL,NULL,'add file, delete file, copy, move, alias, resize, crop, rename, images, title, attribute',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(9,NULL,NULL,'file, file attributes, title, attribute, description, rename',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(10,NULL,NULL,'files, category, categories',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(11,NULL,NULL,'new file set',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(12,NULL,NULL,'users, groups, people, find, delete user, remove user, change password, password',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(13,NULL,NULL,'find, search, people, delete user, remove user, change password, password',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(14,NULL,NULL,'user, group, people, permissions, expire, badges',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(15,NULL,NULL,'user attributes, user data, gather data, registration data',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(16,NULL,NULL,'new user, create',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(17,NULL,NULL,'new user group, new group, group, create',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(19,NULL,NULL,'group set',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(20,NULL,NULL,'community, points, karma',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(22,NULL,NULL,'action, community actions',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(25,NULL,NULL,'forms, log, error, email, mysql, exception, survey',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(26,NULL,NULL,'forms, questions, response, data',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(27,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(28,NULL,NULL,'questions, quiz, response',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(29,NULL,NULL,'forms, log, error, email, mysql, exception, survey, history',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(30,NULL,NULL,'changes, csv, report',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(32,NULL,NULL,'new theme, theme, active theme, change theme, template, css',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(33,NULL,NULL,'page types',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(35,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(36,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(37,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(38,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(39,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(40,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(42,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(43,NULL,NULL,'page attributes, custom',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(44,NULL,NULL,'single, page, custom, application',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(45,NULL,NULL,'atom, rss, feed, syndication',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(48,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(50,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(53,NULL,NULL,NULL,0.0000,0,'icon-bullhorn',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(55,NULL,NULL,'stacks, global areas, reusable content, scrapbook, copy, paste, paste block, copy block, site name, logo',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(57,NULL,NULL,'edit stacks, view stacks, all stacks',0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(58,NULL,NULL,'block, refresh, custom',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(59,NULL,NULL,'add-on, addon, add on, package, app, ecommerce, discussions, forums, themes, templates, blocks',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(60,NULL,NULL,'add-on, addon, ecommerce, install, discussions, forums, themes, templates, blocks',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(61,NULL,NULL,'update, upgrade',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(62,NULL,NULL,'concrete5.org, my account, marketplace',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(63,NULL,NULL,'buy theme, new theme, marketplace, template',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(64,NULL,NULL,'buy addon, buy add on, buy add-on, purchase addon, purchase add on, purchase add-on, find addon, new addon, marketplace',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(65,NULL,NULL,'dashboard, configuration',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(67,NULL,NULL,'website name, title',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(68,NULL,NULL,'accessibility, easy mode',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(69,NULL,NULL,'sharing, facebook, twitter',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(70,NULL,NULL,'logo, favicon, iphone, icon, bookmark',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(71,NULL,NULL,'tinymce, content block, fonts, editor, content, overlay',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(72,NULL,NULL,'translate, translation, internationalization, multilingual',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(73,NULL,NULL,'languages, update, gettext, translation, translate',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(74,NULL,NULL,'timezone, profile, locale',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(75,NULL,NULL,'site attributes',0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(76,NULL,NULL,'checkin, check-in, check, force',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(79,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(80,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(81,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(82,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(83,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(85,NULL,NULL,'multilingual, localization, internationalization, i18n',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(91,NULL,NULL,'vanity, pretty url, redirection, hostname, canonical, seo, pageview, view',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(92,NULL,NULL,'bulk, seo, change keywords, engine, optimization, search',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(93,NULL,NULL,'traffic, statistics, google analytics, quant, pageviews, hits',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(94,NULL,NULL,'pretty, slug',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(95,NULL,NULL,'configure search, site search, search option',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(97,NULL,NULL,'security, files, media, extension, manager, upload',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(98,NULL,NULL,'file options, file manager, upload, modify',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(99,NULL,NULL,'images, picture, responsive, retina',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(100,NULL,NULL,'thumbnail, format, png, jpg, jpeg, quality, compression, gd, imagick, imagemagick, transparency',0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(101,NULL,NULL,'uploading, upload, images, image, resizing, manager, exif, rotation, rotate, quality, compression, png, jpg, jpeg',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(102,NULL,NULL,'security, alternate storage, hide files',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(103,NULL,NULL,'files, export, csv, bom, encoding',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(105,NULL,NULL,'cache option, change cache, override, turn on cache, turn off cache, no cache, page cache, caching',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(106,NULL,NULL,'cache option, turn off cache, no cache, page cache, caching',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(107,NULL,NULL,'index search, reindex search, build sitemap, sitemap.xml, clear old versions, page versions, remove old',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(108,NULL,NULL,'queries, database, mysql',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(110,NULL,NULL,'editors, hide site, offline, private, public, access',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(111,NULL,NULL,'security, actions, administrator, admin, package, marketplace, search',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(115,NULL,NULL,'security, lock ip, lock out, block ip, address, restrict, access',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(116,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(117,NULL,NULL,'security, registration',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(118,NULL,NULL,'antispam, block spam, security',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(119,NULL,NULL,'lock site, under construction, hide, hidden',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(120,NULL,NULL,'trusted, proxy, proxies, ip, header, cloudflare',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(122,NULL,NULL,'signup, new user, community, public registration, public, registration',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(123,NULL,NULL,'profile, login, redirect, specific, dashboard, administrators',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(124,NULL,NULL,'member profile, member page, community, forums, social, avatar',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(125,NULL,NULL,'auth, authentication, types, oauth, facebook, login, registration',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(126,NULL,NULL,'global, password, reset, change password, force, sign out',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(129,NULL,NULL,'login, logout, user, agent, ip, change, security, session, invalidation, invalid',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(130,NULL,NULL,'password, requirements, code, key, login, registration, security, nist',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(131,NULL,NULL,'smtp, mail settings',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(132,NULL,NULL,'email server, mail settings, mail configuration, external, internal',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(133,NULL,NULL,'test smtp, test mail',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(134,NULL,NULL,'email server, mail settings, mail configuration, private message, message system, import, email, message',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(135,NULL,NULL,'mail settings, mail configuration, email, sender',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(141,NULL,NULL,'conversations',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(142,NULL,NULL,'conversations',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(143,NULL,NULL,'conversations ratings, ratings, community, community points',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(144,NULL,NULL,'conversations bad words, banned words, banned, bad words, bad, words, list',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(146,NULL,NULL,'attribute configuration',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(147,NULL,NULL,'attributes, types',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(148,NULL,NULL,'attributes, sets',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(149,NULL,NULL,'topics, tags, taxonomy',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(151,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(152,NULL,NULL,'overrides, system info, debug, support, help',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(153,NULL,NULL,'errors, exceptions, develop, support, help',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(154,NULL,NULL,'email, logging, logs, smtp, pop, errors, mysql, log',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(155,NULL,NULL,'network, proxy server',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(156,NULL,NULL,'database, entities, doctrine, orm',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(157,NULL,NULL,'database, character set, charset, collation, utf8',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(158,NULL,NULL,'geolocation, ip, address, country, nation, place, locate',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(160,NULL,NULL,'upgrade, new version, update',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(162,NULL,NULL,'API, programming, public, app',0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(163,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,1,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(164,NULL,NULL,NULL,2.0000,1,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(166,NULL,NULL,NULL,0.0000,0,'fa fa-th',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(168,NULL,NULL,NULL,0.0000,0,'fa fa-trash-o',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(171,NULL,NULL,NULL,0.0000,0,'fa fa-briefcase',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(177,NULL,NULL,NULL,0.0000,0,'fa fa-edit',0,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(178,NULL,NULL,NULL,1.0000,1,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(190,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL),(193,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL),(194,'','','',0.0000,0,NULL,1,0,'',NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(196,NULL,NULL,NULL,0.0000,0,NULL,1,0,NULL,NULL,0,0,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL),(198,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,1,0,0,NULL,NULL,0,10,NULL,'||/Homework||','Test Client','\nArchitecture\nDesign\nProduction\n','\nHTML\nJavaScript\nPHP\n'),(199,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,5,NULL,'||/Activities||','Test Client','\nArchitecture\n','\nPHP\n'),(200,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,1,0,0,NULL,NULL,0,8,NULL,'||/Homework||','Test Client 2','\nMultimedia\nProduction\nDevelopment\n','\nPHP\nHTML\nCSS\nJavaScript\n'),(201,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,1,0,0,NULL,NULL,0,7,NULL,'||/Homework||','Test Client 2','\nDesign\n','\nPhotoshop\n'),(202,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,2,NULL,'||/Homework||','Test Client 2','\nDesign\n','\nPhotoshop\n'),(203,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,4,NULL,'||/Homework||','Test Client 2','\nDesign\n','\nPhotoshop\n'),(205,'','','',0.0000,0,NULL,0,0,'',NULL,0,0,0,NULL,NULL,0,16,'||/Projects||',NULL,NULL,NULL,NULL),(206,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,11,'||/Humor||',NULL,NULL,NULL,NULL),(207,NULL,NULL,NULL,0.0000,0,NULL,0,0,NULL,NULL,0,0,0,NULL,NULL,0,15,'||/Projects||',NULL,NULL,NULL,NULL),(212,'','','',0.0000,0,NULL,0,0,'',NULL,0,0,0,'\nTechnical and Operations\n','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla massa lacus, vehicula eu interdum convallis, laoreet id lectus. Nunc turpis elit, aliquam sit amet aliquam tincidunt, dapibus vel tellus. ',0,0,NULL,NULL,NULL,NULL,NULL),(213,'','','',0.0000,0,NULL,0,0,'',NULL,0,0,0,'\nMarketing and Sales\n','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla massa lacus, vehicula eu interdum convallis, laoreet id lectus. Nunc turpis elit, aliquam sit amet aliquam tincidunt, dapibus vel tellus. ',0,0,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `CollectionSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionAreaStyles` -- DROP TABLE IF EXISTS `CollectionVersionAreaStyles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionAreaStyles` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `issID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`arHandle`), KEY `issID` (`issID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionAreaStyles` -- LOCK TABLES `CollectionVersionAreaStyles` WRITE; /*!40000 ALTER TABLE `CollectionVersionAreaStyles` DISABLE KEYS */; INSERT INTO `CollectionVersionAreaStyles` VALUES (1,1,'Page Footer',15),(1,2,'Page Footer',15),(188,1,'Page Footer',16); /*!40000 ALTER TABLE `CollectionVersionAreaStyles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionBlockStyles` -- DROP TABLE IF EXISTS `CollectionVersionBlockStyles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionBlockStyles` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `bID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `issID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`arHandle`), KEY `bID` (`bID`,`issID`), KEY `issID` (`issID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionBlockStyles` -- LOCK TABLES `CollectionVersionBlockStyles` WRITE; /*!40000 ALTER TABLE `CollectionVersionBlockStyles` DISABLE KEYS */; INSERT INTO `CollectionVersionBlockStyles` VALUES (164,1,13,'Main',1),(204,1,24,'Sidebar',2),(205,1,24,'Sidebar',2),(206,1,24,'Sidebar',2),(207,1,24,'Sidebar',2),(204,1,25,'Sidebar',3),(205,1,25,'Sidebar',3),(206,1,25,'Sidebar',3),(207,1,25,'Sidebar',3),(211,1,31,'Sidebar',4),(212,1,31,'Sidebar',4),(213,1,31,'Sidebar',4),(192,1,50,'Main : 13',5),(193,1,50,'Main : 13',5),(192,1,51,'Main : 14',6),(193,1,51,'Main : 14',6),(192,1,52,'Main : 14',7),(193,1,52,'Main : 14',7),(189,1,54,'Main',8),(190,1,54,'Main',8),(190,2,54,'Page Footer',8),(1,1,66,'Main : 15',9),(1,2,66,'Main : 15',9),(1,1,67,'Main : 16',10),(1,2,67,'Main : 16',10),(1,1,68,'Main : 17',11),(1,2,68,'Main : 17',11),(1,1,70,'Main',12),(1,2,70,'Main',12),(1,1,77,'Main : 20',13),(1,2,77,'Main : 20',13),(1,1,78,'Main : 21',14),(1,2,78,'Main : 21',14),(191,1,111,'Main : 31',17),(191,1,112,'Main : 32',18),(191,1,115,'Main : 33',19),(191,1,116,'Main : 33',20),(191,1,117,'Main : 34',21),(191,1,118,'Main : 34',22),(191,1,119,'Main : 35',23),(191,1,120,'Main : 35',24),(191,1,123,'Main : 36',25),(195,1,138,'Main : 40',26),(208,1,156,'Main : 47',27),(209,1,171,'Main : 53',28),(180,2,176,'Main',29),(180,3,177,'Main',30); /*!40000 ALTER TABLE `CollectionVersionBlockStyles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionBlocks` -- DROP TABLE IF EXISTS `CollectionVersionBlocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionBlocks` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `bID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `cbRelationID` int unsigned DEFAULT '0', `cbDisplayOrder` int unsigned NOT NULL DEFAULT '0', `isOriginal` tinyint(1) NOT NULL DEFAULT '0', `cbOverrideAreaPermissions` tinyint(1) NOT NULL DEFAULT '0', `cbIncludeAll` tinyint(1) NOT NULL DEFAULT '0', `cbOverrideBlockTypeCacheSettings` tinyint(1) NOT NULL DEFAULT '0', `cbOverrideBlockTypeContainerSettings` tinyint(1) NOT NULL DEFAULT '0', `cbEnableBlockContainer` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`arHandle`), KEY `bID` (`bID`,`cID`), KEY `cbRelationID` (`cbRelationID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionBlocks` -- LOCK TABLES `CollectionVersionBlocks` WRITE; /*!40000 ALTER TABLE `CollectionVersionBlocks` DISABLE KEYS */; INSERT INTO `CollectionVersionBlocks` VALUES (1,1,64,'Main',64,0,1,0,0,0,0,0),(1,1,65,'Main',65,1,1,0,0,0,0,0),(1,1,66,'Main : 15',66,0,1,0,0,0,0,0),(1,1,67,'Main : 16',67,0,1,0,0,0,0,0),(1,1,68,'Main : 17',68,0,1,0,0,0,0,0),(1,1,69,'Main',69,2,1,0,0,0,0,0),(1,1,70,'Main',70,3,1,0,0,0,0,0),(1,1,71,'Main',71,4,1,0,0,0,0,0),(1,1,72,'Main',72,5,1,0,0,0,0,0),(1,1,73,'Main',73,6,1,0,0,0,0,0),(1,1,74,'Main : 18',74,0,1,0,0,0,0,0),(1,1,75,'Main : 19',75,0,1,0,0,0,0,0),(1,1,76,'Main',76,7,1,0,0,0,0,0),(1,1,77,'Main : 20',77,0,1,0,0,0,0,0),(1,1,78,'Main : 21',78,0,1,0,0,0,0,0),(1,1,79,'Main : 22',79,0,1,0,0,0,0,0),(1,1,80,'Page Footer',80,0,1,0,0,0,0,0),(1,2,64,'Main',64,0,0,0,0,0,0,0),(1,2,66,'Main : 15',66,0,0,0,0,0,0,0),(1,2,67,'Main : 16',67,0,0,0,0,0,0,0),(1,2,68,'Main : 17',68,0,0,0,0,0,0,0),(1,2,69,'Main',69,2,0,0,0,0,0,0),(1,2,70,'Main',70,3,0,0,0,0,0,0),(1,2,71,'Main',71,4,0,0,0,0,0,0),(1,2,72,'Main',72,5,0,0,0,0,0,0),(1,2,73,'Main',73,6,0,0,0,0,0,0),(1,2,74,'Main : 18',74,0,0,0,0,0,0,0),(1,2,75,'Main : 19',75,0,0,0,0,0,0,0),(1,2,76,'Main',76,7,0,0,0,0,0,0),(1,2,77,'Main : 20',77,0,0,0,0,0,0,0),(1,2,78,'Main : 21',78,0,0,0,0,0,0,0),(1,2,79,'Main : 22',79,0,0,0,0,0,0,0),(1,2,80,'Page Footer',80,0,0,0,0,0,0,0),(1,2,179,'Main',65,1,1,0,0,0,0,0),(164,1,1,'Main',1,0,1,0,0,0,0,0),(164,1,2,'Main',2,1,1,0,0,0,0,0),(164,1,3,'Main : 1',3,0,1,0,0,0,0,0),(164,1,4,'Main : 2',4,0,1,0,0,0,0,0),(164,1,5,'Main : 3',5,0,1,0,0,0,0,0),(164,1,6,'Main',6,2,1,0,0,0,0,0),(164,1,7,'Main : 4',7,0,1,0,0,0,0,0),(164,1,8,'Main : 5',8,0,1,0,0,0,0,0),(164,1,9,'Main',9,3,1,0,0,0,0,0),(164,1,10,'Main : 6',10,0,1,0,0,0,0,0),(164,1,11,'Main : 7',11,0,1,0,0,0,0,0),(164,1,12,'Main : 8',12,0,1,0,0,0,0,0),(164,1,13,'Main',13,4,1,0,0,0,0,0),(165,1,14,'Main',14,0,1,0,0,0,0,0),(165,1,15,'Main : 9',15,0,1,0,0,0,0,0),(165,1,16,'Main',16,1,1,0,0,0,0,0),(165,1,17,'Main : 10',17,0,1,0,0,0,0,0),(178,1,18,'Main',18,0,1,0,0,0,0,0),(178,1,19,'Main : 11',19,0,1,0,0,0,0,0),(178,1,20,'Main',20,1,1,0,0,0,0,0),(178,1,21,'Main : 12',21,0,1,0,0,0,0,0),(179,1,56,'Main',56,0,1,0,0,0,0,0),(180,1,57,'Main',57,0,1,0,0,0,0,0),(180,2,176,'Main',57,0,1,0,0,0,0,0),(180,3,177,'Main',57,0,1,0,0,0,0,0),(180,4,178,'Main',57,0,1,0,0,0,0,0),(181,1,58,'Main',58,0,1,0,0,0,0,0),(182,1,59,'Main',59,0,1,0,0,0,0,0),(183,1,60,'Main',60,0,1,0,0,0,0,0),(184,1,61,'Main',61,0,1,0,0,1,0,0),(185,1,62,'Main',62,0,1,0,0,0,0,0),(186,1,63,'Main',63,0,1,0,0,0,0,0),(188,1,81,'Main',81,0,1,0,0,0,0,0),(188,1,82,'Main',82,1,1,0,0,0,0,0),(188,1,83,'Main : 23',83,0,1,0,0,0,0,0),(188,1,84,'Main : 24',84,0,1,0,0,0,0,0),(188,1,85,'Main : 25',85,0,1,0,0,0,0,0),(188,1,86,'Main : 26',86,0,1,0,0,0,0,0),(188,1,87,'Main',87,2,1,0,0,0,0,0),(188,1,88,'Main',88,3,1,0,0,0,0,0),(188,1,89,'Main : 27',89,0,1,0,0,0,0,0),(188,1,90,'Main : 28',90,0,1,0,0,0,0,0),(188,1,91,'Page Footer',91,0,1,0,0,0,0,0),(188,1,92,'Page Footer',92,1,1,0,0,0,0,0),(188,1,93,'Page Footer : 29',93,0,1,0,0,0,0,0),(188,1,94,'Page Footer : 29',94,1,1,0,0,0,0,0),(188,1,95,'Page Footer : 30',95,0,1,0,0,0,0,0),(188,1,96,'Page Footer : 30',96,1,1,0,0,0,0,0),(189,1,53,'Main',53,0,1,0,0,0,0,0),(189,1,54,'Main',54,1,1,0,0,0,0,0),(189,1,55,'Main',55,2,1,0,0,0,0,0),(190,1,53,'Main',53,0,0,0,0,0,0,0),(190,1,54,'Main',54,1,0,0,0,0,0,0),(190,1,55,'Main',55,2,0,0,0,0,0,0),(190,2,53,'Main',53,0,0,0,0,0,0,0),(190,2,54,'Page Footer',54,0,0,0,0,0,0,0),(190,2,55,'Page Footer',55,1,0,0,0,0,0,0),(191,1,109,'Main',109,0,1,0,0,0,0,0),(191,1,110,'Main',110,1,1,0,0,0,0,0),(191,1,111,'Main : 31',111,0,1,0,0,0,0,0),(191,1,112,'Main : 32',112,0,1,0,0,0,0,0),(191,1,113,'Main',113,2,1,0,0,0,0,0),(191,1,114,'Main',114,3,1,0,0,0,0,0),(191,1,115,'Main : 33',115,0,1,0,0,0,0,0),(191,1,116,'Main : 33',116,1,1,0,0,0,0,0),(191,1,117,'Main : 34',117,0,1,0,0,0,0,0),(191,1,118,'Main : 34',118,1,1,0,0,0,0,0),(191,1,119,'Main : 35',119,0,1,0,0,0,0,0),(191,1,120,'Main : 35',120,1,1,0,0,0,0,0),(191,1,121,'Main',121,4,1,0,0,0,0,0),(191,1,122,'Main',122,5,1,0,0,0,0,0),(191,1,123,'Main : 36',123,0,1,0,0,0,0,0),(191,1,124,'Main : 37',124,0,1,0,0,0,0,0),(192,1,48,'Main',48,0,1,0,0,0,0,0),(192,1,49,'Main',49,1,1,0,0,0,0,0),(192,1,50,'Main : 13',50,0,1,0,0,0,0,0),(192,1,51,'Main : 14',51,0,1,0,0,0,0,0),(192,1,52,'Main : 14',52,1,1,0,0,0,0,0),(193,1,48,'Main',48,0,0,0,0,0,0,0),(193,1,49,'Main',49,1,0,0,0,0,0,0),(193,1,50,'Main : 13',50,0,0,0,0,0,0,0),(193,1,51,'Main : 14',51,0,0,0,0,0,0,0),(193,1,52,'Main : 14',52,1,0,0,0,0,0,0),(194,1,131,'Main',131,0,1,0,0,0,0,0),(195,1,132,'Main',132,0,1,0,0,0,0,0),(195,1,133,'Main',133,1,1,0,0,0,0,0),(195,1,134,'Main : 38',134,0,1,0,0,0,0,0),(195,1,135,'Main : 39',135,0,1,0,0,0,0,0),(195,1,136,'Main',136,2,1,0,0,0,0,0),(195,1,137,'Main',137,3,1,0,0,0,0,0),(195,1,138,'Main : 40',138,0,1,0,0,0,0,0),(195,1,139,'Main : 41',139,0,1,0,0,0,0,0),(195,1,140,'Main : 42',140,0,1,0,0,0,0,0),(195,1,141,'Main : 42',141,1,1,0,0,0,0,0),(196,1,142,'Main',142,0,1,0,0,0,0,0),(197,1,40,'Page Header',40,0,1,0,0,0,0,0),(197,1,41,'Page Header',41,1,1,0,0,0,0,0),(197,1,42,'Sidebar',42,0,1,0,0,0,0,0),(197,1,43,'Sidebar',43,1,1,0,0,0,0,0),(197,1,44,'Sidebar',44,2,1,0,0,0,0,0),(197,1,45,'Main',45,0,1,0,0,0,0,0),(197,1,46,'Page Footer',46,0,1,0,0,0,0,0),(197,1,47,'Page Footer',47,1,1,0,0,0,0,0),(198,1,40,'Page Header',40,0,0,0,0,0,0,0),(198,1,42,'Sidebar',42,0,0,0,0,0,0,0),(198,1,43,'Sidebar',43,1,0,0,0,0,0,0),(198,1,44,'Sidebar',44,2,0,0,0,0,0,0),(198,1,46,'Page Footer',46,0,0,0,0,0,0,0),(198,1,47,'Page Footer',47,1,0,0,0,0,0,0),(198,1,97,'Page Header',97,1,1,0,0,0,0,0),(198,1,98,'Main',98,0,1,0,0,0,0,0),(199,1,40,'Page Header',40,0,0,0,0,0,0,0),(199,1,42,'Sidebar',42,0,0,0,0,0,0,0),(199,1,43,'Sidebar',43,1,0,0,0,0,0,0),(199,1,44,'Sidebar',44,2,0,0,0,0,0,0),(199,1,46,'Page Footer',46,0,0,0,0,0,0,0),(199,1,47,'Page Footer',47,1,0,0,0,0,0,0),(199,1,99,'Page Header',99,1,1,0,0,0,0,0),(199,1,100,'Main',100,0,1,0,0,0,0,0),(200,1,40,'Page Header',40,0,0,0,0,0,0,0),(200,1,42,'Sidebar',42,0,0,0,0,0,0,0),(200,1,43,'Sidebar',43,1,0,0,0,0,0,0),(200,1,44,'Sidebar',44,2,0,0,0,0,0,0),(200,1,46,'Page Footer',46,0,0,0,0,0,0,0),(200,1,47,'Page Footer',47,1,0,0,0,0,0,0),(200,1,101,'Page Header',101,1,1,0,0,0,0,0),(200,1,102,'Main',102,0,1,0,0,0,0,0),(201,1,40,'Page Header',40,0,0,0,0,0,0,0),(201,1,42,'Sidebar',42,0,0,0,0,0,0,0),(201,1,43,'Sidebar',43,1,0,0,0,0,0,0),(201,1,44,'Sidebar',44,2,0,0,0,0,0,0),(201,1,46,'Page Footer',46,0,0,0,0,0,0,0),(201,1,47,'Page Footer',47,1,0,0,0,0,0,0),(201,1,103,'Page Header',103,1,1,0,0,0,0,0),(201,1,104,'Main',104,0,1,0,0,0,0,0),(202,1,40,'Page Header',40,0,0,0,0,0,0,0),(202,1,42,'Sidebar',42,0,0,0,0,0,0,0),(202,1,43,'Sidebar',43,1,0,0,0,0,0,0),(202,1,44,'Sidebar',44,2,0,0,0,0,0,0),(202,1,46,'Page Footer',46,0,0,0,0,0,0,0),(202,1,47,'Page Footer',47,1,0,0,0,0,0,0),(202,1,105,'Page Header',105,1,1,0,0,0,0,0),(202,1,106,'Main',106,0,1,0,0,0,0,0),(203,1,40,'Page Header',40,0,0,0,0,0,0,0),(203,1,42,'Sidebar',42,0,0,0,0,0,0,0),(203,1,43,'Sidebar',43,1,0,0,0,0,0,0),(203,1,44,'Sidebar',44,2,0,0,0,0,0,0),(203,1,46,'Page Footer',46,0,0,0,0,0,0,0),(203,1,47,'Page Footer',47,1,0,0,0,0,0,0),(203,1,107,'Page Header',107,1,1,0,0,0,0,0),(203,1,108,'Main',108,0,1,0,0,0,0,0),(204,1,22,'Main',22,0,1,0,0,0,0,0),(204,1,23,'Main',23,1,1,0,0,0,0,0),(204,1,24,'Sidebar',24,0,1,0,0,0,0,0),(204,1,25,'Sidebar',25,1,1,0,0,0,0,0),(204,1,26,'Sidebar',26,2,1,0,0,0,0,0),(204,1,27,'Sidebar',27,3,1,0,0,0,0,0),(204,1,28,'Page Footer',28,0,1,0,0,0,0,0),(204,1,29,'Page Footer',29,1,1,0,0,0,0,0),(205,1,22,'Main',22,0,0,0,0,0,0,0),(205,1,24,'Sidebar',24,0,0,0,0,0,0,0),(205,1,25,'Sidebar',25,1,0,0,0,0,0,0),(205,1,26,'Sidebar',26,2,0,0,0,0,0,0),(205,1,27,'Sidebar',27,3,0,0,0,0,0,0),(205,1,28,'Page Footer',28,0,0,0,0,0,0,0),(205,1,125,'Page Footer',125,1,1,0,0,0,0,0),(205,1,126,'Main',126,1,1,0,0,0,0,0),(206,1,22,'Main',22,0,0,0,0,0,0,0),(206,1,24,'Sidebar',24,0,0,0,0,0,0,0),(206,1,25,'Sidebar',25,1,0,0,0,0,0,0),(206,1,26,'Sidebar',26,2,0,0,0,0,0,0),(206,1,27,'Sidebar',27,3,0,0,0,0,0,0),(206,1,28,'Page Footer',28,0,0,0,0,0,0,0),(206,1,127,'Page Footer',127,1,1,0,0,0,0,0),(206,1,128,'Main',128,1,1,0,0,0,0,0),(207,1,22,'Main',22,0,0,0,0,0,0,0),(207,1,24,'Sidebar',24,0,0,0,0,0,0,0),(207,1,25,'Sidebar',25,1,0,0,0,0,0,0),(207,1,26,'Sidebar',26,2,0,0,0,0,0,0),(207,1,27,'Sidebar',27,3,0,0,0,0,0,0),(207,1,28,'Page Footer',28,0,0,0,0,0,0,0),(207,1,129,'Page Footer',129,1,1,0,0,0,0,0),(207,1,130,'Main',130,1,1,0,0,0,0,0),(208,1,143,'Main',143,0,1,0,0,0,0,0),(208,1,144,'Main',144,1,1,0,0,0,0,0),(208,1,145,'Main : 43',145,0,1,0,0,0,0,0),(208,1,146,'Main : 44',146,0,1,0,0,0,0,0),(208,1,147,'Main : 44',147,1,1,0,0,0,0,0),(208,1,148,'Main',148,2,1,0,0,0,0,0),(208,1,149,'Main',149,3,1,0,0,0,0,0),(208,1,150,'Main : 45',150,0,1,0,0,0,0,0),(208,1,151,'Main : 46',151,0,1,0,0,0,0,0),(208,1,152,'Main : 46',152,1,1,0,0,0,0,0),(208,1,153,'Main : 46',153,2,1,0,0,0,0,0),(208,1,154,'Main',154,4,1,0,0,0,0,0),(208,1,155,'Main',155,5,1,0,0,0,0,0),(208,1,156,'Main : 47',156,0,1,0,0,0,0,0),(208,1,157,'Main : 48',157,0,1,0,0,0,0,0),(209,1,158,'Main',158,0,1,0,0,0,0,0),(209,1,159,'Main',159,1,1,0,0,0,0,0),(209,1,160,'Main',160,2,1,0,0,0,0,0),(209,1,161,'Main',161,3,1,0,0,0,0,0),(209,1,162,'Main : 49',162,0,1,0,0,0,0,0),(209,1,163,'Main : 49',163,1,1,0,0,0,0,0),(209,1,164,'Main : 50',164,0,1,0,0,0,0,0),(209,1,165,'Main : 50',165,1,1,0,0,0,0,0),(209,1,166,'Main : 51',166,0,1,0,0,0,0,0),(209,1,167,'Main : 51',167,1,1,0,0,0,0,0),(209,1,168,'Main',168,4,1,0,0,0,0,0),(209,1,169,'Main',169,5,1,0,0,0,0,0),(209,1,170,'Main : 52',170,0,1,0,0,0,0,0),(209,1,171,'Main : 53',171,0,1,0,0,0,0,0),(210,1,174,'Main',174,0,1,0,0,0,0,0),(210,1,175,'Main',175,1,1,0,0,0,0,0),(211,1,30,'Page Header',30,0,1,0,0,0,0,0),(211,1,31,'Sidebar',31,0,1,0,0,0,0,0),(211,1,32,'Main',32,0,1,0,0,0,0,0),(211,1,33,'Main',33,1,1,0,0,0,0,0),(211,1,34,'Main',34,2,1,0,0,0,0,0),(211,1,35,'Main',35,3,1,0,0,0,0,0),(211,1,36,'Main',36,4,1,0,0,0,0,0),(211,1,37,'Main',37,5,1,0,0,0,0,0),(211,1,38,'Main',38,6,1,0,0,0,0,0),(211,1,39,'Main',39,7,1,0,0,0,0,0),(212,1,30,'Page Header',30,0,0,0,0,0,0,0),(212,1,31,'Sidebar',31,0,0,0,0,0,0,0),(212,1,32,'Main',32,0,0,0,0,0,0,0),(212,1,33,'Main',33,1,0,0,0,0,0,0),(212,1,34,'Main',34,2,0,0,0,0,0,0),(212,1,35,'Main',35,3,0,0,0,0,0,0),(212,1,36,'Main',36,4,0,0,0,0,0,0),(212,1,37,'Main',37,5,0,0,0,0,0,0),(212,1,39,'Main',39,7,0,0,0,0,0,0),(212,1,172,'Main',172,6,1,0,0,0,0,0),(213,1,30,'Page Header',30,0,0,0,0,0,0,0),(213,1,31,'Sidebar',31,0,0,0,0,0,0,0),(213,1,32,'Main',32,0,0,0,0,0,0,0),(213,1,33,'Main',33,1,0,0,0,0,0,0),(213,1,34,'Main',34,2,0,0,0,0,0,0),(213,1,35,'Main',35,3,0,0,0,0,0,0),(213,1,36,'Main',36,4,0,0,0,0,0,0),(213,1,37,'Main',37,5,0,0,0,0,0,0),(213,1,39,'Main',39,7,0,0,0,0,0,0),(213,1,173,'Main',173,6,1,0,0,0,0,0); /*!40000 ALTER TABLE `CollectionVersionBlocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionBlocksCacheSettings` -- DROP TABLE IF EXISTS `CollectionVersionBlocksCacheSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionBlocksCacheSettings` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `bID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `btCacheBlockOutput` tinyint(1) NOT NULL DEFAULT '0', `btCacheBlockOutputOnPost` tinyint(1) NOT NULL DEFAULT '0', `btCacheBlockOutputForRegisteredUsers` tinyint(1) NOT NULL DEFAULT '0', `btCacheBlockOutputLifetime` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`arHandle`), KEY `bID` (`bID`,`cID`,`cvID`,`arHandle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionBlocksCacheSettings` -- LOCK TABLES `CollectionVersionBlocksCacheSettings` WRITE; /*!40000 ALTER TABLE `CollectionVersionBlocksCacheSettings` DISABLE KEYS */; INSERT INTO `CollectionVersionBlocksCacheSettings` VALUES (184,1,61,'Main',1,1,1,3600); /*!40000 ALTER TABLE `CollectionVersionBlocksCacheSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionBlocksOutputCache` -- DROP TABLE IF EXISTS `CollectionVersionBlocksOutputCache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionBlocksOutputCache` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `bID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `btCachedBlockOutput` longtext COLLATE utf8mb4_unicode_ci, `btCachedBlockOutputExpires` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`bID`,`arHandle`), KEY `bID` (`bID`,`cID`,`cvID`,`arHandle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionBlocksOutputCache` -- LOCK TABLES `CollectionVersionBlocksOutputCache` WRITE; /*!40000 ALTER TABLE `CollectionVersionBlocksOutputCache` DISABLE KEYS */; /*!40000 ALTER TABLE `CollectionVersionBlocksOutputCache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionFeatureAssignments` -- DROP TABLE IF EXISTS `CollectionVersionFeatureAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionFeatureAssignments` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `faID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`faID`), KEY `faID` (`faID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionFeatureAssignments` -- LOCK TABLES `CollectionVersionFeatureAssignments` WRITE; /*!40000 ALTER TABLE `CollectionVersionFeatureAssignments` DISABLE KEYS */; INSERT INTO `CollectionVersionFeatureAssignments` VALUES (204,1,1),(191,1,2),(205,1,3),(206,1,4),(207,1,5),(195,1,6),(208,1,7),(208,1,8),(208,1,9),(209,1,10); /*!40000 ALTER TABLE `CollectionVersionFeatureAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionRelatedEdits` -- DROP TABLE IF EXISTS `CollectionVersionRelatedEdits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionRelatedEdits` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `cRelationID` int unsigned NOT NULL DEFAULT '0', `cvRelationID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`cRelationID`,`cvRelationID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionRelatedEdits` -- LOCK TABLES `CollectionVersionRelatedEdits` WRITE; /*!40000 ALTER TABLE `CollectionVersionRelatedEdits` DISABLE KEYS */; /*!40000 ALTER TABLE `CollectionVersionRelatedEdits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersionThemeCustomStyles` -- DROP TABLE IF EXISTS `CollectionVersionThemeCustomStyles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersionThemeCustomStyles` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `pThemeID` int unsigned NOT NULL DEFAULT '0', `scvlID` int unsigned DEFAULT '0', `preset` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sccRecordID` int unsigned DEFAULT '0', PRIMARY KEY (`cID`,`cvID`,`pThemeID`), KEY `pThemeID` (`pThemeID`), KEY `scvlID` (`scvlID`), KEY `sccRecordID` (`sccRecordID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersionThemeCustomStyles` -- LOCK TABLES `CollectionVersionThemeCustomStyles` WRITE; /*!40000 ALTER TABLE `CollectionVersionThemeCustomStyles` DISABLE KEYS */; /*!40000 ALTER TABLE `CollectionVersionThemeCustomStyles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `CollectionVersions` -- DROP TABLE IF EXISTS `CollectionVersions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `CollectionVersions` ( `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '1', `cvName` text COLLATE utf8mb4_unicode_ci, `cvHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cvDescription` text COLLATE utf8mb4_unicode_ci, `cvDatePublic` datetime DEFAULT NULL, `cvDateCreated` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `cvComments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cvIsApproved` tinyint(1) NOT NULL DEFAULT '0', `cvIsNew` tinyint(1) NOT NULL DEFAULT '0', `cvAuthorUID` int unsigned DEFAULT NULL, `cvApproverUID` int unsigned DEFAULT NULL, `pThemeID` int unsigned NOT NULL DEFAULT '0', `pTemplateID` int unsigned NOT NULL DEFAULT '0', `cvActivateDatetime` datetime DEFAULT NULL, `cvPublishDate` datetime DEFAULT NULL, `cvPublishEndDate` datetime DEFAULT NULL, `cvDateApproved` datetime DEFAULT NULL, PRIMARY KEY (`cID`,`cvID`), KEY `cvIsApproved` (`cvIsApproved`), KEY `cvAuthorUID` (`cvAuthorUID`), KEY `cvApproverUID` (`cvApproverUID`), KEY `pThemeID` (`pThemeID`), KEY `pTemplateID` (`pTemplateID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CollectionVersions` -- LOCK TABLES `CollectionVersions` WRITE; /*!40000 ALTER TABLE `CollectionVersions` DISABLE KEYS */; INSERT INTO `CollectionVersions` VALUES (1,1,'Home','',NULL,'2020-05-22 13:42:04','2020-05-22 13:42:04','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(1,2,'Home','',NULL,'2020-05-22 13:42:04','2020-05-25 15:03:19','Version 2',0,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(2,1,'Dashboard','dashboard','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(3,1,'Sitemap','sitemap','Whole world at a glance.','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(4,1,'Full Sitemap','full','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(5,1,'Flat View','explore','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(6,1,'Page Search','search','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(7,1,'Files','files','All documents and images.','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(8,1,'File Manager','search','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(9,1,'Attributes','attributes','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(10,1,'File Sets','sets','','2020-05-22 13:43:12','2020-05-22 13:43:12','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(11,1,'Add File Set','add_set','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(12,1,'Members','users','Add and manage the user accounts and groups on your website.','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(13,1,'Search Users','search','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(14,1,'User Groups','groups','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(15,1,'Attributes','attributes','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(16,1,'Add User','add','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(17,1,'Add Group','add_group','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(18,1,'Move Multiple Groups','bulkupdate','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(19,1,'Group Sets','group_sets','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(20,1,'Community Points','points',NULL,'2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(21,1,'Assign Points','assign',NULL,'2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(22,1,'Actions','actions',NULL,'2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(23,1,'Express','express','Express Data Objects','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(24,1,'View Entries','entries','','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(25,1,'Reports','reports','Get data from forms and logs.','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(26,1,'Form Results','forms','Get submission data.','2020-05-22 13:43:13','2020-05-22 13:43:13','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(27,1,'Form Results','legacy','Get submission data.','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(28,1,'Surveys','surveys','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(29,1,'Logs','logs','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(30,1,'Page Changes','page_changes','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(31,1,'Pages & Themes','pages','Reskin your site.','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(32,1,'Themes','themes','Reskin your site.','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(33,1,'Inspect','inspect','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(34,1,'Page Types','types','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(35,1,'Organize Page Type Order','organize','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(36,1,'Add Page Type','add','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(37,1,'Compose Form','form','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(38,1,'Defaults and Output','output','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(39,1,'Page Type Attributes','attributes','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(40,1,'Page Type Permissions','permissions','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(41,1,'Page Templates','templates','Form factors for pages in your site.','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(42,1,'Add Page Template','add','Add page templates to your site.','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(43,1,'Attributes','attributes','','2020-05-22 13:43:14','2020-05-22 13:43:14','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(44,1,'Single Pages','single','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(45,1,'RSS Feeds','feeds','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(46,1,'Calendar & Events','calendar','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(47,1,'View Calendar','events','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(48,1,'Event List','event_list','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(49,1,'Add Calendar','add','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(50,1,'Permissions','permissions','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(51,1,'Attributes','attributes','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(52,1,'Conversations','conversations','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(53,1,'Messages','messages','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(54,1,'Stacks & Blocks','blocks','Manage sitewide content and administer block types.','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(55,1,'Stacks & Global Areas','stacks','Share content across your site.','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(56,1,'Block & Stack Permissions','permissions','Control who can add blocks and stacks on your site.','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(57,1,'Stack List','list','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(58,1,'Block Types','types','Manage the installed block types in your site.','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(59,1,'Extend concrete5','extend','','2020-05-22 13:43:15','2020-05-22 13:43:15','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(60,1,'Add Functionality','install','Install add-ons & themes.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(61,1,'Update Add-Ons','update','Update your installed packages.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(62,1,'Connect to the Community','connect','Connect to the concrete5 community.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(63,1,'Get More Themes','themes','Download themes from concrete5.org.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(64,1,'Get More Add-Ons','addons','Download add-ons from concrete5.org.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(65,1,'System & Settings','system','Secure and setup your site.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(66,1,'Basics','basics','Basic information about your website.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(67,1,'Name & Attributes','name','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(68,1,'Accessibility','accessibility','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(69,1,'Social Links','social','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(70,1,'Bookmark Icons','icons','Bookmark icon and mobile home screen icon setup.','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(71,1,'Rich Text Editor','editor','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(72,1,'Languages','multilingual','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(73,1,'Update Languages','update','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(74,1,'Time Zone','timezone','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(75,1,'Custom Attributes','attributes','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(76,1,'Reset Edit Mode','reset_edit_mode','','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(77,1,'Express','express','Express','2020-05-22 13:43:16','2020-05-22 13:43:16','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(78,1,'Data Objects','entities','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(79,1,'Attributes','attributes','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(80,1,'Associations','associations','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(81,1,'Forms','forms','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(82,1,'Customize Search','customize_search','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(83,1,'Update Entry Display Order','order_entries','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(84,1,'Custom Entry Locations','entries','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(85,1,'Multilingual','multilingual','Run your site in multiple languages.','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(86,1,'Multilingual Setup','setup','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(87,1,'Copy Languages','copy','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(88,1,'Page Report','page_report','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(89,1,'Translate Site Interface','translate_interface','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(90,1,'SEO & Statistics','seo','Enable pretty URLs and tracking codes.','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(91,1,'URLs and Redirection','urls','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(92,1,'Bulk SEO Updater','bulk','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(93,1,'Tracking Codes','codes','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(94,1,'Excluded URL Word List','excluded','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(95,1,'Search Index','searchindex','','2020-05-22 13:43:17','2020-05-22 13:43:17','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(96,1,'Files','files','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(97,1,'Allowed File Types','filetypes','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(98,1,'File Manager Permissions','permissions','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(99,1,'Thumbnails','thumbnails','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(100,1,'Thumbnail Options','options','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(101,1,'Image Options','image_uploading','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(102,1,'File Storage Locations','storage','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(103,1,'Export Options','export_options','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(104,1,'Optimization','optimization','Keep your site running well.','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(105,1,'Cache & Speed Settings','cache','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(106,1,'Clear Cache','clearcache','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(107,1,'Automated Jobs','jobs','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(108,1,'Database Query Log','query_log','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(109,1,'Permissions & Access','permissions','Control who sees and edits your site.','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(110,1,'Site Access','site','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(111,1,'Task Permissions','tasks','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(112,1,'User Permissions','users','','2020-05-22 13:43:18','2020-05-22 13:43:18','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(113,1,'Advanced Permissions','advanced','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(114,1,'Workflows','workflows','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(115,1,'IP Blacklist','blacklist','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(116,1,'IP Range','range','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(117,1,'Captcha Setup','captcha','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(118,1,'Spam Control','antispam','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(119,1,'Maintenance Mode','maintenance','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(120,1,'Trusted Proxies','trusted_proxies','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(121,1,'Login & Registration','registration','Change login behaviors and setup public profiles.','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(122,1,'Account Options','open','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(123,1,'Login Destination','postlogin','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(124,1,'Public Profiles','profiles','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(125,1,'Authentication Types','authentication','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(126,1,'Global Password Reset','global_password_reset','Signs out all users, resets all passwords and forces users to choose a new one','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(127,1,'Notification Settings','notification','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(128,1,'User Deactivation Settings','deactivation','','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(129,1,'Automated Logout','automated_logout','Automate when users are logged out, or do it manually','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(130,1,'Password Requirements','password_requirements','Set password rule and regulations.','2020-05-22 13:43:19','2020-05-22 13:43:19','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(131,1,'Email','mail','Control how your site send and processes mail.','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(132,1,'SMTP Method','method','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(133,1,'Test Mail Settings','test','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(134,1,'Email Importers','importers','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(135,1,'System Email Addresses','addresses','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(136,1,'Calendar','calendar','Manage your calendar settings','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(137,1,'General Settings','settings','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(138,1,'Color Settings','colors','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(139,1,'Permissions','permissions','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(140,1,'Import Calendar Data','import','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(141,1,'Conversations','conversations','Manage your conversations settings','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(142,1,'Settings','settings','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(143,1,'Community Points','points','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(144,1,'Banned Words','bannedwords','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(145,1,'Conversation Permissions','permissions','','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(146,1,'Attributes','attributes','Setup attributes for pages, users, files and more.','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(147,1,'Types','types','Choose which attribute types are available for different items.','2020-05-22 13:43:20','2020-05-22 13:43:20','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(148,1,'Sets','sets','Group attributes into sets for easier organization','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(149,1,'Topics','topics','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(150,1,'Add Topic Tree','add','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(151,1,'Environment','environment','Advanced settings for web developers.','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(152,1,'Environment Information','info','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(153,1,'Debug Settings','debug','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(154,1,'Logging Settings','logging','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(155,1,'Proxy Server','proxy','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(156,1,'Database Entities','entities','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(157,1,'Database Character Set','database_charset','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(158,1,'Geolocation','geolocation','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(159,1,'Update concrete5','update','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(160,1,'Apply Update','update','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(161,1,'API','api','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(162,1,'API Settings','settings','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(163,1,'API Integrations','integrations','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(164,1,'Welcome','welcome','','2020-05-22 13:43:21','2020-05-22 13:43:21','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(165,1,'Waiting for Me','me',NULL,'2020-05-22 13:43:22','2020-05-22 13:43:22','Initial Version',1,0,1,NULL,1,2,NULL,NULL,NULL,NULL),(166,1,'Stacks','!stacks','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(167,1,'Page Not Found','page_not_found','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(168,1,'Trash','!trash','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(169,1,'Login','login','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(170,1,'Register','register','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(171,1,'My Account','account','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(172,1,'Edit Profile','edit_profile','Edit your user profile and change password.','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(173,1,'Profile Picture','avatar','Specify a new image attached to posts or edits.','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(174,1,'Private Messages','messages','Inbox for site-specific messages.','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(175,1,'Page Forbidden','page_forbidden','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(176,1,'Download File','download_file','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(177,1,'Drafts','!drafts','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(178,1,'Welcome Back','desktop','','2020-05-22 13:43:29','2020-05-22 13:43:29','Initial Version',1,0,1,NULL,0,0,NULL,NULL,NULL,NULL),(179,1,'Footer Contact','footer-contact',NULL,'2020-05-22 13:43:32','2020-05-22 13:43:32','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(180,1,'Footer Legal','footer-legal',NULL,'2020-05-22 13:43:32','2020-05-22 13:43:32','Initial Version',0,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(180,2,'Footer Legal','footer-legal',NULL,'2020-05-22 13:43:32','2020-05-22 15:31:40','New Version 2',0,0,1,1,1,0,NULL,NULL,NULL,'2020-05-22 15:32:24'),(180,3,'Footer Legal','footer-legal',NULL,'2020-05-22 13:43:32','2020-05-22 15:31:54','New Version 3',0,0,1,1,1,0,NULL,NULL,NULL,'2020-05-22 15:32:24'),(180,4,'Footer Legal','footer-legal',NULL,'2020-05-22 13:43:32','2020-05-22 15:32:09','New Version 4',1,0,1,1,1,0,NULL,NULL,NULL,'2020-05-22 15:32:24'),(181,1,'Footer Navigation','footer-navigation',NULL,'2020-05-22 13:43:32','2020-05-22 13:43:32','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(182,1,'Footer Site Title','footer-site-title',NULL,'2020-05-22 13:43:32','2020-05-22 13:43:32','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(183,1,'Footer Social','footer-social',NULL,'2020-05-22 13:43:33','2020-05-22 13:43:33','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(184,1,'Header Navigation','header-navigation',NULL,'2020-05-22 13:43:33','2020-05-22 13:43:33','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(185,1,'Header Search','header-search',NULL,'2020-05-22 13:43:33','2020-05-22 13:43:33','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(186,1,'Header Site Title','header-site-title',NULL,'2020-05-22 13:43:33','2020-05-22 13:43:33','Initial Version',1,0,1,NULL,1,0,NULL,NULL,NULL,NULL),(187,1,'',NULL,NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,NULL,NULL,0,5,NULL,NULL,NULL,NULL),(188,1,'Services','services',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(189,1,'',NULL,NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,NULL,NULL,0,5,NULL,NULL,NULL,NULL),(190,1,'Portfolio','portfolio',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',0,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(190,2,'Portfolio','portfolio',NULL,'2020-05-22 13:43:36','2020-05-22 15:31:11','update designs here',1,0,1,1,1,5,NULL,NULL,NULL,'2020-05-22 15:32:24'),(191,1,'Team','team',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(192,1,'',NULL,NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,NULL,NULL,0,5,NULL,NULL,NULL,NULL),(193,1,'Blog','blog',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(194,1,'Search','search',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(195,1,'Contact','contact',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(196,1,'Blank Page','blank-page',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,4,NULL,NULL,NULL,NULL),(197,1,'',NULL,NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,NULL,NULL,0,6,NULL,NULL,NULL,NULL),(198,1,'Project Title','project-title','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 15:30:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(199,1,'Project Title 2','project-title-2','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 15:20:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(200,1,'Project Title 3','project-title-3','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 15:10:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(201,1,'Project Title 4','project-title-4','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 15:00:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(202,1,'Project Title 5','project-title-5','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 14:30:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(203,1,'Project Title 6','project-title-6','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','2014-08-06 14:20:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(204,1,'',NULL,NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,NULL,NULL,0,7,NULL,NULL,NULL,NULL),(205,1,'Hello World!','hello-world','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum.','2014-07-01 12:00:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,7,NULL,NULL,NULL,NULL),(206,1,'Another Blog Post','another-blog-post','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna.','2014-07-04 15:00:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,7,NULL,NULL,NULL,NULL),(207,1,'A Beautiful Site Deserves a Beautiful Blog','a-beautiful-blog','Donec blandit lectus nec neque ullamcorper rhoncus. Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida. Phasellus est erat.','2014-08-01 16:30:00','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,7,NULL,NULL,NULL,NULL),(208,1,'About','about',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(209,1,'Careers','careers',NULL,'2020-05-22 13:43:36','2020-05-22 13:43:36','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(210,1,'Frequently Asked Questions','faq',NULL,'2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,1,NULL,1,5,NULL,NULL,NULL,NULL),(211,1,'',NULL,NULL,'2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,NULL,NULL,0,6,NULL,NULL,NULL,NULL),(212,1,'Web Developer','web-developer','Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus.','2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(213,1,'Sales Associate','sales-associate','Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus.','2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,1,NULL,1,6,NULL,NULL,NULL,NULL),(214,1,'',NULL,NULL,'2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,NULL,NULL,0,4,NULL,NULL,NULL,NULL),(215,1,'',NULL,NULL,'2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,NULL,NULL,0,6,NULL,NULL,NULL,NULL),(216,1,'',NULL,NULL,'2020-05-22 13:43:37','2020-05-22 13:43:37','Initial Version',1,0,NULL,NULL,0,7,NULL,NULL,NULL,NULL),(217,1,'','',NULL,'2020-05-22 17:50:27','2020-05-22 17:50:27','Initial Version',0,1,1,NULL,1,5,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `CollectionVersions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Collections` -- DROP TABLE IF EXISTS `Collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Collections` ( `cID` int unsigned NOT NULL AUTO_INCREMENT, `cDateAdded` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `cDateModified` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `cHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`cID`), KEY `cIDDateModified` (`cID`,`cDateModified`), KEY `cDateModified` (`cDateModified`), KEY `cDateAdded` (`cDateAdded`) ) ENGINE=InnoDB AUTO_INCREMENT=218 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Collections` -- LOCK TABLES `Collections` WRITE; /*!40000 ALTER TABLE `Collections` DISABLE KEYS */; INSERT INTO `Collections` VALUES (1,'2020-05-22 13:42:04','2020-05-22 13:43:36',NULL),(2,'2020-05-22 13:43:12','2020-05-22 13:43:12','dashboard'),(3,'2020-05-22 13:43:12','2020-05-22 13:43:12','sitemap'),(4,'2020-05-22 13:43:12','2020-05-22 13:43:12','full'),(5,'2020-05-22 13:43:12','2020-05-22 13:43:12','explore'),(6,'2020-05-22 13:43:12','2020-05-22 13:43:12','search'),(7,'2020-05-22 13:43:12','2020-05-22 13:43:12','files'),(8,'2020-05-22 13:43:12','2020-05-22 13:43:12','search'),(9,'2020-05-22 13:43:12','2020-05-22 13:43:12','attributes'),(10,'2020-05-22 13:43:12','2020-05-22 13:43:12','sets'),(11,'2020-05-22 13:43:13','2020-05-22 13:43:13','add_set'),(12,'2020-05-22 13:43:13','2020-05-22 13:43:13','users'),(13,'2020-05-22 13:43:13','2020-05-22 13:43:13','search'),(14,'2020-05-22 13:43:13','2020-05-22 13:43:13','groups'),(15,'2020-05-22 13:43:13','2020-05-22 13:43:13','attributes'),(16,'2020-05-22 13:43:13','2020-05-22 13:43:13','add'),(17,'2020-05-22 13:43:13','2020-05-22 13:43:13','add_group'),(18,'2020-05-22 13:43:13','2020-05-22 13:43:13','bulkupdate'),(19,'2020-05-22 13:43:13','2020-05-22 13:43:13','group_sets'),(20,'2020-05-22 13:43:13','2020-05-22 13:43:13','points'),(21,'2020-05-22 13:43:13','2020-05-22 13:43:13','assign'),(22,'2020-05-22 13:43:13','2020-05-22 13:43:13','actions'),(23,'2020-05-22 13:43:13','2020-05-22 13:43:13','express'),(24,'2020-05-22 13:43:13','2020-05-22 13:43:13','entries'),(25,'2020-05-22 13:43:13','2020-05-22 13:43:13','reports'),(26,'2020-05-22 13:43:13','2020-05-22 13:43:14','forms'),(27,'2020-05-22 13:43:14','2020-05-22 13:43:14','legacy'),(28,'2020-05-22 13:43:14','2020-05-22 13:43:14','surveys'),(29,'2020-05-22 13:43:14','2020-05-22 13:43:14','logs'),(30,'2020-05-22 13:43:14','2020-05-22 13:43:14','page_changes'),(31,'2020-05-22 13:43:14','2020-05-22 13:43:14','pages'),(32,'2020-05-22 13:43:14','2020-05-22 13:43:14','themes'),(33,'2020-05-22 13:43:14','2020-05-22 13:43:14','inspect'),(34,'2020-05-22 13:43:14','2020-05-22 13:43:14','types'),(35,'2020-05-22 13:43:14','2020-05-22 13:43:14','organize'),(36,'2020-05-22 13:43:14','2020-05-22 13:43:14','add'),(37,'2020-05-22 13:43:14','2020-05-22 13:43:14','form'),(38,'2020-05-22 13:43:14','2020-05-22 13:43:14','output'),(39,'2020-05-22 13:43:14','2020-05-22 13:43:14','attributes'),(40,'2020-05-22 13:43:14','2020-05-22 13:43:14','permissions'),(41,'2020-05-22 13:43:14','2020-05-22 13:43:14','templates'),(42,'2020-05-22 13:43:14','2020-05-22 13:43:14','add'),(43,'2020-05-22 13:43:14','2020-05-22 13:43:15','attributes'),(44,'2020-05-22 13:43:15','2020-05-22 13:43:15','single'),(45,'2020-05-22 13:43:15','2020-05-22 13:43:15','feeds'),(46,'2020-05-22 13:43:15','2020-05-22 13:43:15','calendar'),(47,'2020-05-22 13:43:15','2020-05-22 13:43:15','events'),(48,'2020-05-22 13:43:15','2020-05-22 13:43:15','event_list'),(49,'2020-05-22 13:43:15','2020-05-22 13:43:15','add'),(50,'2020-05-22 13:43:15','2020-05-22 13:43:15','permissions'),(51,'2020-05-22 13:43:15','2020-05-22 13:43:15','attributes'),(52,'2020-05-22 13:43:15','2020-05-22 13:43:15','conversations'),(53,'2020-05-22 13:43:15','2020-05-22 13:43:15','messages'),(54,'2020-05-22 13:43:15','2020-05-22 13:43:15','blocks'),(55,'2020-05-22 13:43:15','2020-05-22 13:43:15','stacks'),(56,'2020-05-22 13:43:15','2020-05-22 13:43:15','permissions'),(57,'2020-05-22 13:43:15','2020-05-22 13:43:15','list'),(58,'2020-05-22 13:43:15','2020-05-22 13:43:15','types'),(59,'2020-05-22 13:43:15','2020-05-22 13:43:16','extend'),(60,'2020-05-22 13:43:16','2020-05-22 13:43:16','install'),(61,'2020-05-22 13:43:16','2020-05-22 13:43:16','update'),(62,'2020-05-22 13:43:16','2020-05-22 13:43:16','connect'),(63,'2020-05-22 13:43:16','2020-05-22 13:43:16','themes'),(64,'2020-05-22 13:43:16','2020-05-22 13:43:16','addons'),(65,'2020-05-22 13:43:16','2020-05-22 13:43:16','system'),(66,'2020-05-22 13:43:16','2020-05-22 13:43:16','basics'),(67,'2020-05-22 13:43:16','2020-05-22 13:43:16','name'),(68,'2020-05-22 13:43:16','2020-05-22 13:43:16','accessibility'),(69,'2020-05-22 13:43:16','2020-05-22 13:43:16','social'),(70,'2020-05-22 13:43:16','2020-05-22 13:43:16','icons'),(71,'2020-05-22 13:43:16','2020-05-22 13:43:16','editor'),(72,'2020-05-22 13:43:16','2020-05-22 13:43:16','multilingual'),(73,'2020-05-22 13:43:16','2020-05-22 13:43:16','update'),(74,'2020-05-22 13:43:16','2020-05-22 13:43:16','timezone'),(75,'2020-05-22 13:43:16','2020-05-22 13:43:16','attributes'),(76,'2020-05-22 13:43:16','2020-05-22 13:43:16','reset_edit_mode'),(77,'2020-05-22 13:43:16','2020-05-22 13:43:17','express'),(78,'2020-05-22 13:43:17','2020-05-22 13:43:17','entities'),(79,'2020-05-22 13:43:17','2020-05-22 13:43:17','attributes'),(80,'2020-05-22 13:43:17','2020-05-22 13:43:17','associations'),(81,'2020-05-22 13:43:17','2020-05-22 13:43:17','forms'),(82,'2020-05-22 13:43:17','2020-05-22 13:43:17','customize_search'),(83,'2020-05-22 13:43:17','2020-05-22 13:43:17','order_entries'),(84,'2020-05-22 13:43:17','2020-05-22 13:43:17','entries'),(85,'2020-05-22 13:43:17','2020-05-22 13:43:17','multilingual'),(86,'2020-05-22 13:43:17','2020-05-22 13:43:17','setup'),(87,'2020-05-22 13:43:17','2020-05-22 13:43:17','copy'),(88,'2020-05-22 13:43:17','2020-05-22 13:43:17','page_report'),(89,'2020-05-22 13:43:17','2020-05-22 13:43:17','translate_interface'),(90,'2020-05-22 13:43:17','2020-05-22 13:43:17','seo'),(91,'2020-05-22 13:43:17','2020-05-22 13:43:17','urls'),(92,'2020-05-22 13:43:17','2020-05-22 13:43:17','bulk'),(93,'2020-05-22 13:43:17','2020-05-22 13:43:17','codes'),(94,'2020-05-22 13:43:17','2020-05-22 13:43:17','excluded'),(95,'2020-05-22 13:43:17','2020-05-22 13:43:18','searchindex'),(96,'2020-05-22 13:43:18','2020-05-22 13:43:18','files'),(97,'2020-05-22 13:43:18','2020-05-22 13:43:18','filetypes'),(98,'2020-05-22 13:43:18','2020-05-22 13:43:18','permissions'),(99,'2020-05-22 13:43:18','2020-05-22 13:43:18','thumbnails'),(100,'2020-05-22 13:43:18','2020-05-22 13:43:18','options'),(101,'2020-05-22 13:43:18','2020-05-22 13:43:18','image_uploading'),(102,'2020-05-22 13:43:18','2020-05-22 13:43:18','storage'),(103,'2020-05-22 13:43:18','2020-05-22 13:43:18','export_options'),(104,'2020-05-22 13:43:18','2020-05-22 13:43:18','optimization'),(105,'2020-05-22 13:43:18','2020-05-22 13:43:18','cache'),(106,'2020-05-22 13:43:18','2020-05-22 13:43:18','clearcache'),(107,'2020-05-22 13:43:18','2020-05-22 13:43:18','jobs'),(108,'2020-05-22 13:43:18','2020-05-22 13:43:18','query_log'),(109,'2020-05-22 13:43:18','2020-05-22 13:43:18','permissions'),(110,'2020-05-22 13:43:18','2020-05-22 13:43:18','site'),(111,'2020-05-22 13:43:18','2020-05-22 13:43:18','tasks'),(112,'2020-05-22 13:43:18','2020-05-22 13:43:19','users'),(113,'2020-05-22 13:43:19','2020-05-22 13:43:19','advanced'),(114,'2020-05-22 13:43:19','2020-05-22 13:43:19','workflows'),(115,'2020-05-22 13:43:19','2020-05-22 13:43:19','blacklist'),(116,'2020-05-22 13:43:19','2020-05-22 13:43:19','range'),(117,'2020-05-22 13:43:19','2020-05-22 13:43:19','captcha'),(118,'2020-05-22 13:43:19','2020-05-22 13:43:19','antispam'),(119,'2020-05-22 13:43:19','2020-05-22 13:43:19','maintenance'),(120,'2020-05-22 13:43:19','2020-05-22 13:43:19','trusted_proxies'),(121,'2020-05-22 13:43:19','2020-05-22 13:43:19','registration'),(122,'2020-05-22 13:43:19','2020-05-22 13:43:19','open'),(123,'2020-05-22 13:43:19','2020-05-22 13:43:19','postlogin'),(124,'2020-05-22 13:43:19','2020-05-22 13:43:19','profiles'),(125,'2020-05-22 13:43:19','2020-05-22 13:43:19','authentication'),(126,'2020-05-22 13:43:19','2020-05-22 13:43:19','global_password_reset'),(127,'2020-05-22 13:43:19','2020-05-22 13:43:19','notification'),(128,'2020-05-22 13:43:19','2020-05-22 13:43:19','deactivation'),(129,'2020-05-22 13:43:19','2020-05-22 13:43:19','automated_logout'),(130,'2020-05-22 13:43:19','2020-05-22 13:43:20','password_requirements'),(131,'2020-05-22 13:43:20','2020-05-22 13:43:20','mail'),(132,'2020-05-22 13:43:20','2020-05-22 13:43:20','method'),(133,'2020-05-22 13:43:20','2020-05-22 13:43:20','test'),(134,'2020-05-22 13:43:20','2020-05-22 13:43:20','importers'),(135,'2020-05-22 13:43:20','2020-05-22 13:43:20','addresses'),(136,'2020-05-22 13:43:20','2020-05-22 13:43:20','calendar'),(137,'2020-05-22 13:43:20','2020-05-22 13:43:20','settings'),(138,'2020-05-22 13:43:20','2020-05-22 13:43:20','colors'),(139,'2020-05-22 13:43:20','2020-05-22 13:43:20','permissions'),(140,'2020-05-22 13:43:20','2020-05-22 13:43:20','import'),(141,'2020-05-22 13:43:20','2020-05-22 13:43:20','conversations'),(142,'2020-05-22 13:43:20','2020-05-22 13:43:20','settings'),(143,'2020-05-22 13:43:20','2020-05-22 13:43:20','points'),(144,'2020-05-22 13:43:20','2020-05-22 13:43:20','bannedwords'),(145,'2020-05-22 13:43:20','2020-05-22 13:43:20','permissions'),(146,'2020-05-22 13:43:20','2020-05-22 13:43:20','attributes'),(147,'2020-05-22 13:43:20','2020-05-22 13:43:21','types'),(148,'2020-05-22 13:43:21','2020-05-22 13:43:21','sets'),(149,'2020-05-22 13:43:21','2020-05-22 13:43:21','topics'),(150,'2020-05-22 13:43:21','2020-05-22 13:43:21','add'),(151,'2020-05-22 13:43:21','2020-05-22 13:43:21','environment'),(152,'2020-05-22 13:43:21','2020-05-22 13:43:21','info'),(153,'2020-05-22 13:43:21','2020-05-22 13:43:21','debug'),(154,'2020-05-22 13:43:21','2020-05-22 13:43:21','logging'),(155,'2020-05-22 13:43:21','2020-05-22 13:43:21','proxy'),(156,'2020-05-22 13:43:21','2020-05-22 13:43:21','entities'),(157,'2020-05-22 13:43:21','2020-05-22 13:43:21','database_charset'),(158,'2020-05-22 13:43:21','2020-05-22 13:43:21','geolocation'),(159,'2020-05-22 13:43:21','2020-05-22 13:43:21','update'),(160,'2020-05-22 13:43:21','2020-05-22 13:43:21','update'),(161,'2020-05-22 13:43:21','2020-05-22 13:43:21','api'),(162,'2020-05-22 13:43:21','2020-05-22 13:43:21','settings'),(163,'2020-05-22 13:43:21','2020-05-22 13:43:21','integrations'),(164,'2020-05-22 13:43:21','2020-05-22 13:43:21','welcome'),(165,'2020-05-22 13:43:22','2020-05-22 13:43:22','me'),(166,'2020-05-22 13:43:29','2020-05-22 13:43:29','!stacks'),(167,'2020-05-22 13:43:29','2020-05-22 13:43:29','page_not_found'),(168,'2020-05-22 13:43:29','2020-05-22 13:43:29','!trash'),(169,'2020-05-22 13:43:29','2020-05-22 13:43:29','login'),(170,'2020-05-22 13:43:29','2020-05-22 13:43:29','register'),(171,'2020-05-22 13:43:29','2020-05-22 13:43:29','account'),(172,'2020-05-22 13:43:29','2020-05-22 13:43:29','edit_profile'),(173,'2020-05-22 13:43:29','2020-05-22 13:43:29','avatar'),(174,'2020-05-22 13:43:29','2020-05-22 13:43:29','messages'),(175,'2020-05-22 13:43:29','2020-05-22 13:43:29','page_forbidden'),(176,'2020-05-22 13:43:29','2020-05-22 13:43:29','download_file'),(177,'2020-05-22 13:43:29','2020-05-22 13:43:29','!drafts'),(178,'2020-05-22 13:43:29','2020-05-22 13:43:29','desktop'),(179,'2020-05-22 13:43:32','2020-05-22 13:43:32','footer-contact'),(180,'2020-05-22 13:43:32','2020-05-22 15:32:24','footer-legal'),(181,'2020-05-22 13:43:32','2020-05-22 13:43:32','footer-navigation'),(182,'2020-05-22 13:43:32','2020-05-22 13:43:32','footer-site-title'),(183,'2020-05-22 13:43:33','2020-05-22 13:43:33','footer-social'),(184,'2020-05-22 13:43:33','2020-05-22 13:43:33','header-navigation'),(185,'2020-05-22 13:43:33','2020-05-22 13:43:33','header-search'),(186,'2020-05-22 13:43:33','2020-05-22 13:43:33','header-site-title'),(187,'2020-05-22 13:43:36','2020-05-22 13:43:36',NULL),(188,'2020-05-22 13:43:36','2020-05-22 13:43:36','services'),(189,'2020-05-22 13:43:36','2020-05-22 13:43:36',NULL),(190,'2020-05-22 13:43:36','2020-05-22 15:32:24','portfolio'),(191,'2020-05-22 13:43:36','2020-05-22 13:43:36','team'),(192,'2020-05-22 13:43:36','2020-05-22 13:43:36',NULL),(193,'2020-05-22 13:43:36','2020-05-22 13:43:36','blog'),(194,'2020-05-22 13:43:36','2020-05-22 13:43:36','search'),(195,'2020-05-22 13:43:36','2020-05-22 13:43:36','contact'),(196,'2020-05-22 13:43:36','2020-05-22 13:43:36','blank-page'),(197,'2020-05-22 13:43:36','2020-05-22 13:43:36',NULL),(198,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title'),(199,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title-2'),(200,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title-3'),(201,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title-4'),(202,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title-5'),(203,'2020-05-22 13:43:36','2020-05-22 13:43:36','project-title-6'),(204,'2020-05-22 13:43:36','2020-05-22 13:43:36',NULL),(205,'2020-05-22 13:43:36','2020-05-22 13:43:36','hello-world'),(206,'2020-05-22 13:43:36','2020-05-22 13:43:36','another-blog-post'),(207,'2020-05-22 13:43:36','2020-05-22 13:43:36','a-beautiful-blog'),(208,'2020-05-22 13:43:36','2020-05-22 13:43:36','about'),(209,'2020-05-22 13:43:36','2020-05-22 13:43:37','careers'),(210,'2020-05-22 13:43:37','2020-05-22 13:43:37','faq'),(211,'2020-05-22 13:43:37','2020-05-22 13:43:37',NULL),(212,'2020-05-22 13:43:37','2020-05-22 13:43:37','web-developer'),(213,'2020-05-22 13:43:37','2020-05-22 13:43:37','sales-associate'),(214,'2020-05-22 13:43:37','2020-05-22 13:43:37',NULL),(215,'2020-05-22 13:43:37','2020-05-22 13:43:37',NULL),(216,'2020-05-22 13:43:37','2020-05-22 13:43:37',NULL),(217,'2020-05-22 17:50:27','2020-05-22 17:50:27',''); /*!40000 ALTER TABLE `Collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Config` -- DROP TABLE IF EXISTS `Config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Config` ( `configNamespace` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `configGroup` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `configItem` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `configValue` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`configNamespace`,`configGroup`,`configItem`), KEY `configGroup` (`configGroup`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Config` -- LOCK TABLES `Config` WRITE; /*!40000 ALTER TABLE `Config` DISABLE KEYS */; INSERT INTO `Config` VALUES ('','api','keypair.partialkey',''),('','api','keypair.privatekey','-----<KEY> KEY-----'),('','api','keypair.publickey','-----<KEY>'),('','app','privacy_policy_accepted','1'),('','concrete','marketplace.token','<KEY>'),('','concrete','marketplace.url_token','<KEY>'),('','concrete','security.token.encryption','fbc45e9d71fb21d8d97a49b24524d74ad0f1951a55caab49e3e029eae6a6d20a'),('','concrete','security.token.jobs','e27401af4d7f6c75c036c0a9f47a1e8a43cb4d3c4979ebf67e2da931229c5749'),('','concrete','security.token.validation','5e17f18919793713bb962221ed8a9884c6e47c972fc27bf02a0e28e1c451e27c'); /*!40000 ALTER TABLE `Config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConfigStore` -- DROP TABLE IF EXISTS `ConfigStore`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConfigStore` ( `cfKey` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `cfValue` longtext COLLATE utf8mb4_unicode_ci, `uID` int unsigned NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cfKey`,`uID`), KEY `uID` (`uID`,`cfKey`), KEY `pkgID` (`pkgID`,`cfKey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConfigStore` -- LOCK TABLES `ConfigStore` WRITE; /*!40000 ALTER TABLE `ConfigStore` DISABLE KEYS */; INSERT INTO `ConfigStore` VALUES ('MAIN_HELP_LAST_VIEWED','2020-05-22 03:44:29','1590119069',1,0); /*!40000 ALTER TABLE `ConfigStore` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationDiscussions` -- DROP TABLE IF EXISTS `ConversationDiscussions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationDiscussions` ( `cnvDiscussionID` int unsigned NOT NULL AUTO_INCREMENT, `cnvDiscussionDateCreated` datetime NOT NULL, `cID` int unsigned DEFAULT NULL, PRIMARY KEY (`cnvDiscussionID`), KEY `cID` (`cID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationDiscussions` -- LOCK TABLES `ConversationDiscussions` WRITE; /*!40000 ALTER TABLE `ConversationDiscussions` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationDiscussions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationEditors` -- DROP TABLE IF EXISTS `ConversationEditors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationEditors` ( `cnvEditorID` int unsigned NOT NULL AUTO_INCREMENT, `cnvEditorHandle` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvEditorName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvEditorIsActive` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cnvEditorID`), KEY `pkgID` (`pkgID`,`cnvEditorHandle`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationEditors` -- LOCK TABLES `ConversationEditors` WRITE; /*!40000 ALTER TABLE `ConversationEditors` DISABLE KEYS */; INSERT INTO `ConversationEditors` VALUES (1,'plain_text','Plain Text',1,0),(2,'markdown','Markdown',0,0),(3,'rich_text','Rich Text',0,0); /*!40000 ALTER TABLE `ConversationEditors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationFeatureDetailAssignments` -- DROP TABLE IF EXISTS `ConversationFeatureDetailAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationFeatureDetailAssignments` ( `faID` int unsigned NOT NULL DEFAULT '0', `cnvID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`faID`), KEY `cnvID` (`cnvID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationFeatureDetailAssignments` -- LOCK TABLES `ConversationFeatureDetailAssignments` WRITE; /*!40000 ALTER TABLE `ConversationFeatureDetailAssignments` DISABLE KEYS */; INSERT INTO `ConversationFeatureDetailAssignments` VALUES (1,1),(3,2),(4,3),(5,4); /*!40000 ALTER TABLE `ConversationFeatureDetailAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationFlaggedMessageTypes` -- DROP TABLE IF EXISTS `ConversationFlaggedMessageTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationFlaggedMessageTypes` ( `cnvMessageFlagTypeID` int unsigned NOT NULL AUTO_INCREMENT, `cnvMessageFlagTypeHandle` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`cnvMessageFlagTypeID`), UNIQUE KEY `cnvMessageFlagTypeHandle` (`cnvMessageFlagTypeHandle`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationFlaggedMessageTypes` -- LOCK TABLES `ConversationFlaggedMessageTypes` WRITE; /*!40000 ALTER TABLE `ConversationFlaggedMessageTypes` DISABLE KEYS */; INSERT INTO `ConversationFlaggedMessageTypes` VALUES (1,'spam'); /*!40000 ALTER TABLE `ConversationFlaggedMessageTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationFlaggedMessages` -- DROP TABLE IF EXISTS `ConversationFlaggedMessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationFlaggedMessages` ( `cnvMessageID` int unsigned NOT NULL, `cnvMessageFlagTypeID` int DEFAULT NULL, PRIMARY KEY (`cnvMessageID`), KEY `cnvMessageFlagTypeID` (`cnvMessageFlagTypeID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationFlaggedMessages` -- LOCK TABLES `ConversationFlaggedMessages` WRITE; /*!40000 ALTER TABLE `ConversationFlaggedMessages` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationFlaggedMessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationMessageAttachments` -- DROP TABLE IF EXISTS `ConversationMessageAttachments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationMessageAttachments` ( `cnvMessageAttachmentID` int unsigned NOT NULL AUTO_INCREMENT, `cnvMessageID` int DEFAULT NULL, `fID` int DEFAULT NULL, PRIMARY KEY (`cnvMessageAttachmentID`), KEY `cnvMessageID` (`cnvMessageID`), KEY `fID` (`fID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationMessageAttachments` -- LOCK TABLES `ConversationMessageAttachments` WRITE; /*!40000 ALTER TABLE `ConversationMessageAttachments` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationMessageAttachments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationMessageNotifications` -- DROP TABLE IF EXISTS `ConversationMessageNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationMessageNotifications` ( `cnvMessageID` int unsigned NOT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), CONSTRAINT `FK_559DE1CBED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationMessageNotifications` -- LOCK TABLES `ConversationMessageNotifications` WRITE; /*!40000 ALTER TABLE `ConversationMessageNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationMessageNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationMessageRatings` -- DROP TABLE IF EXISTS `ConversationMessageRatings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationMessageRatings` ( `cnvMessageRatingID` int unsigned NOT NULL AUTO_INCREMENT, `cnvMessageID` int unsigned DEFAULT NULL, `cnvRatingTypeID` int unsigned NOT NULL DEFAULT '0', `cnvMessageRatingIP` tinyblob, `timestamp` datetime DEFAULT NULL, `uID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cnvMessageRatingID`), KEY `cnvMessageID` (`cnvMessageID`,`cnvRatingTypeID`), KEY `cnvRatingTypeID` (`cnvRatingTypeID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationMessageRatings` -- LOCK TABLES `ConversationMessageRatings` WRITE; /*!40000 ALTER TABLE `ConversationMessageRatings` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationMessageRatings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationMessages` -- DROP TABLE IF EXISTS `ConversationMessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationMessages` ( `cnvMessageID` int unsigned NOT NULL AUTO_INCREMENT, `cnvID` int unsigned NOT NULL DEFAULT '0', `cnvMessageReview` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned NOT NULL DEFAULT '0', `cnvEditorID` int unsigned NOT NULL DEFAULT '0', `cnvMessageAuthorName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvMessageAuthorEmail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvMessageAuthorWebsite` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvMessageSubmitIP` tinyblob, `cnvMessageSubmitUserAgent` longtext COLLATE utf8mb4_unicode_ci, `cnvMessageLevel` int unsigned NOT NULL DEFAULT '0', `cnvMessageParentID` int unsigned NOT NULL DEFAULT '0', `cnvMessageDateCreated` datetime DEFAULT NULL, `cnvMessageSubject` text COLLATE utf8mb4_unicode_ci, `cnvMessageBody` text COLLATE utf8mb4_unicode_ci, `cnvIsMessageDeleted` tinyint(1) NOT NULL DEFAULT '0', `cnvIsMessageApproved` tinyint(1) NOT NULL DEFAULT '0', `cnvMessageTotalRatingScore` bigint DEFAULT '0', PRIMARY KEY (`cnvMessageID`), KEY `cnvID` (`cnvID`), KEY `cnvMessageParentID` (`cnvMessageParentID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationMessages` -- LOCK TABLES `ConversationMessages` WRITE; /*!40000 ALTER TABLE `ConversationMessages` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationMessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationPermissionAddMessageAccessList` -- DROP TABLE IF EXISTS `ConversationPermissionAddMessageAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationPermissionAddMessageAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'A', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationPermissionAddMessageAccessList` -- LOCK TABLES `ConversationPermissionAddMessageAccessList` WRITE; /*!40000 ALTER TABLE `ConversationPermissionAddMessageAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `ConversationPermissionAddMessageAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationPermissionAssignments` -- DROP TABLE IF EXISTS `ConversationPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationPermissionAssignments` ( `cnvID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cnvID`,`pkID`,`paID`), KEY `paID` (`paID`), KEY `pkID` (`pkID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationPermissionAssignments` -- LOCK TABLES `ConversationPermissionAssignments` WRITE; /*!40000 ALTER TABLE `ConversationPermissionAssignments` DISABLE KEYS */; INSERT INTO `ConversationPermissionAssignments` VALUES (0,67,111),(0,68,112),(0,71,113),(0,70,114),(0,72,115),(0,69,116),(0,73,117),(0,74,118); /*!40000 ALTER TABLE `ConversationPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationRatingTypes` -- DROP TABLE IF EXISTS `ConversationRatingTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationRatingTypes` ( `cnvRatingTypeID` int unsigned NOT NULL AUTO_INCREMENT, `cnvRatingTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvRatingTypeName` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cnvRatingTypeCommunityPoints` int DEFAULT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cnvRatingTypeID`), UNIQUE KEY `cnvRatingTypeHandle` (`cnvRatingTypeHandle`), KEY `pkgID` (`pkgID`,`cnvRatingTypeHandle`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationRatingTypes` -- LOCK TABLES `ConversationRatingTypes` WRITE; /*!40000 ALTER TABLE `ConversationRatingTypes` DISABLE KEYS */; INSERT INTO `ConversationRatingTypes` VALUES (1,'up_vote','Up Vote',1,0),(2,'down_vote','Down Vote',0,0); /*!40000 ALTER TABLE `ConversationRatingTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ConversationSubscriptions` -- DROP TABLE IF EXISTS `ConversationSubscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ConversationSubscriptions` ( `cnvID` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned NOT NULL DEFAULT '0', `type` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'S', PRIMARY KEY (`cnvID`,`uID`), KEY `cnvID` (`cnvID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ConversationSubscriptions` -- LOCK TABLES `ConversationSubscriptions` WRITE; /*!40000 ALTER TABLE `ConversationSubscriptions` DISABLE KEYS */; INSERT INTO `ConversationSubscriptions` VALUES (0,1,'S'); /*!40000 ALTER TABLE `ConversationSubscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Conversations` -- DROP TABLE IF EXISTS `Conversations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Conversations` ( `cnvID` int unsigned NOT NULL AUTO_INCREMENT, `cID` int unsigned DEFAULT '0', `cnvDateCreated` datetime NOT NULL, `cnvDateLastMessage` datetime DEFAULT NULL, `cnvParentMessageID` int unsigned DEFAULT '0', `cnvAttachmentsEnabled` tinyint(1) NOT NULL DEFAULT '1', `cnvMessagesTotal` int unsigned DEFAULT '0', `cnvOverrideGlobalPermissions` tinyint(1) DEFAULT '0', `cnvAttachmentOverridesEnabled` tinyint(1) NOT NULL DEFAULT '0', `cnvMaxFilesGuest` int DEFAULT '0', `cnvMaxFilesRegistered` int DEFAULT '0', `cnvMaxFileSizeGuest` int DEFAULT '0', `cnvMaxFileSizeRegistered` int DEFAULT '0', `cnvFileExtensions` text COLLATE utf8mb4_unicode_ci, `cnvNotificationOverridesEnabled` tinyint(1) NOT NULL DEFAULT '0', `cnvEnableSubscription` tinyint(1) DEFAULT '0', PRIMARY KEY (`cnvID`), KEY `cID` (`cID`), KEY `cnvParentMessageID` (`cnvParentMessageID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Conversations` -- LOCK TABLES `Conversations` WRITE; /*!40000 ALTER TABLE `Conversations` DISABLE KEYS */; INSERT INTO `Conversations` VALUES (1,204,'2020-05-22 13:43:37','2020-05-22 13:43:37',0,1,0,0,0,0,0,0,0,NULL,0,0),(2,205,'2020-05-22 13:43:45','2020-05-22 13:43:45',0,1,0,0,0,0,0,0,0,NULL,0,0),(3,206,'2020-05-22 13:43:45','2020-05-22 13:43:45',0,1,0,0,0,0,0,0,0,NULL,0,0),(4,207,'2020-05-22 13:43:46','2020-05-22 13:43:46',0,1,0,0,0,0,0,0,0,NULL,0,0); /*!40000 ALTER TABLE `Conversations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `DownloadStatistics` -- DROP TABLE IF EXISTS `DownloadStatistics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `DownloadStatistics` ( `dsID` int unsigned NOT NULL AUTO_INCREMENT, `fID` int unsigned NOT NULL, `fvID` int unsigned NOT NULL, `uID` int unsigned NOT NULL, `rcID` int unsigned NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`dsID`), KEY `fID` (`fID`,`timestamp`), KEY `fvID` (`fID`,`fvID`), KEY `uID` (`uID`), KEY `rcID` (`rcID`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `DownloadStatistics` -- LOCK TABLES `DownloadStatistics` WRITE; /*!40000 ALTER TABLE `DownloadStatistics` DISABLE KEYS */; /*!40000 ALTER TABLE `DownloadStatistics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressAttributeKeys` -- DROP TABLE IF EXISTS `ExpressAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressAttributeKeys` ( `entity_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), KEY `IDX_8C881F181257D5D` (`entity_id`), CONSTRAINT `FK_8C881F181257D5D` FOREIGN KEY (`entity_id`) REFERENCES `ExpressEntities` (`id`), CONSTRAINT `FK_8C881F1B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressAttributeKeys` -- LOCK TABLES `ExpressAttributeKeys` WRITE; /*!40000 ALTER TABLE `ExpressAttributeKeys` DISABLE KEYS */; INSERT INTO `ExpressAttributeKeys` VALUES ('<KEY>',35),('3f5b8799-9bdf-11ea-8bdc-503eaae88e7e',36),('3f5b8799-9bdf-11ea-8bdc-503eaae88e7e',37),('3f5b8799-9bdf-11ea-8bdc-503eaae88e7e',38),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6',30),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6',31),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6',32),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6',33),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6',34),('e10824eb-9bdf-11ea-8bdc-503eaae88e7e',39),('e10824eb-9bdf-11ea-8bdc-503eaae88e7e',40),('e10824eb-9bdf-11ea-8bdc-503eaae88e7e',41); /*!40000 ALTER TABLE `ExpressAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntities` -- DROP TABLE IF EXISTS `ExpressEntities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntities` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `default_view_form_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `default_edit_form_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `handle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `plural_handle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `label_mask` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `supports_custom_display_order` tinyint(1) NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, `result_column_set` longtext COLLATE utf8mb4_unicode_ci COMMENT '(DC2Type:object)', `include_in_public_list` tinyint(1) NOT NULL, `entity_results_node_id` int NOT NULL, `items_per_page` int NOT NULL, `created_date` datetime NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UNIQ_BC772AA6918020D9` (`handle`), UNIQUE KEY `UNIQ_BC772AA6547D6B2D` (`default_view_form_id`), UNIQUE KEY `UNIQ_BC772AA6C7DEC56D` (`default_edit_form_id`), KEY `IDX_BC772AA6CE45CBB0` (`pkgID`), CONSTRAINT `FK_BC772AA6547D6B2D` FOREIGN KEY (`default_view_form_id`) REFERENCES `ExpressForms` (`id`), CONSTRAINT `FK_BC772AA6C7DEC56D` FOREIGN KEY (`default_edit_form_id`) REFERENCES `ExpressForms` (`id`), CONSTRAINT `FK_BC772AA6CE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntities` -- LOCK TABLES `ExpressEntities` WRITE; /*!40000 ALTER TABLE `ExpressEntities` DISABLE KEYS */; INSERT INTO `ExpressEntities` VALUES ('3f5b8799-9bdf-11ea-8bdc-503eaae88e7e','3f5b98c7-9bdf-11ea-8bdc-503eaae88e7e','3f5b98c7-9bdf-11ea-8bdc-503eaae88e7e','Blog','Blog','Blogs','',0,'','N;',1,44,10,'2020-05-22 13:49:32',NULL),('83ae65b1-79e8-4ded-bbca-e419bfd19bb6','881b6bde-220f-4482-b8f9-ace40b5d169b','881b6bde-220f-4482-b8f9-ace40b5d169b','Contact','express_form_170','',NULL,0,'','N;',0,43,10,'2020-05-22 13:43:34',NULL),('e10824eb-9bdf-11ea-8bdc-503eaae88e7e','e1082dee-9bdf-11ea-8bdc-503eaae88e7e','e1082dee-9bdf-11ea-8bdc-503eaae88e7e','Campaign','campaignHandler','campaignHandlers','',0,'','N;',1,45,10,'2020-05-22 13:54:04',NULL); /*!40000 ALTER TABLE `ExpressEntities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntityAssociationEntries` -- DROP TABLE IF EXISTS `ExpressEntityAssociationEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntityAssociationEntries` ( `id` int NOT NULL AUTO_INCREMENT, `association_id` int DEFAULT NULL, `displayOrder` int unsigned NOT NULL DEFAULT '0', `exEntryID` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_9C2BB76C6DCB6296` (`exEntryID`), KEY `IDX_9C2BB76CEFB9C8A5` (`association_id`), CONSTRAINT `FK_9C2BB76C6DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`), CONSTRAINT `FK_9C2BB76CEFB9C8A5` FOREIGN KEY (`association_id`) REFERENCES `ExpressEntityEntryAssociations` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntityAssociationEntries` -- LOCK TABLES `ExpressEntityAssociationEntries` WRITE; /*!40000 ALTER TABLE `ExpressEntityAssociationEntries` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressEntityAssociationEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntityAssociations` -- DROP TABLE IF EXISTS `ExpressEntityAssociations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntityAssociations` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `source_entity_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `target_entity_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `is_owned_by_association` tinyint(1) NOT NULL, `is_owning_association` tinyint(1) NOT NULL, `target_property_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `inversed_by_property_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `association_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_98A0F796E9BBEE93` (`source_entity_id`), KEY `IDX_98A0F796B5910F71` (`target_entity_id`), CONSTRAINT `FK_98A0F796B5910F71` FOREIGN KEY (`target_entity_id`) REFERENCES `ExpressEntities` (`id`), CONSTRAINT `FK_98A0F796E9BBEE93` FOREIGN KEY (`source_entity_id`) REFERENCES `ExpressEntities` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntityAssociations` -- LOCK TABLES `ExpressEntityAssociations` WRITE; /*!40000 ALTER TABLE `ExpressEntityAssociations` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressEntityAssociations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntityEntries` -- DROP TABLE IF EXISTS `ExpressEntityEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntityEntries` ( `exEntryID` int NOT NULL AUTO_INCREMENT, `exEntryDisplayOrder` int NOT NULL, `exEntryDateCreated` datetime NOT NULL, `exEntryDateModified` datetime DEFAULT NULL, `uID` int unsigned DEFAULT NULL, `exEntryEntityID` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', PRIMARY KEY (`exEntryID`), KEY `IDX_B8AE3531FD71026C` (`uID`), KEY `IDX_B8AE3531AFC87D03` (`exEntryEntityID`), CONSTRAINT `FK_B8AE3531AFC87D03` FOREIGN KEY (`exEntryEntityID`) REFERENCES `ExpressEntities` (`id`), CONSTRAINT `FK_B8AE3531FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntityEntries` -- LOCK TABLES `ExpressEntityEntries` WRITE; /*!40000 ALTER TABLE `ExpressEntityEntries` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressEntityEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntityEntryAssociations` -- DROP TABLE IF EXISTS `ExpressEntityEntryAssociations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntityEntryAssociations` ( `id` int NOT NULL AUTO_INCREMENT, `association_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `exEntryID` int DEFAULT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `IDX_25B3A0826DCB6296` (`exEntryID`), KEY `IDX_25B3A082EFB9C8A5` (`association_id`), CONSTRAINT `FK_25B3A0826DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`), CONSTRAINT `FK_25B3A082EFB9C8A5` FOREIGN KEY (`association_id`) REFERENCES `ExpressEntityAssociations` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntityEntryAssociations` -- LOCK TABLES `ExpressEntityEntryAssociations` WRITE; /*!40000 ALTER TABLE `ExpressEntityEntryAssociations` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressEntityEntryAssociations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressEntityEntryAttributeValues` -- DROP TABLE IF EXISTS `ExpressEntityEntryAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressEntityEntryAttributeValues` ( `exEntryID` int NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`exEntryID`,`akID`), KEY `IDX_6DB641546DCB6296` (`exEntryID`), KEY `IDX_6DB64154B6561A7E` (`akID`), KEY `IDX_6DB64154A2A82A5D` (`avID`), CONSTRAINT `FK_6DB641546DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`), CONSTRAINT `FK_6DB64154A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_6DB64154B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressEntityEntryAttributeValues` -- LOCK TABLES `ExpressEntityEntryAttributeValues` WRITE; /*!40000 ALTER TABLE `ExpressEntityEntryAttributeValues` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressEntityEntryAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressForm170ExpressSearchIndexAttributes` -- DROP TABLE IF EXISTS `ExpressForm170ExpressSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressForm170ExpressSearchIndexAttributes` ( `exEntryID` int NOT NULL, `ak_contact_question_first_name` longtext COLLATE utf8mb4_unicode_ci, `ak_contact_question_last_name` longtext COLLATE utf8mb4_unicode_ci, `ak_contact_question_email_address` longtext COLLATE utf8mb4_unicode_ci, `ak_contact_question_subject` longtext COLLATE utf8mb4_unicode_ci, `ak_contact_question_message` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`exEntryID`), CONSTRAINT `FK_722F0F0E6DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressForm170ExpressSearchIndexAttributes` -- LOCK TABLES `ExpressForm170ExpressSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `ExpressForm170ExpressSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressForm170ExpressSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSetAssociationControls` -- DROP TABLE IF EXISTS `ExpressFormFieldSetAssociationControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSetAssociationControls` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `association_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `association_entity_label_mask` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `entry_selector_mode` int unsigned NOT NULL DEFAULT '0', `enable_entry_reordering` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `IDX_E6DF21BBEFB9C8A5` (`association_id`), CONSTRAINT `FK_E6DF21BBBF396750` FOREIGN KEY (`id`) REFERENCES `ExpressFormFieldSetControls` (`id`) ON DELETE CASCADE, CONSTRAINT `FK_E6DF21BBEFB9C8A5` FOREIGN KEY (`association_id`) REFERENCES `ExpressEntityAssociations` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSetAssociationControls` -- LOCK TABLES `ExpressFormFieldSetAssociationControls` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSetAssociationControls` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressFormFieldSetAssociationControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSetAttributeKeyControls` -- DROP TABLE IF EXISTS `ExpressFormFieldSetAttributeKeyControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSetAttributeKeyControls` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `akID` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_8481F9D1B6561A7E` (`akID`), CONSTRAINT `FK_8481F9D1B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`), CONSTRAINT `FK_8481F9D1BF396750` FOREIGN KEY (`id`) REFERENCES `ExpressFormFieldSetControls` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSetAttributeKeyControls` -- LOCK TABLES `ExpressFormFieldSetAttributeKeyControls` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSetAttributeKeyControls` DISABLE KEYS */; INSERT INTO `ExpressFormFieldSetAttributeKeyControls` VALUES ('f68175ca-634c-11e6-a245-62e65b165d8e',30),('fbc62d32-634c-11e6-a245-62e65b165d8e',31),('02181ae2-634d-11e6-a245-62e65b165d8e',32),('b3c4ee52-6350-11e6-a245-62e65b165d8e',33),('bf4cdc08-6350-11e6-a245-62e65b165d8e',34),('8b11ce44-9bdf-11ea-8bdc-503eaae88e7e',35),('8d2412a6-9bdf-11ea-8bdc-503eaae88e7e',36),('8f1894a8-9bdf-11ea-8bdc-503eaae88e7e',37),('a295a10f-9bdf-11ea-8bdc-503eaae88e7e',38),('594ad553-9be0-11ea-8bdc-503eaae88e7e',39),('5abb25f2-9be0-11ea-8bdc-503eaae88e7e',40),('5c291730-9be0-11ea-8bdc-503eaae88e7e',41); /*!40000 ALTER TABLE `ExpressFormFieldSetAttributeKeyControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSetAuthorControls` -- DROP TABLE IF EXISTS `ExpressFormFieldSetAuthorControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSetAuthorControls` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', PRIMARY KEY (`id`), CONSTRAINT `FK_CF378786BF396750` FOREIGN KEY (`id`) REFERENCES `ExpressFormFieldSetControls` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSetAuthorControls` -- LOCK TABLES `ExpressFormFieldSetAuthorControls` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSetAuthorControls` DISABLE KEYS */; /*!40000 ALTER TABLE `ExpressFormFieldSetAuthorControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSetControls` -- DROP TABLE IF EXISTS `ExpressFormFieldSetControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSetControls` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `field_set_id` int DEFAULT NULL, `is_required` tinyint(1) NOT NULL, `position` int NOT NULL, `custom_label` longtext COLLATE utf8mb4_unicode_ci, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `IDX_E42868A43ABF811A` (`field_set_id`), CONSTRAINT `FK_E42868A43ABF811A` FOREIGN KEY (`field_set_id`) REFERENCES `ExpressFormFieldSets` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSetControls` -- LOCK TABLES `ExpressFormFieldSetControls` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSetControls` DISABLE KEYS */; INSERT INTO `ExpressFormFieldSetControls` VALUES ('02181ae2-634d-11e6-a245-62e65b165d8e',1,1,2,'','attributekeycontrol'),('32a6369e-65a0-11e6-9add-e0995e0a1653',1,0,3,'','textcontrol'),('594ad553-9be0-11ea-8bdc-503eaae88e7e',3,0,0,NULL,'attributekeycontrol'),('5abb25f2-9be0-11ea-8bdc-503eaae88e7e',3,0,1,NULL,'attributekeycontrol'),('5c291730-9be0-11ea-8bdc-503eaae88e7e',3,0,2,NULL,'attributekeycontrol'),('8b11ce44-9bdf-11ea-8bdc-503eaae88e7e',2,0,0,NULL,'attributekeycontrol'),('8d2412a6-9bdf-11ea-8bdc-503eaae88e7e',2,0,1,NULL,'attributekeycontrol'),('8f1894a8-9bdf-11ea-8bdc-503eaae88e7e',2,0,2,NULL,'attributekeycontrol'),('a295a10f-9bdf-11ea-8bdc-503eaae88e7e',2,0,3,NULL,'attributekeycontrol'),('b3c4ee52-6350-11e6-a245-62e65b165d8e',1,0,4,'','attributekeycontrol'),('bf4cdc08-6350-11e6-a245-62e65b165d8e',1,1,5,'','attributekeycontrol'),('f68175ca-634c-11e6-a245-62e65b165d8e',1,1,0,'','attributekeycontrol'),('fbc62d32-634c-11e6-a245-62e65b165d8e',1,1,1,'','attributekeycontrol'); /*!40000 ALTER TABLE `ExpressFormFieldSetControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSetTextControls` -- DROP TABLE IF EXISTS `ExpressFormFieldSetTextControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSetTextControls` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `headline` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `body` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), CONSTRAINT `FK_DB5A209ABF396750` FOREIGN KEY (`id`) REFERENCES `ExpressFormFieldSetControls` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSetTextControls` -- LOCK TABLES `ExpressFormFieldSetTextControls` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSetTextControls` DISABLE KEYS */; INSERT INTO `ExpressFormFieldSetTextControls` VALUES ('32a6369e-65a0-11e6-9add-e0995e0a1653','','<div class=\"alert alert-info\">Don&#39;t worry &ndash;&nbsp;we won&#39;t add you to any email list. This is just so we can contact you in case you have questions.</div>\n'); /*!40000 ALTER TABLE `ExpressFormFieldSetTextControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressFormFieldSets` -- DROP TABLE IF EXISTS `ExpressFormFieldSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressFormFieldSets` ( `id` int NOT NULL AUTO_INCREMENT, `form_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `position` int NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `IDX_A33BBBEC5FF69B7D` (`form_id`), CONSTRAINT `FK_A33BBBEC5FF69B7D` FOREIGN KEY (`form_id`) REFERENCES `ExpressForms` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressFormFieldSets` -- LOCK TABLES `ExpressFormFieldSets` WRITE; /*!40000 ALTER TABLE `ExpressFormFieldSets` DISABLE KEYS */; INSERT INTO `ExpressFormFieldSets` VALUES (1,'881b6bde-220f-4482-b8f9-ace40b5d169b',0,'',''),(2,'469406ec-9bdf-11ea-8bdc-503eaae88e7e',0,'Basic',NULL),(3,'e1082dee-9bdf-11ea-8bdc-503eaae88e7e',0,'Basic',NULL); /*!40000 ALTER TABLE `ExpressFormFieldSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ExpressForms` -- DROP TABLE IF EXISTS `ExpressForms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ExpressForms` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `entity_id` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_8D09031A81257D5D` (`entity_id`), CONSTRAINT `FK_8D09031A81257D5D` FOREIGN KEY (`entity_id`) REFERENCES `ExpressEntities` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ExpressForms` -- LOCK TABLES `ExpressForms` WRITE; /*!40000 ALTER TABLE `ExpressForms` DISABLE KEYS */; INSERT INTO `ExpressForms` VALUES ('3f5b98c7-9bdf-11ea-8bdc-503eaae88e7e','3f5b8799-9bdf-11ea-8bdc-503eaae88e7e','Form'),('469406ec-9bdf-11ea-8bdc-503eaae88e7e','3f5b8799-9bdf-11ea-8bdc-503eaae88e7e','Title'),('881b6bde-220f-4482-b8f9-ace40b5d169b','83ae65b1-79e8-4ded-bbca-e419bfd19bb6','Form'),('e1082dee-9bdf-11ea-8bdc-503eaae88e7e','e10824eb-9bdf-11ea-8bdc-503eaae88e7e','Form'); /*!40000 ALTER TABLE `ExpressForms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FailedLoginAttempts` -- DROP TABLE IF EXISTS `FailedLoginAttempts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FailedLoginAttempts` ( `lcirID` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record identifier', `flaIp` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address of the failed login attempt', `flaTimestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp of the failed login attempt', PRIMARY KEY (`lcirID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Records failed login attempts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FailedLoginAttempts` -- LOCK TABLES `FailedLoginAttempts` WRITE; /*!40000 ALTER TABLE `FailedLoginAttempts` DISABLE KEYS */; /*!40000 ALTER TABLE `FailedLoginAttempts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FeatureAssignments` -- DROP TABLE IF EXISTS `FeatureAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FeatureAssignments` ( `faID` int unsigned NOT NULL AUTO_INCREMENT, `feID` int unsigned DEFAULT NULL, `fcID` int unsigned DEFAULT NULL, `fdObject` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`faID`), KEY `feID` (`feID`), KEY `fcID` (`fcID`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FeatureAssignments` -- LOCK TABLES `FeatureAssignments` WRITE; /*!40000 ALTER TABLE `FeatureAssignments` DISABLE KEYS */; INSERT INTO `FeatureAssignments` VALUES (1,6,1,'O:47:\"Concrete\\Core\\Feature\\Detail\\ConversationDetail\":3:{s:8:\"\0*\0cnvID\";s:1:\"1\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(2,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:44:\"/application/files/4915/9011/9010/blank2.png\";s:8:\"\0*\0width\";s:3:\"250\";s:9:\"\0*\0height\";s:3:\"252\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(3,6,1,'O:47:\"Concrete\\Core\\Feature\\Detail\\ConversationDetail\":3:{s:8:\"\0*\0cnvID\";s:1:\"2\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(4,6,1,'O:47:\"Concrete\\Core\\Feature\\Detail\\ConversationDetail\":3:{s:8:\"\0*\0cnvID\";s:1:\"3\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(5,6,1,'O:47:\"Concrete\\Core\\Feature\\Detail\\ConversationDetail\":3:{s:8:\"\0*\0cnvID\";s:1:\"4\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(6,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:52:\"/application/files/8215/9011/9012/chinese_house2.jpg\";s:8:\"\0*\0width\";s:3:\"200\";s:9:\"\0*\0height\";s:3:\"200\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(7,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:43:\"/application/files/9115/9011/9011/blank.png\";s:8:\"\0*\0width\";s:3:\"592\";s:9:\"\0*\0height\";s:3:\"397\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(8,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:43:\"/application/files/9115/9011/9011/blank.png\";s:8:\"\0*\0width\";s:3:\"592\";s:9:\"\0*\0height\";s:3:\"397\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(9,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:44:\"/application/files/4915/9011/9010/blank2.png\";s:8:\"\0*\0width\";s:3:\"250\";s:9:\"\0*\0height\";s:3:\"252\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'),(10,5,1,'O:40:\"Concrete\\Core\\Feature\\Detail\\ImageDetail\":5:{s:6:\"\0*\0src\";s:46:\"/application/files/5515/9011/9010/masthead.png\";s:8:\"\0*\0width\";s:4:\"1100\";s:9:\"\0*\0height\";s:3:\"263\";s:7:\"\0*\0item\";N;s:5:\"error\";s:0:\"\";}'); /*!40000 ALTER TABLE `FeatureAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FeatureCategories` -- DROP TABLE IF EXISTS `FeatureCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FeatureCategories` ( `fcID` int unsigned NOT NULL AUTO_INCREMENT, `fcHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`fcID`), UNIQUE KEY `fcHandle` (`fcHandle`), KEY `pkgID` (`pkgID`,`fcID`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FeatureCategories` -- LOCK TABLES `FeatureCategories` WRITE; /*!40000 ALTER TABLE `FeatureCategories` DISABLE KEYS */; INSERT INTO `FeatureCategories` VALUES (1,'collection_version',0),(2,'gathering_item',0); /*!40000 ALTER TABLE `FeatureCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Features` -- DROP TABLE IF EXISTS `Features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Features` ( `feID` int unsigned NOT NULL AUTO_INCREMENT, `feHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `feScore` int NOT NULL DEFAULT '1', `feHasCustomClass` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`feID`), UNIQUE KEY `feHandle` (`feHandle`), KEY `pkgID` (`pkgID`,`feID`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Features` -- LOCK TABLES `Features` WRITE; /*!40000 ALTER TABLE `Features` DISABLE KEYS */; INSERT INTO `Features` VALUES (1,'title',1,0,0),(2,'link',1,0,0),(3,'author',1,0,0),(4,'date_time',1,0,0),(5,'image',500,1,0),(6,'conversation',10,1,0),(7,'description',1,0,0),(8,'featured',1000,0,0); /*!40000 ALTER TABLE `Features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileAttributeKeys` -- DROP TABLE IF EXISTS `FileAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileAttributeKeys` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_BC5C7BBB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileAttributeKeys` -- LOCK TABLES `FileAttributeKeys` WRITE; /*!40000 ALTER TABLE `FileAttributeKeys` DISABLE KEYS */; INSERT INTO `FileAttributeKeys` VALUES (16),(17),(19); /*!40000 ALTER TABLE `FileAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileAttributeValues` -- DROP TABLE IF EXISTS `FileAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileAttributeValues` ( `fID` int unsigned NOT NULL, `fvID` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`fID`,`fvID`,`akID`), KEY `IDX_BBECEAA4B6561A7E` (`akID`), KEY `IDX_BBECEAA4A2A82A5D` (`avID`), CONSTRAINT `FK_BBECEAA4A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_BBECEAA4B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileAttributeValues` -- LOCK TABLES `FileAttributeValues` WRITE; /*!40000 ALTER TABLE `FileAttributeValues` DISABLE KEYS */; INSERT INTO `FileAttributeValues` VALUES (1,1,16,151),(1,1,17,152),(2,1,16,153),(2,1,17,154),(3,1,16,155),(3,1,17,156),(4,1,16,157),(4,1,17,158),(5,1,16,159),(5,1,17,160),(6,1,16,161),(6,1,17,162),(7,1,16,163),(7,1,17,164),(8,1,16,165),(8,1,17,166),(9,1,16,167),(9,1,17,168),(10,1,16,169),(10,1,17,170),(11,1,16,171),(11,1,17,172),(12,1,16,173),(12,1,17,174),(13,1,16,175),(13,1,17,176),(14,1,16,177),(14,1,17,178),(15,1,16,179),(15,1,17,180),(16,1,16,181),(16,1,17,182); /*!40000 ALTER TABLE `FileAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileImageThumbnailPaths` -- DROP TABLE IF EXISTS `FileImageThumbnailPaths`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileImageThumbnailPaths` ( `fileID` int unsigned NOT NULL, `fileVersionID` int unsigned NOT NULL, `thumbnailTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `storageLocationID` int unsigned NOT NULL, `thumbnailFormat` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL, `path` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `isBuilt` tinyint(1) NOT NULL, `lockID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lockExpires` datetime DEFAULT NULL, PRIMARY KEY (`fileID`,`fileVersionID`,`thumbnailTypeHandle`,`storageLocationID`,`thumbnailFormat`), KEY `thumbnailPathIsBuilt` (`isBuilt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileImageThumbnailPaths` -- LOCK TABLES `FileImageThumbnailPaths` WRITE; /*!40000 ALTER TABLE `FileImageThumbnailPaths` DISABLE KEYS */; INSERT INTO `FileImageThumbnailPaths` VALUES (7,1,'large',1,'jpeg','/thumbnails/large/5115/9011/9011/subway.jpg',1,NULL,NULL),(7,1,'medium',1,'jpeg','/thumbnails/medium/5115/9011/9011/subway.jpg',1,NULL,NULL),(7,1,'small',1,'jpeg','/thumbnails/small/5115/9011/9011/subway.jpg',1,NULL,NULL),(8,1,'large',1,'jpeg','/thumbnails/large/8515/9011/9011/sunset.jpg',1,NULL,NULL),(8,1,'medium',1,'jpeg','/thumbnails/medium/8515/9011/9011/sunset.jpg',1,NULL,NULL),(8,1,'small',1,'jpeg','/thumbnails/small/8515/9011/9011/sunset.jpg',1,NULL,NULL),(10,1,'large',1,'jpeg','/thumbnails/large/6415/9011/9011/bridge.jpg',1,NULL,NULL),(10,1,'medium',1,'jpeg','/thumbnails/medium/6415/9011/9011/bridge.jpg',1,NULL,NULL),(10,1,'small',1,'jpeg','/thumbnails/small/6415/9011/9011/bridge.jpg',1,NULL,NULL),(15,1,'large',1,'jpeg','/thumbnails/large/1234/1234/5678/plants.jpg',1,NULL,NULL),(15,1,'medium',1,'jpeg','/thumbnails/medium/1234/1234/5678/plants.jpg',1,NULL,NULL),(15,1,'small',1,'jpeg','/thumbnails/small/1234/1234/5678/plants.jpg',1,NULL,NULL); /*!40000 ALTER TABLE `FileImageThumbnailPaths` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileImageThumbnailTypeFileSets` -- DROP TABLE IF EXISTS `FileImageThumbnailTypeFileSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileImageThumbnailTypeFileSets` ( `ftfsFileSetID` int unsigned NOT NULL, `ftfsThumbnailType` int NOT NULL, PRIMARY KEY (`ftfsThumbnailType`,`ftfsFileSetID`), KEY `IDX_BD75F88D480660E5` (`ftfsThumbnailType`), CONSTRAINT `FK_BD75F88D480660E5` FOREIGN KEY (`ftfsThumbnailType`) REFERENCES `FileImageThumbnailTypes` (`ftTypeID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileImageThumbnailTypeFileSets` -- LOCK TABLES `FileImageThumbnailTypeFileSets` WRITE; /*!40000 ALTER TABLE `FileImageThumbnailTypeFileSets` DISABLE KEYS */; /*!40000 ALTER TABLE `FileImageThumbnailTypeFileSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileImageThumbnailTypes` -- DROP TABLE IF EXISTS `FileImageThumbnailTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileImageThumbnailTypes` ( `ftTypeID` int NOT NULL AUTO_INCREMENT, `ftTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ftTypeName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ftTypeWidth` int DEFAULT NULL, `ftTypeHeight` int DEFAULT NULL, `ftTypeIsRequired` tinyint(1) NOT NULL, `ftTypeSizingMode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ftUpscalingEnabled` tinyint(1) NOT NULL, `ftLimitedToFileSets` tinyint(1) NOT NULL, `ftKeepAnimations` tinyint(1) NOT NULL, `ftSaveAreaBackgroundColor` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`ftTypeID`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileImageThumbnailTypes` -- LOCK TABLES `FileImageThumbnailTypes` WRITE; /*!40000 ALTER TABLE `FileImageThumbnailTypes` DISABLE KEYS */; INSERT INTO `FileImageThumbnailTypes` VALUES (1,'small','Small Image',740,NULL,0,'proportional',0,0,0,''),(2,'medium','Medium Image',940,NULL,0,'proportional',0,0,0,''),(3,'large','Large Image',1140,NULL,0,'proportional',0,0,0,''),(4,'file_manager_listing','File Manager Thumbnails',60,60,1,'exact',1,0,0,''),(5,'file_manager_detail','File Manager Detail Thumbnails',400,400,1,'exact',0,0,0,''); /*!40000 ALTER TABLE `FileImageThumbnailTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FilePermissionAssignments` -- DROP TABLE IF EXISTS `FilePermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FilePermissionAssignments` ( `fID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fID`,`pkID`,`paID`), KEY `pkID` (`pkID`), KEY `paID` (`paID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FilePermissionAssignments` -- LOCK TABLES `FilePermissionAssignments` WRITE; /*!40000 ALTER TABLE `FilePermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `FilePermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FilePermissionFileTypeAccessList` -- DROP TABLE IF EXISTS `FilePermissionFileTypeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FilePermissionFileTypeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FilePermissionFileTypeAccessList` -- LOCK TABLES `FilePermissionFileTypeAccessList` WRITE; /*!40000 ALTER TABLE `FilePermissionFileTypeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `FilePermissionFileTypeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FilePermissionFileTypeAccessListCustom` -- DROP TABLE IF EXISTS `FilePermissionFileTypeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FilePermissionFileTypeAccessListCustom` ( `extension` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`extension`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FilePermissionFileTypeAccessListCustom` -- LOCK TABLES `FilePermissionFileTypeAccessListCustom` WRITE; /*!40000 ALTER TABLE `FilePermissionFileTypeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `FilePermissionFileTypeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FilePermissionFileTypes` -- DROP TABLE IF EXISTS `FilePermissionFileTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FilePermissionFileTypes` ( `extension` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `fsID` int unsigned NOT NULL DEFAULT '0', `gID` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fsID`,`gID`,`uID`,`extension`), KEY `gID` (`gID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FilePermissionFileTypes` -- LOCK TABLES `FilePermissionFileTypes` WRITE; /*!40000 ALTER TABLE `FilePermissionFileTypes` DISABLE KEYS */; /*!40000 ALTER TABLE `FilePermissionFileTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileSearchIndexAttributes` -- DROP TABLE IF EXISTS `FileSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileSearchIndexAttributes` ( `fID` int unsigned NOT NULL, `ak_width` decimal(14,4) DEFAULT '0.0000', `ak_height` decimal(14,4) DEFAULT '0.0000', `ak_duration` decimal(14,4) DEFAULT '0.0000', PRIMARY KEY (`fID`), CONSTRAINT `FK_3A3A4845E3111F45` FOREIGN KEY (`fID`) REFERENCES `Files` (`fID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileSearchIndexAttributes` -- LOCK TABLES `FileSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `FileSearchIndexAttributes` DISABLE KEYS */; INSERT INTO `FileSearchIndexAttributes` VALUES (1,250.0000,252.0000,0.0000),(2,1600.0000,1067.0000,0.0000),(3,1100.0000,263.0000,0.0000),(4,1600.0000,1067.0000,0.0000),(5,1499.0000,1067.0000,0.0000),(6,1100.0000,368.0000,0.0000),(7,1600.0000,1067.0000,0.0000),(8,1600.0000,953.0000,0.0000),(9,592.0000,397.0000,0.0000),(10,1600.0000,1067.0000,0.0000),(11,200.0000,200.0000,0.0000),(12,460.0000,460.0000,0.0000),(13,1100.0000,368.0000,0.0000),(14,200.0000,200.0000,0.0000),(15,1600.0000,1066.0000,0.0000),(16,500.0000,500.0000,0.0000); /*!40000 ALTER TABLE `FileSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileSetFiles` -- DROP TABLE IF EXISTS `FileSetFiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileSetFiles` ( `fsfID` int unsigned NOT NULL AUTO_INCREMENT, `fID` int unsigned NOT NULL, `fsID` int unsigned NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `fsDisplayOrder` int unsigned NOT NULL, PRIMARY KEY (`fsfID`), KEY `fID` (`fID`), KEY `fsID` (`fsID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileSetFiles` -- LOCK TABLES `FileSetFiles` WRITE; /*!40000 ALTER TABLE `FileSetFiles` DISABLE KEYS */; /*!40000 ALTER TABLE `FileSetFiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileSetSavedSearches` -- DROP TABLE IF EXISTS `FileSetSavedSearches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileSetSavedSearches` ( `fsID` int unsigned NOT NULL DEFAULT '0', `fsSearchRequest` text COLLATE utf8mb4_unicode_ci, `fsResultColumns` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`fsID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileSetSavedSearches` -- LOCK TABLES `FileSetSavedSearches` WRITE; /*!40000 ALTER TABLE `FileSetSavedSearches` DISABLE KEYS */; /*!40000 ALTER TABLE `FileSetSavedSearches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileSets` -- DROP TABLE IF EXISTS `FileSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileSets` ( `fsID` int unsigned NOT NULL AUTO_INCREMENT, `fsName` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `uID` int unsigned NOT NULL DEFAULT '0', `fsType` smallint NOT NULL, `fsOverrideGlobalPermissions` smallint DEFAULT NULL, PRIMARY KEY (`fsID`), KEY `uID` (`uID`,`fsType`,`fsName`), KEY `fsName` (`fsName`), KEY `fsType` (`fsType`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileSets` -- LOCK TABLES `FileSets` WRITE; /*!40000 ALTER TABLE `FileSets` DISABLE KEYS */; /*!40000 ALTER TABLE `FileSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileStorageLocationTypes` -- DROP TABLE IF EXISTS `FileStorageLocationTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileStorageLocationTypes` ( `fslTypeHandle` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `fslTypeName` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `fslTypeID` int NOT NULL AUTO_INCREMENT, `pkgID` int NOT NULL, PRIMARY KEY (`fslTypeID`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileStorageLocationTypes` -- LOCK TABLES `FileStorageLocationTypes` WRITE; /*!40000 ALTER TABLE `FileStorageLocationTypes` DISABLE KEYS */; INSERT INTO `FileStorageLocationTypes` VALUES ('default','Default',1,0),('local','Local',2,0); /*!40000 ALTER TABLE `FileStorageLocationTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileStorageLocations` -- DROP TABLE IF EXISTS `FileStorageLocations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileStorageLocations` ( `fslName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `fslConfiguration` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `fslID` int unsigned NOT NULL AUTO_INCREMENT, `fslIsDefault` tinyint(1) NOT NULL, PRIMARY KEY (`fslID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileStorageLocations` -- LOCK TABLES `FileStorageLocations` WRITE; /*!40000 ALTER TABLE `FileStorageLocations` DISABLE KEYS */; INSERT INTO `FileStorageLocations` VALUES ('Default','O:69:\"Concrete\\Core\\File\\StorageLocation\\Configuration\\DefaultConfiguration\":1:{s:10:\"\0*\0default\";b:1;}',1,1); /*!40000 ALTER TABLE `FileStorageLocations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileUsageRecord` -- DROP TABLE IF EXISTS `FileUsageRecord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileUsageRecord` ( `file_id` int NOT NULL, `block_id` int NOT NULL, `collection_id` int NOT NULL, `collection_version_id` int NOT NULL, PRIMARY KEY (`file_id`,`block_id`,`collection_id`,`collection_version_id`), KEY `block` (`block_id`), KEY `collection_version` (`collection_id`,`collection_version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileUsageRecord` -- LOCK TABLES `FileUsageRecord` WRITE; /*!40000 ALTER TABLE `FileUsageRecord` DISABLE KEYS */; INSERT INTO `FileUsageRecord` VALUES (1,123,191,1),(11,138,195,1),(9,145,208,1),(9,152,208,1),(1,156,208,1),(3,159,209,1); /*!40000 ALTER TABLE `FileUsageRecord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileVersionLog` -- DROP TABLE IF EXISTS `FileVersionLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileVersionLog` ( `fvlID` int unsigned NOT NULL AUTO_INCREMENT, `fID` int unsigned NOT NULL DEFAULT '0', `fvID` int unsigned NOT NULL DEFAULT '0', `fvUpdateTypeID` smallint unsigned NOT NULL DEFAULT '0', `fvUpdateTypeAttributeID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fvlID`), KEY `fvID` (`fID`,`fvID`,`fvlID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileVersionLog` -- LOCK TABLES `FileVersionLog` WRITE; /*!40000 ALTER TABLE `FileVersionLog` DISABLE KEYS */; /*!40000 ALTER TABLE `FileVersionLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FileVersions` -- DROP TABLE IF EXISTS `FileVersions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FileVersions` ( `fvID` int NOT NULL, `fvFilename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `fvPrefix` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fvDateAdded` datetime NOT NULL, `fvActivateDateTime` datetime NOT NULL, `fvIsApproved` tinyint(1) NOT NULL, `fvAuthorUID` int NOT NULL, `fvApproverUID` int NOT NULL, `fvSize` bigint NOT NULL, `fvTitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fvDescription` longtext COLLATE utf8mb4_unicode_ci, `fvExtension` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fvTags` longtext COLLATE utf8mb4_unicode_ci, `fvType` int NOT NULL, `fvHasListingThumbnail` tinyint(1) NOT NULL, `fvHasDetailThumbnail` tinyint(1) NOT NULL, `fID` int unsigned NOT NULL, PRIMARY KEY (`fID`,`fvID`), KEY `IDX_D7B5A13AE3111F45` (`fID`), KEY `fvFilename` (`fvFilename`), KEY `fvExtension` (`fvExtension`), KEY `fvType` (`fvType`), CONSTRAINT `FK_D7B5A13AE3111F45` FOREIGN KEY (`fID`) REFERENCES `Files` (`fID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FileVersions` -- LOCK TABLES `FileVersions` WRITE; /*!40000 ALTER TABLE `FileVersions` DISABLE KEYS */; INSERT INTO `FileVersions` VALUES (1,'blank2.png','491590119010','2020-05-22 13:43:30','2020-05-22 13:43:30',1,1,1,1210,'blank2.png','','png','',1,1,0,1),(1,'shoes.jpg','501590119010','2020-05-22 13:43:30','2020-05-22 13:43:30',1,1,1,170179,'shoes.jpg','','jpg','',1,1,1,2),(1,'masthead.png','551590119010','2020-05-22 13:43:30','2020-05-22 13:43:30',1,1,1,1429,'masthead.png','','png','',1,1,1,3),(1,'mountains.jpg','161590119010','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,330436,'mountains.jpg','','jpg','',1,1,1,4),(1,'houses.jpg','361590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,293154,'houses.jpg','','jpg','',1,1,1,5),(1,'slider1.png','321590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,78494,'slider1.png','','png','',1,1,1,6),(1,'subway.jpg','511590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,305595,'subway.jpg','','jpg','',1,1,1,7),(1,'sunset.jpg','851590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,458047,'sunset.jpg','','jpg','',1,1,1,8),(1,'blank.png','911590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,1837,'blank.png','','png','',1,1,1,9),(1,'bridge.jpg','641590119011','2020-05-22 13:43:31','2020-05-22 13:43:31',1,1,1,211901,'bridge.jpg','','jpg','',1,1,1,10),(1,'chinese_house2.jpg','821590119012','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,84383,'chinese_house2.jpg','','jpg','',1,1,0,11),(1,'bio.png','311590119012','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,1353,'bio.png','','png','',1,1,1,12),(1,'slider2.png','651590119012','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,111308,'slider2.png','','png','',1,1,1,13),(1,'avatar_none.png','531590119012','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,12769,'avatar_none.png','','png','',1,1,0,14),(1,'plants.jpg','123412345678','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,373839,'plants.jpg','','jpg','',1,1,1,15),(1,'balloon.jpg','501590119012','2020-05-22 13:43:32','2020-05-22 13:43:32',1,1,1,49708,'balloon.jpg','','jpg','',1,1,1,16); /*!40000 ALTER TABLE `FileVersions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Files` -- DROP TABLE IF EXISTS `Files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Files` ( `fID` int unsigned NOT NULL AUTO_INCREMENT, `fDateAdded` datetime NOT NULL, `fPassword` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fOverrideSetPermissions` tinyint(1) NOT NULL, `ocID` int unsigned NOT NULL, `folderTreeNodeID` int unsigned NOT NULL, `uID` int unsigned DEFAULT NULL, `fslID` int unsigned DEFAULT NULL, PRIMARY KEY (`fID`), KEY `uID` (`uID`), KEY `fslID` (`fslID`), KEY `ocID` (`ocID`), KEY `fOverrideSetPermissions` (`fOverrideSetPermissions`), CONSTRAINT `FK_C7F46F5DB81D3903` FOREIGN KEY (`fslID`) REFERENCES `FileStorageLocations` (`fslID`), CONSTRAINT `FK_C7F46F5DFD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Files` -- LOCK TABLES `Files` WRITE; /*!40000 ALTER TABLE `Files` DISABLE KEYS */; INSERT INTO `Files` VALUES (1,'2020-05-22 13:43:30',NULL,0,0,7,1,1),(2,'2020-05-22 13:43:30',NULL,0,0,7,1,1),(3,'2020-05-22 13:43:30',NULL,0,0,7,1,1),(4,'2020-05-22 13:43:30',NULL,0,0,7,1,1),(5,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(6,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(7,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(8,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(9,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(10,'2020-05-22 13:43:31',NULL,0,0,7,1,1),(11,'2020-05-22 13:43:32',NULL,0,0,7,1,1),(12,'2020-05-22 13:43:32',NULL,0,0,7,1,1),(13,'2020-05-22 13:43:32',NULL,0,0,7,1,1),(14,'2020-05-22 13:43:32',NULL,0,0,7,1,1),(15,'2020-05-22 13:43:32',NULL,0,0,7,1,1),(16,'2020-05-22 13:43:32',NULL,0,0,7,1,1); /*!40000 ALTER TABLE `Files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `FormSubmissionNotifications` -- DROP TABLE IF EXISTS `FormSubmissionNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `FormSubmissionNotifications` ( `exEntryID` int DEFAULT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), KEY `IDX_E7B6BE406DCB6296` (`exEntryID`), CONSTRAINT `FK_E7B6BE406DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`) ON DELETE CASCADE, CONSTRAINT `FK_E7B6BE40ED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `FormSubmissionNotifications` -- LOCK TABLES `FormSubmissionNotifications` WRITE; /*!40000 ALTER TABLE `FormSubmissionNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `FormSubmissionNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringConfiguredDataSources` -- DROP TABLE IF EXISTS `GatheringConfiguredDataSources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringConfiguredDataSources` ( `gcsID` int unsigned NOT NULL AUTO_INCREMENT, `gaID` int unsigned DEFAULT NULL, `gasID` int unsigned DEFAULT NULL, `gcdObject` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`gcsID`), KEY `gaID` (`gaID`), KEY `gasID` (`gasID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringConfiguredDataSources` -- LOCK TABLES `GatheringConfiguredDataSources` WRITE; /*!40000 ALTER TABLE `GatheringConfiguredDataSources` DISABLE KEYS */; /*!40000 ALTER TABLE `GatheringConfiguredDataSources` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringDataSources` -- DROP TABLE IF EXISTS `GatheringDataSources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringDataSources` ( `gasID` int unsigned NOT NULL AUTO_INCREMENT, `gasName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gasHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', `gasDisplayOrder` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gasID`), UNIQUE KEY `gasHandle` (`gasHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringDataSources` -- LOCK TABLES `GatheringDataSources` WRITE; /*!40000 ALTER TABLE `GatheringDataSources` DISABLE KEYS */; INSERT INTO `GatheringDataSources` VALUES (1,'Site Page','page',0,0),(2,'RSS Feed','rss_feed',0,1),(3,'Flickr Feed','flickr_feed',0,2),(4,'Twitter','twitter',0,3); /*!40000 ALTER TABLE `GatheringDataSources` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItemFeatureAssignments` -- DROP TABLE IF EXISTS `GatheringItemFeatureAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItemFeatureAssignments` ( `gafaID` int unsigned NOT NULL AUTO_INCREMENT, `gaiID` int unsigned DEFAULT NULL, `faID` int unsigned DEFAULT NULL, PRIMARY KEY (`gafaID`), KEY `gaiID` (`gaiID`,`faID`), KEY `faID` (`faID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItemFeatureAssignments` -- LOCK TABLES `GatheringItemFeatureAssignments` WRITE; /*!40000 ALTER TABLE `GatheringItemFeatureAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `GatheringItemFeatureAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItemSelectedTemplates` -- DROP TABLE IF EXISTS `GatheringItemSelectedTemplates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItemSelectedTemplates` ( `gaiID` int unsigned NOT NULL DEFAULT '0', `gatID` int unsigned NOT NULL DEFAULT '0', `gatTypeID` int unsigned DEFAULT '0', PRIMARY KEY (`gaiID`,`gatID`), UNIQUE KEY `gatUniqueKey` (`gaiID`,`gatTypeID`), KEY `gatTypeID` (`gatTypeID`), KEY `gatID` (`gatID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItemSelectedTemplates` -- LOCK TABLES `GatheringItemSelectedTemplates` WRITE; /*!40000 ALTER TABLE `GatheringItemSelectedTemplates` DISABLE KEYS */; /*!40000 ALTER TABLE `GatheringItemSelectedTemplates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItemTemplateFeatures` -- DROP TABLE IF EXISTS `GatheringItemTemplateFeatures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItemTemplateFeatures` ( `gfeID` int unsigned NOT NULL AUTO_INCREMENT, `gatID` int unsigned DEFAULT NULL, `feID` int unsigned DEFAULT NULL, PRIMARY KEY (`gfeID`), KEY `gatID` (`gatID`), KEY `feID` (`feID`,`gatID`) ) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItemTemplateFeatures` -- LOCK TABLES `GatheringItemTemplateFeatures` WRITE; /*!40000 ALTER TABLE `GatheringItemTemplateFeatures` DISABLE KEYS */; INSERT INTO `GatheringItemTemplateFeatures` VALUES (4,1,1),(10,2,1),(13,3,1),(16,4,1),(19,5,1),(23,7,1),(29,11,1),(33,12,1),(37,13,1),(42,14,1),(47,15,1),(53,17,1),(56,18,1),(63,21,1),(64,22,1),(3,1,2),(9,2,2),(12,3,2),(15,4,2),(18,5,2),(21,6,2),(25,8,2),(27,9,2),(41,13,3),(46,14,3),(51,16,3),(55,17,3),(62,20,3),(66,22,3),(2,1,4),(8,2,4),(14,4,4),(17,5,4),(31,11,4),(35,12,4),(39,13,4),(44,14,4),(61,20,4),(5,1,5),(22,6,5),(24,8,5),(26,9,5),(28,10,5),(32,11,5),(36,12,5),(40,13,5),(45,14,5),(49,15,5),(50,16,5),(59,19,5),(65,22,5),(20,5,6),(1,1,7),(7,2,7),(11,3,7),(30,11,7),(34,12,7),(38,13,7),(43,14,7),(48,15,7),(52,16,7),(54,17,7),(57,18,7),(58,19,7),(60,20,7),(6,1,8); /*!40000 ALTER TABLE `GatheringItemTemplateFeatures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItemTemplateTypes` -- DROP TABLE IF EXISTS `GatheringItemTemplateTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItemTemplateTypes` ( `gatTypeID` int unsigned NOT NULL AUTO_INCREMENT, `gatTypeHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gatTypeID`), UNIQUE KEY `gatTypeHandle` (`gatTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItemTemplateTypes` -- LOCK TABLES `GatheringItemTemplateTypes` WRITE; /*!40000 ALTER TABLE `GatheringItemTemplateTypes` DISABLE KEYS */; INSERT INTO `GatheringItemTemplateTypes` VALUES (1,'tile',0),(2,'detail',0); /*!40000 ALTER TABLE `GatheringItemTemplateTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItemTemplates` -- DROP TABLE IF EXISTS `GatheringItemTemplates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItemTemplates` ( `gatID` int unsigned NOT NULL AUTO_INCREMENT, `gatHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `gatName` text COLLATE utf8mb4_unicode_ci, `gatHasCustomClass` tinyint(1) NOT NULL DEFAULT '0', `gatFixedSlotWidth` int unsigned DEFAULT '0', `gatFixedSlotHeight` int unsigned DEFAULT '0', `gatForceDefault` int unsigned DEFAULT '0', `pkgID` int unsigned DEFAULT NULL, `gatTypeID` int unsigned DEFAULT '0', PRIMARY KEY (`gatID`), UNIQUE KEY `gatHandle` (`gatHandle`,`gatTypeID`), KEY `gatTypeID` (`gatTypeID`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItemTemplates` -- LOCK TABLES `GatheringItemTemplates` WRITE; /*!40000 ALTER TABLE `GatheringItemTemplates` DISABLE KEYS */; INSERT INTO `GatheringItemTemplates` VALUES (1,'featured','Featured Item',0,6,2,1,0,1),(2,'title_date_description','Title Date & Description',0,0,0,0,0,1),(3,'title_description','Title & Description',0,0,0,0,0,1),(4,'title_date','Title & Date',0,0,0,0,0,1),(5,'title_date_comments','Title, Date & Comments',1,0,0,0,0,1),(6,'thumbnail','Thumbnail',0,0,0,0,0,1),(7,'basic','Basic',0,0,0,0,0,2),(8,'image_sharing_link','Image Sharing Link',0,0,0,0,0,2),(9,'image_conversation','Image Conversation',0,0,0,0,0,2),(10,'image','Large Image',0,0,0,0,0,2),(11,'masthead_image_left','Masthead Image Left',0,0,0,0,0,1),(12,'masthead_image_right','Masthead Image Right',0,0,0,0,0,1),(13,'masthead_image_byline_right','Masthead Image Byline Right',0,0,0,0,0,1),(14,'masthead_image_byline_left','Masthead Image Byline Left',0,0,0,0,0,1),(15,'image_masthead_description_center','Image Masthead Description Center',0,0,0,0,0,1),(16,'image_byline_description_center','Image Byline Description Center',0,0,0,0,0,1),(17,'masthead_byline_description','Masthead Byline Description',0,0,0,0,0,1),(18,'masthead_description','Masthead Description',0,0,0,0,0,1),(19,'thumbnail_description_center','Thumbnail & Description Center',0,0,0,0,0,1),(20,'tweet','Tweet',0,0,0,0,0,1),(21,'vimeo','Vimeo',0,0,0,0,0,1),(22,'image_overlay_headline','Image Overlay Headline',0,0,0,0,0,1); /*!40000 ALTER TABLE `GatheringItemTemplates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringItems` -- DROP TABLE IF EXISTS `GatheringItems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringItems` ( `gaiID` int unsigned NOT NULL AUTO_INCREMENT, `gaID` int unsigned DEFAULT NULL, `gasID` int unsigned DEFAULT NULL, `gaiDateTimeCreated` datetime NOT NULL, `gaiPublicDateTime` datetime NOT NULL, `gaiTitle` text COLLATE utf8mb4_unicode_ci, `gaiSlotWidth` int unsigned DEFAULT '1', `gaiSlotHeight` int unsigned DEFAULT '1', `gaiKey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `gaiBatchDisplayOrder` int unsigned NOT NULL DEFAULT '0', `gaiBatchTimestamp` int unsigned NOT NULL DEFAULT '0', `gaiIsDeleted` tinyint(1) DEFAULT '0', PRIMARY KEY (`gaiID`), UNIQUE KEY `gaiUniqueKey` (`gaiKey`,`gasID`,`gaID`), KEY `gaID` (`gaID`,`gaiBatchTimestamp`), KEY `gasID` (`gasID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringItems` -- LOCK TABLES `GatheringItems` WRITE; /*!40000 ALTER TABLE `GatheringItems` DISABLE KEYS */; /*!40000 ALTER TABLE `GatheringItems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GatheringPermissionAssignments` -- DROP TABLE IF EXISTS `GatheringPermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GatheringPermissionAssignments` ( `gaID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gaID`,`pkID`,`paID`), KEY `pkID` (`pkID`), KEY `paID` (`paID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GatheringPermissionAssignments` -- LOCK TABLES `GatheringPermissionAssignments` WRITE; /*!40000 ALTER TABLE `GatheringPermissionAssignments` DISABLE KEYS */; /*!40000 ALTER TABLE `GatheringPermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Gatherings` -- DROP TABLE IF EXISTS `Gatherings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Gatherings` ( `gaID` int unsigned NOT NULL AUTO_INCREMENT, `gaDateCreated` datetime NOT NULL, `gaDateLastUpdated` datetime NOT NULL, PRIMARY KEY (`gaID`), KEY `gaDateLastUpdated` (`gaDateLastUpdated`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Gatherings` -- LOCK TABLES `Gatherings` WRITE; /*!40000 ALTER TABLE `Gatherings` DISABLE KEYS */; /*!40000 ALTER TABLE `Gatherings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Geolocators` -- DROP TABLE IF EXISTS `Geolocators`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Geolocators` ( `glID` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Geolocator ID', `glHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Geolocator handle', `glName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Geolocator name', `glDescription` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Geolocator description', `glConfiguration` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Geolocator configuration options(DC2Type:json_array)', `glActive` tinyint(1) NOT NULL COMMENT 'Is this Geolocator the active one?', `glPackage` int unsigned DEFAULT NULL, PRIMARY KEY (`glID`), UNIQUE KEY `UNIQ_83BB1614D4F4D416` (`glHandle`), KEY `IDX_83BB1614D5F6CC40` (`glPackage`), CONSTRAINT `FK_83BB1614D5F6CC40` FOREIGN KEY (`glPackage`) REFERENCES `Packages` (`pkgID`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all the installed Geolocator services'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Geolocators` -- LOCK TABLES `Geolocators` WRITE; /*!40000 ALTER TABLE `Geolocators` DISABLE KEYS */; INSERT INTO `Geolocators` VALUES (1,'geoplugin','geoPlugin','','{\"url\":\"http:\\/\\/www.geoplugin.net\\/json.gp?ip=[[IP]]\"}',1,NULL); /*!40000 ALTER TABLE `Geolocators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GroupSetGroups` -- DROP TABLE IF EXISTS `GroupSetGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GroupSetGroups` ( `gID` int unsigned NOT NULL DEFAULT '0', `gsID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gID`,`gsID`), KEY `gsID` (`gsID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GroupSetGroups` -- LOCK TABLES `GroupSetGroups` WRITE; /*!40000 ALTER TABLE `GroupSetGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `GroupSetGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `GroupSets` -- DROP TABLE IF EXISTS `GroupSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `GroupSets` ( `gsID` int unsigned NOT NULL AUTO_INCREMENT, `gsName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gsID`), KEY `gsName` (`gsName`), KEY `pkgID` (`pkgID`,`gsID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `GroupSets` -- LOCK TABLES `GroupSets` WRITE; /*!40000 ALTER TABLE `GroupSets` DISABLE KEYS */; /*!40000 ALTER TABLE `GroupSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Groups` -- DROP TABLE IF EXISTS `Groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Groups` ( `gID` int unsigned NOT NULL AUTO_INCREMENT, `gName` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `gDescription` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `gUserExpirationIsEnabled` tinyint(1) NOT NULL DEFAULT '0', `gUserExpirationMethod` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gUserExpirationSetDateTime` datetime DEFAULT NULL, `gUserExpirationInterval` int unsigned NOT NULL DEFAULT '0', `gUserExpirationAction` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gIsBadge` tinyint(1) NOT NULL DEFAULT '0', `gBadgeFID` int unsigned NOT NULL DEFAULT '0', `gBadgeDescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gBadgeCommunityPointValue` int NOT NULL DEFAULT '0', `gIsAutomated` tinyint(1) NOT NULL DEFAULT '0', `gCheckAutomationOnRegister` tinyint(1) NOT NULL DEFAULT '0', `gCheckAutomationOnLogin` tinyint(1) NOT NULL DEFAULT '0', `gCheckAutomationOnJobRun` tinyint(1) NOT NULL DEFAULT '0', `gPath` text COLLATE utf8mb4_unicode_ci, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`gID`), KEY `gName` (`gName`), KEY `gBadgeFID` (`gBadgeFID`), KEY `pkgID` (`pkgID`), KEY `gPath` (`gPath`(255)) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Groups` -- LOCK TABLES `Groups` WRITE; /*!40000 ALTER TABLE `Groups` DISABLE KEYS */; INSERT INTO `Groups` VALUES (1,'Guest','The guest group represents unregistered visitors to your site.',0,NULL,NULL,0,NULL,0,0,NULL,0,0,0,0,0,'/Guest',0),(2,'Registered Users','The registered users group represents all user accounts.',0,NULL,NULL,0,NULL,0,0,NULL,0,0,0,0,0,'/Registered Users',0),(3,'Administrators','',0,NULL,NULL,0,NULL,0,0,NULL,0,0,0,0,0,'/Administrators',0); /*!40000 ALTER TABLE `Groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JobSetJobs` -- DROP TABLE IF EXISTS `JobSetJobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `JobSetJobs` ( `jsID` int unsigned NOT NULL DEFAULT '0', `jID` int unsigned NOT NULL DEFAULT '0', `jRunOrder` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`jsID`,`jID`), KEY `jID` (`jID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JobSetJobs` -- LOCK TABLES `JobSetJobs` WRITE; /*!40000 ALTER TABLE `JobSetJobs` DISABLE KEYS */; INSERT INTO `JobSetJobs` VALUES (1,1,0),(1,4,0),(1,5,0),(1,6,0),(1,7,0),(1,9,0),(1,10,0); /*!40000 ALTER TABLE `JobSetJobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JobSets` -- DROP TABLE IF EXISTS `JobSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `JobSets` ( `jsID` int unsigned NOT NULL AUTO_INCREMENT, `jsName` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', `jDateLastRun` datetime DEFAULT NULL, `isScheduled` smallint NOT NULL DEFAULT '0', `scheduledInterval` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'days', `scheduledValue` int NOT NULL DEFAULT '0', PRIMARY KEY (`jsID`), KEY `pkgID` (`pkgID`), KEY `jsName` (`jsName`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JobSets` -- LOCK TABLES `JobSets` WRITE; /*!40000 ALTER TABLE `JobSets` DISABLE KEYS */; INSERT INTO `JobSets` VALUES (1,'Default',0,NULL,0,'days',0); /*!40000 ALTER TABLE `JobSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Jobs` -- DROP TABLE IF EXISTS `Jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Jobs` ( `jID` int unsigned NOT NULL AUTO_INCREMENT, `jName` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `jDescription` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jDateInstalled` datetime DEFAULT NULL, `jDateLastRun` datetime DEFAULT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', `jLastStatusText` longtext COLLATE utf8mb4_unicode_ci, `jLastStatusCode` smallint NOT NULL DEFAULT '0', `jStatus` varchar(14) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ENABLED', `jHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jNotUninstallable` smallint NOT NULL DEFAULT '0', `isScheduled` smallint NOT NULL DEFAULT '0', `scheduledInterval` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'days', `scheduledValue` int NOT NULL DEFAULT '0', PRIMARY KEY (`jID`), UNIQUE KEY `jHandle` (`jHandle`), KEY `pkgID` (`pkgID`), KEY `isScheduled` (`isScheduled`,`jDateLastRun`,`jID`), KEY `jDateLastRun` (`jDateLastRun`,`jID`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Jobs` -- LOCK TABLES `Jobs` WRITE; /*!40000 ALTER TABLE `Jobs` DISABLE KEYS */; INSERT INTO `Jobs` VALUES (1,'Index Search Engine - Updates','Index the site to allow searching to work quickly and accurately','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','index_search',1,0,'days',0),(2,'Index Search Engine - All','Empties the page search index and reindexes all pages.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','index_search_all',1,0,'days',0),(3,'Check Automated Groups','Automatically add users to groups and assign badges.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','check_automated_groups',0,0,'days',0),(4,'Generate the sitemap.xml file','Generate the sitemap.xml file that search engines use to crawl your site.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','generate_sitemap',0,0,'days',0),(5,'Process Email Posts','Polls an email account and grabs private messages/postings that are sent there..','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','process_email',0,0,'days',0),(6,'Remove Old Page Versions','Removes all except the 10 most recent page versions for each page.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','remove_old_page_versions',0,0,'days',0),(7,'Update Gatherings','Loads new items into gatherings.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','update_gatherings',0,0,'days',0),(8,'Update Statistics Trackers','Scan the sitemap for file usage and stack usage to update statistics trackers','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','update_statistics',0,0,'days',0),(9,'Fill thumbnail database table','Re-populate the thumbnail path database table.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','fill_thumbnails_table',0,0,'days',0),(10,'Deactivate Users','Deactivates users who haven\'t logged in recently, if automatic user deactivation is active.','2020-05-22 13:43:12',NULL,0,NULL,0,'ENABLED','deactivate_users',0,0,'days',0); /*!40000 ALTER TABLE `Jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `JobsLog` -- DROP TABLE IF EXISTS `JobsLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `JobsLog` ( `jlID` int unsigned NOT NULL AUTO_INCREMENT, `jID` int unsigned NOT NULL, `jlMessage` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `jlTimestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `jlError` int NOT NULL DEFAULT '0', PRIMARY KEY (`jlID`), KEY `jID` (`jID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `JobsLog` -- LOCK TABLES `JobsLog` WRITE; /*!40000 ALTER TABLE `JobsLog` DISABLE KEYS */; /*!40000 ALTER TABLE `JobsLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LegacyAttributeKeys` -- DROP TABLE IF EXISTS `LegacyAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `LegacyAttributeKeys` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_740BA2BBB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LegacyAttributeKeys` -- LOCK TABLES `LegacyAttributeKeys` WRITE; /*!40000 ALTER TABLE `LegacyAttributeKeys` DISABLE KEYS */; /*!40000 ALTER TABLE `LegacyAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LoginControlIpRanges` -- DROP TABLE IF EXISTS `LoginControlIpRanges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `LoginControlIpRanges` ( `lcirID` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record identifier', `lcirIpFrom` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Start of the range', `lcirIpTo` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'End of the range', `lcirType` smallint unsigned NOT NULL COMMENT 'Type of the record', `lcirExpires` datetime DEFAULT NULL COMMENT 'Record end-of-life timestamp', PRIMARY KEY (`lcirID`), KEY `IX_LoginControlIpRanges_Search` (`lcirIpFrom`,`lcirIpTo`,`lcirExpires`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='IP ranges used to control login attempts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LoginControlIpRanges` -- LOCK TABLES `LoginControlIpRanges` WRITE; /*!40000 ALTER TABLE `LoginControlIpRanges` DISABLE KEYS */; /*!40000 ALTER TABLE `LoginControlIpRanges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Logs` -- DROP TABLE IF EXISTS `Logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Logs` ( `logID` int unsigned NOT NULL AUTO_INCREMENT, `channel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time` int unsigned NOT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `uID` int unsigned DEFAULT NULL, `level` int NOT NULL, PRIMARY KEY (`logID`), KEY `channel` (`channel`), KEY `uID` (`uID`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Logs` -- LOCK TABLES `Logs` WRITE; /*!40000 ALTER TABLE `Logs` DISABLE KEYS */; INSERT INTO `Logs` VALUES (1,'operations',1590119067,'Clearing cache with CacheClearer::flush().',1,250),(2,'operations',1590132606,'Clearing cache with CacheClearer::flush().',1,250),(3,'authentication',1590134219,'Session Invalidated. Session user agent \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\" did not match provided agent \"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36\"',1,250),(4,'authentication',1590134235,'Session Invalidated. Session user agent \"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36\" did not match provided agent \"Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1\"',1,250),(5,'authentication',1590134616,'Session Invalidated. Session user agent \"Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1\" did not match provided agent \"Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1\"',1,250),(6,'authentication',1590134627,'Session Invalidated. Session user agent \"Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1\" did not match provided agent \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\"',1,250),(7,'exceptions',1590288024,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/themes/customised/full.php:5 syntax error, unexpected \'<\', expecting end of file (0)\n',0,600),(8,'exceptions',1590288154,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/themes/customised/full.php:5 syntax error, unexpected \'<\', expecting end of file (0)\n',1,600),(9,'exceptions',1590381575,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(10,'exceptions',1590381588,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(11,'exceptions',1590381589,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(12,'exceptions',1590381590,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(13,'exceptions',1590381590,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(14,'exceptions',1590381590,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(15,'exceptions',1590381590,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(16,'exceptions',1590381591,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(17,'exceptions',1590381592,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(18,'exceptions',1590381672,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(19,'exceptions',1590382012,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(20,'exceptions',1590382012,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(21,'exceptions',1590383273,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(22,'exceptions',1590383281,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(23,'exceptions',1590383284,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(24,'exceptions',1590383296,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:3 Class \'BlockController\' not found (0)\n',1,600),(25,'exceptions',1590384755,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:4 Class \'BlockController\' not found (0)\n',1,600),(26,'exceptions',1590384847,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/vendor/illuminate/container/Container.php:734 Class does not exist (-1)\n',1,600),(27,'exceptions',1590384912,'Exception Occurred: /home/bruce/Desktop/concrete5/local/application/blocks/basic_test/controller.php:4 Class \'BlockController\' not found (0)\n',1,600),(28,'exceptions',1590384965,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/vendor/illuminate/container/Container.php:734 Class does not exist (-1)\n',1,600),(29,'exceptions',1590385212,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/vendor/illuminate/container/Container.php:734 Class does not exist (-1)\n',1,600),(30,'operations',1590385309,'Clearing cache with CacheClearer::flush().',1,250),(31,'operations',1590385366,'Clearing cache with CacheClearer::flush().',1,250),(32,'operations',1590385366,'Clearing cache thumbnails directory.',1,250),(33,'exceptions',1590385588,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/vendor/illuminate/container/Container.php:734 Class does not exist (-1)\n',1,600),(34,'exceptions',1590386066,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/vendor/illuminate/container/Container.php:734 Class does not exist (-1)\n',1,600),(35,'exceptions',1590389638,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/src/Updater/Archive.php:60 Class \'ZipArchive\' not found (0)\n',1,600),(36,'exceptions',1590389728,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/src/Updater/Archive.php:60 Class \'ZipArchive\' not found (0)\n',1,600),(37,'exceptions',1590389833,'Exception Occurred: /home/bruce/Desktop/concrete5/local/concrete/src/Updater/Archive.php:60 Class \'ZipArchive\' not found (0)\n',1,600); /*!40000 ALTER TABLE `Logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MailImporters` -- DROP TABLE IF EXISTS `MailImporters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `MailImporters` ( `miID` int unsigned NOT NULL AUTO_INCREMENT, `miHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `miServer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `miUsername` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `miPassword` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `miEncryption` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `miIsEnabled` tinyint(1) NOT NULL DEFAULT '0', `miEmail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `miPort` int unsigned NOT NULL DEFAULT '0', `pkgID` int unsigned DEFAULT NULL, `miConnectionMethod` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT 'POP', PRIMARY KEY (`miID`), UNIQUE KEY `miHandle` (`miHandle`), KEY `pkgID` (`pkgID`,`miID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MailImporters` -- LOCK TABLES `MailImporters` WRITE; /*!40000 ALTER TABLE `MailImporters` DISABLE KEYS */; INSERT INTO `MailImporters` VALUES (1,'private_message','',NULL,NULL,NULL,0,'',0,0,'POP'); /*!40000 ALTER TABLE `MailImporters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MailValidationHashes` -- DROP TABLE IF EXISTS `MailValidationHashes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `MailValidationHashes` ( `mvhID` int unsigned NOT NULL AUTO_INCREMENT, `miID` int unsigned NOT NULL DEFAULT '0', `email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL, `mHash` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `mDateGenerated` int unsigned NOT NULL DEFAULT '0', `mDateRedeemed` int unsigned NOT NULL DEFAULT '0', `data` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`mvhID`), UNIQUE KEY `mHash` (`mHash`), KEY `miID` (`miID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MailValidationHashes` -- LOCK TABLES `MailValidationHashes` WRITE; /*!40000 ALTER TABLE `MailValidationHashes` DISABLE KEYS */; /*!40000 ALTER TABLE `MailValidationHashes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MultilingualPageRelations` -- DROP TABLE IF EXISTS `MultilingualPageRelations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `MultilingualPageRelations` ( `mpLocale` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `mpLanguage` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mpRelationID` int unsigned NOT NULL, `cID` int unsigned NOT NULL, PRIMARY KEY (`mpRelationID`,`cID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MultilingualPageRelations` -- LOCK TABLES `MultilingualPageRelations` WRITE; /*!40000 ALTER TABLE `MultilingualPageRelations` DISABLE KEYS */; /*!40000 ALTER TABLE `MultilingualPageRelations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `MultilingualTranslations` -- DROP TABLE IF EXISTS `MultilingualTranslations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `MultilingualTranslations` ( `mtID` int unsigned NOT NULL AUTO_INCREMENT, `mtSectionID` int unsigned NOT NULL DEFAULT '0', `msgid` text COLLATE utf8mb4_unicode_ci NOT NULL, `msgidPlural` text COLLATE utf8mb4_unicode_ci, `msgstr` text COLLATE utf8mb4_unicode_ci, `msgstrPlurals` text COLLATE utf8mb4_unicode_ci, `context` text COLLATE utf8mb4_unicode_ci, `comments` text COLLATE utf8mb4_unicode_ci, `reference` text COLLATE utf8mb4_unicode_ci, `flags` text COLLATE utf8mb4_unicode_ci, `updated` datetime DEFAULT NULL, PRIMARY KEY (`mtID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MultilingualTranslations` -- LOCK TABLES `MultilingualTranslations` WRITE; /*!40000 ALTER TABLE `MultilingualTranslations` DISABLE KEYS */; /*!40000 ALTER TABLE `MultilingualTranslations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `NotificationAlerts` -- DROP TABLE IF EXISTS `NotificationAlerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `NotificationAlerts` ( `naID` int unsigned NOT NULL AUTO_INCREMENT, `naIsArchived` tinyint(1) NOT NULL, `uID` int unsigned DEFAULT NULL, `nID` int unsigned DEFAULT NULL, PRIMARY KEY (`naID`), KEY `IDX_E11C7408FD71026C` (`uID`), KEY `IDX_E11C7408ED024EFD` (`nID`), CONSTRAINT `FK_E11C7408ED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`), CONSTRAINT `FK_E11C7408FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `NotificationAlerts` -- LOCK TABLES `NotificationAlerts` WRITE; /*!40000 ALTER TABLE `NotificationAlerts` DISABLE KEYS */; /*!40000 ALTER TABLE `NotificationAlerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `NotificationPermissionSubscriptionList` -- DROP TABLE IF EXISTS `NotificationPermissionSubscriptionList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `NotificationPermissionSubscriptionList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `NotificationPermissionSubscriptionList` -- LOCK TABLES `NotificationPermissionSubscriptionList` WRITE; /*!40000 ALTER TABLE `NotificationPermissionSubscriptionList` DISABLE KEYS */; /*!40000 ALTER TABLE `NotificationPermissionSubscriptionList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `NotificationPermissionSubscriptionListCustom` -- DROP TABLE IF EXISTS `NotificationPermissionSubscriptionListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `NotificationPermissionSubscriptionListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `nSubscriptionIdentifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`paID`,`peID`,`nSubscriptionIdentifier`), KEY `peID` (`peID`), KEY `nSubscriptionIdentifier` (`nSubscriptionIdentifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `NotificationPermissionSubscriptionListCustom` -- LOCK TABLES `NotificationPermissionSubscriptionListCustom` WRITE; /*!40000 ALTER TABLE `NotificationPermissionSubscriptionListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `NotificationPermissionSubscriptionListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Notifications` -- DROP TABLE IF EXISTS `Notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Notifications` ( `nID` int unsigned NOT NULL AUTO_INCREMENT, `nDate` datetime NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`nID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Notifications` -- LOCK TABLES `Notifications` WRITE; /*!40000 ALTER TABLE `Notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `Notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth2AccessToken` -- DROP TABLE IF EXISTS `OAuth2AccessToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OAuth2AccessToken` ( `identifier` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `client` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `expiryDateTime` datetime NOT NULL, `userIdentifier` int unsigned DEFAULT NULL, `scopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:json_array)', PRIMARY KEY (`identifier`), KEY `IDX_60D69F3FC7440455` (`client`), CONSTRAINT `FK_60D69F3FC7440455` FOREIGN KEY (`client`) REFERENCES `OAuth2Client` (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth2AccessToken` -- LOCK TABLES `OAuth2AccessToken` WRITE; /*!40000 ALTER TABLE `OAuth2AccessToken` DISABLE KEYS */; /*!40000 ALTER TABLE `OAuth2AccessToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth2AuthCode` -- DROP TABLE IF EXISTS `OAuth2AuthCode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OAuth2AuthCode` ( `identifier` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `client` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `scopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:json_array)', `expiryDateTime` datetime NOT NULL, `userIdentifier` int unsigned NOT NULL, PRIMARY KEY (`identifier`), KEY `IDX_29D07B5C7440455` (`client`), CONSTRAINT `FK_29D07B5C7440455` FOREIGN KEY (`client`) REFERENCES `OAuth2Client` (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth2AuthCode` -- LOCK TABLES `OAuth2AuthCode` WRITE; /*!40000 ALTER TABLE `OAuth2AuthCode` DISABLE KEYS */; /*!40000 ALTER TABLE `OAuth2AuthCode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth2Client` -- DROP TABLE IF EXISTS `OAuth2Client`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OAuth2Client` ( `identifier` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `redirectUri` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `clientKey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `clientSecret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `consentType` int unsigned NOT NULL, PRIMARY KEY (`identifier`), UNIQUE KEY `client_idx` (`clientKey`,`clientSecret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth2Client` -- LOCK TABLES `OAuth2Client` WRITE; /*!40000 ALTER TABLE `OAuth2Client` DISABLE KEYS */; INSERT INTO `OAuth2Client` VALUES ('1d547c19-9bdf-11ea-8bdc-503eaae88e7e','Demo API','','9b9526871a549f52d0ec79de86b4f0d7b4e4c6e86ec34ee6b5c981c38b3bc439','$2y$10$KgrDwI8n38a6zy5ZW6aLU.ukQI2l4.gs.tujiw73lseYKvW21AQbi',1); /*!40000 ALTER TABLE `OAuth2Client` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth2RefreshToken` -- DROP TABLE IF EXISTS `OAuth2RefreshToken`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OAuth2RefreshToken` ( `identifier` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `expiryDateTime` datetime NOT NULL, `accessToken` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', PRIMARY KEY (`identifier`), UNIQUE KEY `UNIQ_A205CB8350A9822` (`accessToken`), CONSTRAINT `FK_A205CB8350A9822` FOREIGN KEY (`accessToken`) REFERENCES `OAuth2AccessToken` (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth2RefreshToken` -- LOCK TABLES `OAuth2RefreshToken` WRITE; /*!40000 ALTER TABLE `OAuth2RefreshToken` DISABLE KEYS */; /*!40000 ALTER TABLE `OAuth2RefreshToken` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OAuth2Scope` -- DROP TABLE IF EXISTS `OAuth2Scope`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OAuth2Scope` ( `identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OAuth2Scope` -- LOCK TABLES `OAuth2Scope` WRITE; /*!40000 ALTER TABLE `OAuth2Scope` DISABLE KEYS */; INSERT INTO `OAuth2Scope` VALUES ('account:read','Read information about the remotely authenticated user.'),('files:read','Read detailed information about uploaded files.'),('openid','Remotely authenticate into concrete5.'),('site:trees:read','Read information about system site trees.'),('system:info:read','Read detailed information about the system.'); /*!40000 ALTER TABLE `OAuth2Scope` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `OauthUserMap` -- DROP TABLE IF EXISTS `OauthUserMap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `OauthUserMap` ( `user_id` int unsigned NOT NULL, `namespace` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `binding` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`user_id`,`namespace`), UNIQUE KEY `oauth_binding` (`binding`,`namespace`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `OauthUserMap` -- LOCK TABLES `OauthUserMap` WRITE; /*!40000 ALTER TABLE `OauthUserMap` DISABLE KEYS */; /*!40000 ALTER TABLE `OauthUserMap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Packages` -- DROP TABLE IF EXISTS `Packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Packages` ( `pkgID` int unsigned NOT NULL AUTO_INCREMENT, `pkgHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgVersion` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgIsInstalled` tinyint(1) NOT NULL, `pkgAvailableVersion` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pkgDescription` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `pkgDateInstalled` datetime NOT NULL, `pkgName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`pkgID`), UNIQUE KEY `UNIQ_62C3A2F1F2D49DB1` (`pkgHandle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Packages` -- LOCK TABLES `Packages` WRITE; /*!40000 ALTER TABLE `Packages` DISABLE KEYS */; /*!40000 ALTER TABLE `Packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageFeeds` -- DROP TABLE IF EXISTS `PageFeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageFeeds` ( `checkPagePermissions` tinyint(1) NOT NULL, `customTopicAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customTopicTreeNodeID` int unsigned NOT NULL, `iconFID` int unsigned NOT NULL, `pfDescription` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pfHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pfTitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pfID` int unsigned NOT NULL AUTO_INCREMENT, `cParentID` int unsigned NOT NULL, `ptID` int unsigned NOT NULL, `pfIncludeAllDescendents` tinyint(1) NOT NULL, `pfDisplayAliases` tinyint(1) NOT NULL, `pfContentToDisplay` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pfAreaHandleToDisplay` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pfDisplayFeaturedOnly` tinyint(1) NOT NULL, PRIMARY KEY (`pfID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageFeeds` -- LOCK TABLES `PageFeeds` WRITE; /*!40000 ALTER TABLE `PageFeeds` DISABLE KEYS */; INSERT INTO `PageFeeds` VALUES (1,NULL,0,0,'concrete5 Blog','blog','Blog',1,193,6,0,0,'S',NULL,0); /*!40000 ALTER TABLE `PageFeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePaths` -- DROP TABLE IF EXISTS `PagePaths`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePaths` ( `cPath` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `ppID` int NOT NULL AUTO_INCREMENT, `cID` int unsigned NOT NULL, `ppIsCanonical` tinyint(1) NOT NULL, `ppGeneratedFromURLSlugs` tinyint(1) NOT NULL, PRIMARY KEY (`ppID`), KEY `ppIsCanonical` (`ppIsCanonical`), KEY `cID` (`cID`), KEY `cPath` (`cPath`(255)) ) ENGINE=InnoDB AUTO_INCREMENT=208 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePaths` -- LOCK TABLES `PagePaths` WRITE; /*!40000 ALTER TABLE `PagePaths` DISABLE KEYS */; INSERT INTO `PagePaths` VALUES ('/dashboard',1,2,1,1),('/dashboard/sitemap',2,3,1,1),('/dashboard/sitemap/full',3,4,1,1),('/dashboard/sitemap/explore',4,5,1,1),('/dashboard/sitemap/search',5,6,1,1),('/dashboard/files',6,7,1,1),('/dashboard/files/search',7,8,1,1),('/dashboard/files/attributes',8,9,1,1),('/dashboard/files/sets',9,10,1,1),('/dashboard/files/add_set',10,11,1,1),('/dashboard/users',11,12,1,1),('/dashboard/users/search',12,13,1,1),('/dashboard/users/groups',13,14,1,1),('/dashboard/users/attributes',14,15,1,1),('/dashboard/users/add',15,16,1,1),('/dashboard/users/add_group',16,17,1,1),('/dashboard/users/groups/bulkupdate',17,18,1,1),('/dashboard/users/group_sets',18,19,1,1),('/dashboard/users/points',19,20,1,1),('/dashboard/users/points/assign',20,21,1,1),('/dashboard/users/points/actions',21,22,1,1),('/dashboard/express',22,23,1,1),('/dashboard/express/entries',23,24,1,1),('/dashboard/reports',24,25,1,1),('/dashboard/reports/forms',25,26,1,1),('/dashboard/reports/forms/legacy',26,27,1,1),('/dashboard/reports/surveys',27,28,1,1),('/dashboard/reports/logs',28,29,1,1),('/dashboard/reports/page_changes',29,30,1,1),('/dashboard/pages',30,31,1,1),('/dashboard/pages/themes',31,32,1,1),('/dashboard/pages/themes/inspect',32,33,1,1),('/dashboard/pages/types',33,34,1,1),('/dashboard/pages/types/organize',34,35,1,1),('/dashboard/pages/types/add',35,36,1,1),('/dashboard/pages/types/form',36,37,1,1),('/dashboard/pages/types/output',37,38,1,1),('/dashboard/pages/types/attributes',38,39,1,1),('/dashboard/pages/types/permissions',39,40,1,1),('/dashboard/pages/templates',40,41,1,1),('/dashboard/pages/templates/add',41,42,1,1),('/dashboard/pages/attributes',42,43,1,1),('/dashboard/pages/single',43,44,1,1),('/dashboard/pages/feeds',44,45,1,1),('/dashboard/calendar',45,46,1,1),('/dashboard/calendar/events',46,47,1,1),('/dashboard/calendar/event_list',47,48,1,1),('/dashboard/calendar/add',48,49,1,1),('/dashboard/calendar/permissions',49,50,1,1),('/dashboard/calendar/attributes',50,51,1,1),('/dashboard/conversations',51,52,1,1),('/dashboard/conversations/messages',52,53,1,1),('/dashboard/blocks',53,54,1,1),('/dashboard/blocks/stacks',54,55,1,1),('/dashboard/blocks/permissions',55,56,1,1),('/dashboard/blocks/stacks/list',56,57,1,1),('/dashboard/blocks/types',57,58,1,1),('/dashboard/extend',58,59,1,1),('/dashboard/extend/install',59,60,1,1),('/dashboard/extend/update',60,61,1,1),('/dashboard/extend/connect',61,62,1,1),('/dashboard/extend/themes',62,63,1,1),('/dashboard/extend/addons',63,64,1,1),('/dashboard/system',64,65,1,1),('/dashboard/system/basics',65,66,1,1),('/dashboard/system/basics/name',66,67,1,1),('/dashboard/system/basics/accessibility',67,68,1,1),('/dashboard/system/basics/social',68,69,1,1),('/dashboard/system/basics/icons',69,70,1,1),('/dashboard/system/basics/editor',70,71,1,1),('/dashboard/system/basics/multilingual',71,72,1,1),('/dashboard/system/basics/multilingual/update',72,73,1,1),('/dashboard/system/basics/timezone',73,74,1,1),('/dashboard/system/basics/attributes',74,75,1,1),('/dashboard/system/basics/reset_edit_mode',75,76,1,1),('/dashboard/system/express',76,77,1,1),('/dashboard/system/express/entities',77,78,1,1),('/dashboard/system/express/entities/attributes',78,79,1,1),('/dashboard/system/express/entities/associations',79,80,1,1),('/dashboard/system/express/entities/forms',80,81,1,1),('/dashboard/system/express/entities/customize_search',81,82,1,1),('/dashboard/system/express/entities/order_entries',82,83,1,1),('/dashboard/system/express/entries',83,84,1,1),('/dashboard/system/multilingual',84,85,1,1),('/dashboard/system/multilingual/setup',85,86,1,1),('/dashboard/system/multilingual/copy',86,87,1,1),('/dashboard/system/multilingual/page_report',87,88,1,1),('/dashboard/system/multilingual/translate_interface',88,89,1,1),('/dashboard/system/seo',89,90,1,1),('/dashboard/system/seo/urls',90,91,1,1),('/dashboard/system/seo/bulk',91,92,1,1),('/dashboard/system/seo/codes',92,93,1,1),('/dashboard/system/seo/excluded',93,94,1,1),('/dashboard/system/seo/searchindex',94,95,1,1),('/dashboard/system/files',95,96,1,1),('/dashboard/system/files/filetypes',96,97,1,1),('/dashboard/system/files/permissions',97,98,1,1),('/dashboard/system/files/thumbnails',98,99,1,1),('/dashboard/system/files/thumbnails/options',99,100,1,1),('/dashboard/system/files/image_uploading',100,101,1,1),('/dashboard/system/files/storage',101,102,1,1),('/dashboard/system/files/export_options',102,103,1,1),('/dashboard/system/optimization',103,104,1,1),('/dashboard/system/optimization/cache',104,105,1,1),('/dashboard/system/optimization/clearcache',105,106,1,1),('/dashboard/system/optimization/jobs',106,107,1,1),('/dashboard/system/optimization/query_log',107,108,1,1),('/dashboard/system/permissions',108,109,1,1),('/dashboard/system/permissions/site',109,110,1,1),('/dashboard/system/permissions/tasks',110,111,1,1),('/dashboard/system/permissions/users',111,112,1,1),('/dashboard/system/permissions/advanced',112,113,1,1),('/dashboard/system/permissions/workflows',113,114,1,1),('/dashboard/system/permissions/blacklist',114,115,1,1),('/dashboard/system/permissions/blacklist/range',115,116,1,1),('/dashboard/system/permissions/captcha',116,117,1,1),('/dashboard/system/permissions/antispam',117,118,1,1),('/dashboard/system/permissions/maintenance',118,119,1,1),('/dashboard/system/permissions/trusted_proxies',119,120,1,1),('/dashboard/system/registration',120,121,1,1),('/dashboard/system/registration/open',121,122,1,1),('/dashboard/system/registration/postlogin',122,123,1,1),('/dashboard/system/registration/profiles',123,124,1,1),('/dashboard/system/registration/authentication',124,125,1,1),('/dashboard/system/registration/global_password_reset',125,126,1,1),('/dashboard/system/registration/notification',126,127,1,1),('/dashboard/system/registration/deactivation',127,128,1,1),('/dashboard/system/registration/automated_logout',128,129,1,1),('/dashboard/system/registration/password_requirements',129,130,1,1),('/dashboard/system/mail',130,131,1,1),('/dashboard/system/mail/method',131,132,1,1),('/dashboard/system/mail/method/test',132,133,1,1),('/dashboard/system/mail/importers',133,134,1,1),('/dashboard/system/mail/addresses',134,135,1,1),('/dashboard/system/calendar',135,136,1,1),('/dashboard/system/calendar/settings',136,137,1,1),('/dashboard/system/calendar/colors',137,138,1,1),('/dashboard/system/calendar/permissions',138,139,1,1),('/dashboard/system/calendar/import',139,140,1,1),('/dashboard/system/conversations',140,141,1,1),('/dashboard/system/conversations/settings',141,142,1,1),('/dashboard/system/conversations/points',142,143,1,1),('/dashboard/system/conversations/bannedwords',143,144,1,1),('/dashboard/system/conversations/permissions',144,145,1,1),('/dashboard/system/attributes',145,146,1,1),('/dashboard/system/attributes/types',146,147,1,1),('/dashboard/system/attributes/sets',147,148,1,1),('/dashboard/system/attributes/topics',148,149,1,1),('/dashboard/system/attributes/topics/add',149,150,1,1),('/dashboard/system/environment',150,151,1,1),('/dashboard/system/environment/info',151,152,1,1),('/dashboard/system/environment/debug',152,153,1,1),('/dashboard/system/environment/logging',153,154,1,1),('/dashboard/system/environment/proxy',154,155,1,1),('/dashboard/system/environment/entities',155,156,1,1),('/dashboard/system/environment/database_charset',156,157,1,1),('/dashboard/system/environment/geolocation',157,158,1,1),('/dashboard/system/update',158,159,1,1),('/dashboard/system/update/update',159,160,1,1),('/dashboard/system/api',160,161,1,1),('/dashboard/system/api/settings',161,162,1,1),('/dashboard/system/api/integrations',162,163,1,1),('/dashboard/welcome',163,164,1,1),('/dashboard/welcome/me',164,165,1,1),('/!stacks',165,166,1,1),('/page_not_found',166,167,1,1),('/!trash',167,168,1,1),('/login',168,169,1,1),('/register',169,170,1,1),('/account',170,171,1,1),('/account/edit_profile',171,172,1,1),('/account/avatar',172,173,1,1),('/account/messages',173,174,1,1),('/page_forbidden',174,175,1,1),('/download_file',175,176,1,1),('/!drafts',176,177,1,1),('/account/welcome',177,178,1,0),('/!stacks/footer-contact',178,179,1,1),('/!stacks/footer-legal',179,180,1,1),('/!stacks/footer-navigation',180,181,1,1),('/!stacks/footer-site-title',181,182,1,1),('/!stacks/footer-social',182,183,1,1),('/!stacks/header-navigation',183,184,1,1),('/!stacks/header-search',184,185,1,1),('/!stacks/header-site-title',185,186,1,1),('/services',186,188,1,1),('/portfolio',187,190,1,1),('/team',188,191,1,1),('/blog',189,193,1,1),('/search',190,194,1,1),('/contact',191,195,1,1),('/blank-page',192,196,1,1),('/portfolio/project-title',193,198,1,1),('/portfolio/project-title-2',194,199,1,1),('/portfolio/project-title-3',195,200,1,1),('/portfolio/project-title-4',196,201,1,1),('/portfolio/project-title-5',197,202,1,1),('/portfolio/project-title-6',198,203,1,1),('/blog/hello-world',199,205,1,1),('/blog/another-blog-post',200,206,1,1),('/blog/a-beautiful-blog',201,207,1,1),('/team/about',202,208,1,1),('/team/careers',203,209,1,1),('/team/faq',204,210,1,1),('/team/careers/web-developer',205,212,1,1),('/team/careers/sales-associate',206,213,1,1),('/!drafts/217',207,217,1,1); /*!40000 ALTER TABLE `PagePaths` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionAssignments` -- DROP TABLE IF EXISTS `PagePermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionAssignments` ( `cID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`pkID`,`paID`), KEY `paID` (`paID`,`pkID`), KEY `pkID` (`pkID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionAssignments` -- LOCK TABLES `PagePermissionAssignments` WRITE; /*!40000 ALTER TABLE `PagePermissionAssignments` DISABLE KEYS */; INSERT INTO `PagePermissionAssignments` VALUES (1,1,88),(2,1,69),(167,1,68),(169,1,65),(170,1,66),(175,1,67),(177,1,70),(1,2,89),(177,2,71),(1,3,90),(177,3,72),(1,4,91),(177,4,73),(1,5,92),(177,5,74),(1,6,93),(177,6,75),(1,7,94),(177,7,76),(1,8,96),(177,8,78),(1,9,97),(177,9,79),(1,10,98),(177,10,80),(1,11,99),(177,11,81),(1,12,100),(177,12,82),(1,13,101),(177,13,83),(1,14,102),(177,14,84),(1,15,103),(177,15,85),(1,16,104),(177,16,86),(1,17,105),(177,17,87),(1,18,95),(177,18,77); /*!40000 ALTER TABLE `PagePermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionPageTypeAccessList` -- DROP TABLE IF EXISTS `PagePermissionPageTypeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionPageTypeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `externalLink` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionPageTypeAccessList` -- LOCK TABLES `PagePermissionPageTypeAccessList` WRITE; /*!40000 ALTER TABLE `PagePermissionPageTypeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionPageTypeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionPageTypeAccessListCustom` -- DROP TABLE IF EXISTS `PagePermissionPageTypeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionPageTypeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `ptID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`ptID`), KEY `peID` (`peID`), KEY `ptID` (`ptID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionPageTypeAccessListCustom` -- LOCK TABLES `PagePermissionPageTypeAccessListCustom` WRITE; /*!40000 ALTER TABLE `PagePermissionPageTypeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionPageTypeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionPropertyAccessList` -- DROP TABLE IF EXISTS `PagePermissionPropertyAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionPropertyAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `name` tinyint(1) DEFAULT '0', `publicDateTime` tinyint(1) DEFAULT '0', `uID` tinyint(1) DEFAULT '0', `description` tinyint(1) DEFAULT '0', `paths` tinyint(1) DEFAULT '0', `attributePermission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionPropertyAccessList` -- LOCK TABLES `PagePermissionPropertyAccessList` WRITE; /*!40000 ALTER TABLE `PagePermissionPropertyAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionPropertyAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionPropertyAttributeAccessListCustom` -- DROP TABLE IF EXISTS `PagePermissionPropertyAttributeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionPropertyAttributeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `akID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`akID`), KEY `peID` (`peID`), KEY `akID` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionPropertyAttributeAccessListCustom` -- LOCK TABLES `PagePermissionPropertyAttributeAccessListCustom` WRITE; /*!40000 ALTER TABLE `PagePermissionPropertyAttributeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionPropertyAttributeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionThemeAccessList` -- DROP TABLE IF EXISTS `PagePermissionThemeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionThemeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionThemeAccessList` -- LOCK TABLES `PagePermissionThemeAccessList` WRITE; /*!40000 ALTER TABLE `PagePermissionThemeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionThemeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PagePermissionThemeAccessListCustom` -- DROP TABLE IF EXISTS `PagePermissionThemeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PagePermissionThemeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `pThemeID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`pThemeID`), KEY `peID` (`peID`), KEY `pThemeID` (`pThemeID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PagePermissionThemeAccessListCustom` -- LOCK TABLES `PagePermissionThemeAccessListCustom` WRITE; /*!40000 ALTER TABLE `PagePermissionThemeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `PagePermissionThemeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageSearchIndex` -- DROP TABLE IF EXISTS `PageSearchIndex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageSearchIndex` ( `cID` int unsigned NOT NULL DEFAULT '0', `content` longtext COLLATE utf8mb4_unicode_ci, `cName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cDescription` text COLLATE utf8mb4_unicode_ci, `cPath` text COLLATE utf8mb4_unicode_ci, `cDatePublic` datetime DEFAULT NULL, `cDateLastIndexed` datetime DEFAULT NULL, `cDateLastSitemapped` datetime DEFAULT NULL, `cRequiresReindex` tinyint(1) DEFAULT '0', PRIMARY KEY (`cID`), KEY `cDateLastIndexed` (`cDateLastIndexed`), KEY `cDateLastSitemapped` (`cDateLastSitemapped`), KEY `cRequiresReindex` (`cRequiresReindex`), FULLTEXT KEY `cName` (`cName`), FULLTEXT KEY `cDescription` (`cDescription`), FULLTEXT KEY `content` (`content`), FULLTEXT KEY `content2` (`cName`,`cDescription`,`content`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageSearchIndex` -- LOCK TABLES `PageSearchIndex` WRITE; /*!40000 ALTER TABLE `PageSearchIndex` DISABLE KEYS */; INSERT INTO `PageSearchIndex` VALUES (1,'Stand Out on the Web \n Share your business with an impressive, yet minimal presentation. Let your customers understand your web presence through elegance and clarity. A Simple Image Slider \n This image slider can have any content that you want in it. Easy to Edit \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pixel Perfect \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Media Rich \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. \n Presenting your Business has never been so easy Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna.  Latest Blog Post Now Open For Business \n We specialize in making your concepts a reality. Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet. Mauris sed scelerisque nisl. Ut auctor ipsum tellus, vel viverra massa elementum sit amet. Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida. Contact Us Today \n Customizable footer area with accent class. ','Home',NULL,NULL,'2020-05-22 13:42:04','2020-05-22 13:43:40',NULL,0),(165,'','Waiting for Me',NULL,'/dashboard/welcome/me','2020-05-22 13:43:22','2020-05-22 13:43:29',NULL,0),(180,'\n © 2018 Elemental Theme ','Footer Legal',NULL,'/!stacks/footer-legal','2020-05-22 13:43:32','2020-05-22 15:32:24',NULL,0),(188,'Our Expertise Quality \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet. Design \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet. Development \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet. Security \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet. \n Awesome Features Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Guide Books Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. Admin Accounts Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus.  \n Support Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Additional Options Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna.  Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. \n What Clients Are Saying About Us <NAME>\nCEO & Founder\nconcrete5\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. <NAME>\nMarketing Directory\nCompanyCo\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. <NAME>\nCTO & Founder\nconcrete5\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. <NAME>\nIT Manager\nCompanyCo\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. ','Services',NULL,'/services','2020-05-22 13:43:36','2020-05-22 13:43:41',NULL,0),(190,'','Portfolio',NULL,'/portfolio','2020-05-22 13:43:36','2020-05-22 15:32:25',NULL,0),(191,'<NAME>\nCo-Founder / CEO\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nCo-Founder / CTO\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. <NAME>\nArt Director\n\n\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. \n Get in Touch Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet. Contact Us ','Team',NULL,'/team','2020-05-22 13:43:36','2020-05-22 13:43:45',NULL,0),(193,'','Blog',NULL,'/blog','2020-05-22 13:43:36','2020-05-22 13:43:45',NULL,0),(194,'','Search',NULL,'/search','2020-05-22 13:43:36','2020-05-22 13:43:46',NULL,0),(195,'\n Headquarters 1234 SE Street View Suite 301 Portland, OR 98101 HOURS M-F: 10 AM - 7 PM Sat: Noon - Midnight Sun: Closed \n Choosing Us Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor. We would love to hear from you! ','Contact',NULL,'/contact','2020-05-22 13:43:36','2020-05-22 13:43:47',NULL,0),(196,' This is my empty content block on my blank page. ','Blank Page',NULL,'/blank-page','2020-05-22 13:43:36','2020-05-22 13:43:47',NULL,0),(198,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title','2014-08-06 15:30:00','2020-05-22 13:43:41',NULL,0),(199,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title 2','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title-2','2014-08-06 15:20:00','2020-05-22 13:43:42',NULL,0),(200,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title 3','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title-3','2014-08-06 15:10:00','2020-05-22 13:43:42',NULL,0),(201,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title 4','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title-4','2014-08-06 15:00:00','2020-05-22 13:43:43',NULL,0),(202,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title 5','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title-5','2014-08-06 14:30:00','2020-05-22 13:43:43',NULL,0),(203,'\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit. Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla. Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus. Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus. Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel. ','Project Title 6','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.','/portfolio/project-title-6','2014-08-06 14:20:00','2020-05-22 13:43:44',NULL,0),(205,'\n Fusce volutpat sodales mauris quis dapibus. Maecenas convallis, libero eu ultrices interdum, leo mauris commodo diam, sed cursus sapien ligula nec leo. Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. Heading 2 Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. Heading 3 Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor. Heading 3 Donec blandit lectus nec neque ullamcorper rhoncus. Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida. Phasellus est erat, adipiscing nec lobortis quis, eleifend at sem. Curabitur fringilla viverra dolor, in rutrum ipsum rutrum sit amet. Vestibulum feugiat porttitor ipsum vel condimentum. Suspendisse at tempus libero. Sed eu tempor enim. Etiam convallis eleifend rutrum. Donec porta diam quis tellus feugiat dignissim. Cras posuere, massa eget laoreet laoreet, urna libero lobortis dolor, sed consequat elit urna eget massa. Donec aliquet pellentesque consectetur. ','Hello World!','Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum.','/blog/hello-world','2014-07-01 12:00:00','2020-05-22 13:43:45',NULL,0),(206,'\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit.  CMS To the Rescue! Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. Learn more at concrete5.org  ','Another Blog Post','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna.','/blog/another-blog-post','2014-07-04 15:00:00','2020-05-22 13:43:46',NULL,0),(207,'\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. Heading 3 Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor. Look at my beautiful image. Don\'t you to look more? Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor. ','A Beautiful Site Deserves a Beautiful Blog','Donec blandit lectus nec neque ullamcorper rhoncus. Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida. Phasellus est erat.','/blog/a-beautiful-blog','2014-08-01 16:30:00','2020-05-22 13:43:46',NULL,0),(208,'\n Fusce volutpat sodales mauris quis dapibus. Maecenas convallis, libero eu ultrices interdum. \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. \n Heading 1Heading 2Heading 3Heading 4Heading 5Heading 6 \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti. \n Get in Touch Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet. Contact Us ','About',NULL,'/team/about','2020-05-22 13:43:36','2020-05-22 13:43:48',NULL,0),(209,'Work with Us Welcome Home \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Great Workers \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Amazing Location \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Paid Time Off \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. No Meetings \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Free Drinks \n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. \n Open Positions ','Careers',NULL,'/team/careers','2020-05-22 13:43:36','2020-05-22 13:43:49',NULL,0),(210,'What are page versions? What are page versions? \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. How do I add more people as editors in my website? How do I add more people as editors in my website? \n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. ','Frequently Asked Questions',NULL,'/team/faq','2020-05-22 13:43:37','2020-05-22 13:43:51',NULL,0),(212,'\n Back to Careers Department Location Job Information \n \n Quisque accumsan leo sit amet neque pretium consectetur. Sed blandit nulla at justo volutpat rhoncus. Sed risus orci, luctus sit amet fringilla faucibus, congue nec dui. Phasellus mattis lobortis magna sed dapibus. Donec sagittis nunc sed accumsan eleifend. Ut porttitor sapien eu nisl volutpat, vitae interdum est mollis. Sed laoreet sit amet elit in eleifend. Sed a tincidunt velit, nec posuere urna. In eget metus non est varius viverra. Quisque accumsan odio sem, in consequat nunc lobortis ac. Cras dignissim nulla ut euismod adipiscing. Mauris non eros sem. Cras at lacinia nulla. Maecenas nec magna arcu. Aenean iaculis, augue sed pretium semper, odio tellus volutpat risus, quis consectetur nibh mauris ut odio. Integer convallis, augue a accumsan condimentum, sem nisl congue lorem, consectetur lacinia neque tortor eu neque. Aenean convallis arcu vitae enim dignissim vestibulum. Phasellus tincidunt dolor id enim gravida ullamcorper. Nullam ut lorem auctor, congue quam non, auctor arcu. Morbi ac aliquam ipsum, at aliquet ligula. Cras adipiscing tellus non nulla suscipit congue. Pellentesque id neque euismod, elementum augue vel, volutpat turpis. Pellentesque sit amet tortor non lorem hendrerit pellentesque ac in nisi. Sed aliquet tincidunt arcu, eu lacinia lorem fringilla id. Integer ut ornare orci. Donec scelerisque vulputate est a condimentum. Morbi tellus sapien, vehicula vel ipsum non, luctus ullamcorper mi. Phasellus felis tortor, egestas quis felis sit amet, malesuada auctor nibh. Sed mollis mi sit amet tristique scelerisque. Cras elementum mauris urna, ullamcorper consectetur orci vehicula ut. ','Web Developer','Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus.','/team/careers/web-developer','2020-05-22 13:43:37','2020-05-22 13:43:50',NULL,0),(213,'\n Back to Careers Department Location Job Information \n \n Quisque accumsan leo sit amet neque pretium consectetur. Sed blandit nulla at justo volutpat rhoncus. Sed risus orci, luctus sit amet fringilla faucibus, congue nec dui. Phasellus mattis lobortis magna sed dapibus. Donec sagittis nunc sed accumsan eleifend. Ut porttitor sapien eu nisl volutpat, vitae interdum est mollis. Sed laoreet sit amet elit in eleifend. Sed a tincidunt velit, nec posuere urna. In eget metus non est varius viverra. Quisque accumsan odio sem, in consequat nunc lobortis ac. Cras dignissim nulla ut euismod adipiscing. Mauris non eros sem. Cras at lacinia nulla. Maecenas nec magna arcu. Aenean iaculis, augue sed pretium semper, odio tellus volutpat risus, quis consectetur nibh mauris ut odio. Integer convallis, augue a accumsan condimentum, sem nisl congue lorem, consectetur lacinia neque tortor eu neque. Aenean convallis arcu vitae enim dignissim vestibulum. Phasellus tincidunt dolor id enim gravida ullamcorper. Nullam ut lorem auctor, congue quam non, auctor arcu. Morbi ac aliquam ipsum, at aliquet ligula. Cras adipiscing tellus non nulla suscipit congue. Pellentesque id neque euismod, elementum augue vel, volutpat turpis. Pellentesque sit amet tortor non lorem hendrerit pellentesque ac in nisi. Sed aliquet tincidunt arcu, eu lacinia lorem fringilla id. Integer ut ornare orci. Donec scelerisque vulputate est a condimentum. Morbi tellus sapien, vehicula vel ipsum non, luctus ullamcorper mi. Phasellus felis tortor, egestas quis felis sit amet, malesuada auctor nibh. Sed mollis mi sit amet tristique scelerisque. Cras elementum mauris urna, ullamcorper consectetur orci vehicula ut. ','Sales Associate','Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus.','/team/careers/sales-associate','2020-05-22 13:43:37','2020-05-22 13:43:50',NULL,0); /*!40000 ALTER TABLE `PageSearchIndex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTemplates` -- DROP TABLE IF EXISTS `PageTemplates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTemplates` ( `pTemplateID` int NOT NULL AUTO_INCREMENT, `pTemplateHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pTemplateIcon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pTemplateName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pTemplateIsInternal` tinyint(1) NOT NULL, `pkgID` int NOT NULL, PRIMARY KEY (`pTemplateID`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTemplates` -- LOCK TABLES `PageTemplates` WRITE; /*!40000 ALTER TABLE `PageTemplates` DISABLE KEYS */; INSERT INTO `PageTemplates` VALUES (1,'core_stack','','Stack',1,0),(2,'desktop','','Desktop',1,0),(3,'dashboard_full','','Dashboard Full',1,0),(4,'blank','blank.png','Blank',0,0),(5,'full','full.png','Full',0,0),(6,'left_sidebar','left_sidebar.png','Left Sidebar',0,0),(7,'right_sidebar','right_sidebar.png','Right Sidebar',0,0); /*!40000 ALTER TABLE `PageTemplates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageThemeCustomStyles` -- DROP TABLE IF EXISTS `PageThemeCustomStyles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageThemeCustomStyles` ( `pThemeID` int unsigned NOT NULL DEFAULT '0', `scvlID` int unsigned DEFAULT '0', `preset` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sccRecordID` int unsigned DEFAULT '0', PRIMARY KEY (`pThemeID`), KEY `scvlID` (`scvlID`), KEY `sccRecordID` (`sccRecordID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageThemeCustomStyles` -- LOCK TABLES `PageThemeCustomStyles` WRITE; /*!40000 ALTER TABLE `PageThemeCustomStyles` DISABLE KEYS */; /*!40000 ALTER TABLE `PageThemeCustomStyles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageThemes` -- DROP TABLE IF EXISTS `PageThemes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageThemes` ( `pThemeID` int unsigned NOT NULL AUTO_INCREMENT, `pThemeHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `pThemeName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pThemeDescription` text COLLATE utf8mb4_unicode_ci, `pkgID` int unsigned NOT NULL DEFAULT '0', `pThemeHasCustomClass` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pThemeID`), UNIQUE KEY `ptHandle` (`pThemeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageThemes` -- LOCK TABLES `PageThemes` WRITE; /*!40000 ALTER TABLE `PageThemes` DISABLE KEYS */; INSERT INTO `PageThemes` VALUES (1,'elemental','Elemental','Elegant, spacious theme with support for blogs, portfolios, layouts and more.',0,1),(2,'customised','a customised theme for trading cup to workout','',0,0); /*!40000 ALTER TABLE `PageThemes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypeComposerControlTypes` -- DROP TABLE IF EXISTS `PageTypeComposerControlTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypeComposerControlTypes` ( `ptComposerControlTypeID` int unsigned NOT NULL AUTO_INCREMENT, `ptComposerControlTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptComposerControlTypeName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ptComposerControlTypeID`), UNIQUE KEY `ptComposerControlTypeHandle` (`ptComposerControlTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypeComposerControlTypes` -- LOCK TABLES `PageTypeComposerControlTypes` WRITE; /*!40000 ALTER TABLE `PageTypeComposerControlTypes` DISABLE KEYS */; INSERT INTO `PageTypeComposerControlTypes` VALUES (1,'core_page_property','Built-In Property',0),(2,'collection_attribute','Custom Attribute',0),(3,'block','Block',0); /*!40000 ALTER TABLE `PageTypeComposerControlTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypeComposerFormLayoutSetControls` -- DROP TABLE IF EXISTS `PageTypeComposerFormLayoutSetControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypeComposerFormLayoutSetControls` ( `ptComposerFormLayoutSetControlID` int unsigned NOT NULL AUTO_INCREMENT, `ptComposerFormLayoutSetID` int unsigned DEFAULT '0', `ptComposerControlTypeID` int unsigned DEFAULT '0', `ptComposerControlObject` longtext COLLATE utf8mb4_unicode_ci, `ptComposerFormLayoutSetControlDisplayOrder` int unsigned DEFAULT '0', `ptComposerFormLayoutSetControlCustomLabel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptComposerFormLayoutSetControlCustomTemplate` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptComposerFormLayoutSetControlDescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptComposerFormLayoutSetControlRequired` int DEFAULT '0', PRIMARY KEY (`ptComposerFormLayoutSetControlID`), KEY `ptComposerControlTypeID` (`ptComposerControlTypeID`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypeComposerFormLayoutSetControls` -- LOCK TABLES `PageTypeComposerFormLayoutSetControls` WRITE; /*!40000 ALTER TABLE `PageTypeComposerFormLayoutSetControls` DISABLE KEYS */; INSERT INTO `PageTypeComposerFormLayoutSetControls` VALUES (1,1,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,'Page Name',NULL,NULL,1),(2,1,1,'O:85:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\DescriptionCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:11:\"description\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:11:\"description\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:4:\"font\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0),(3,1,1,'O:81:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\UrlSlugCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:8:\"url_slug\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:8:\"url_slug\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',2,NULL,NULL,NULL,0),(4,1,1,'O:86:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PageTemplateCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:13:\"page_template\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:13:\"page_template\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"list-alt\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',3,NULL,NULL,NULL,0),(5,1,1,'O:87:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PublishTargetCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:14:\"publish_target\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:14:\"publish_target\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"download\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',4,NULL,NULL,NULL,0),(6,2,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,'Entry Name',NULL,NULL,0),(7,2,1,'O:81:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\UrlSlugCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:8:\"url_slug\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:8:\"url_slug\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0),(8,2,1,'O:85:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\DescriptionCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:11:\"description\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:11:\"description\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:4:\"font\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',2,'Short Description',NULL,NULL,0),(9,2,1,'O:87:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PublishTargetCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:14:\"publish_target\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:14:\"publish_target\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"download\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',3,NULL,NULL,NULL,0),(10,2,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:24;}',4,'Topics',NULL,NULL,0),(11,3,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:23;}',0,NULL,NULL,NULL,0),(12,3,3,'O:53:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\BlockControl\":15:{s:7:\"\0*\0btID\";i:1;s:30:\"\0*\0ptComposerControlTypeHandle\";s:5:\"block\";s:5:\"\0*\0bt\";b:0;s:4:\"\0*\0b\";b:0;s:13:\"\0*\0controller\";N;s:30:\"\0*\0ptComposerControlIdentifier\";i:1;s:24:\"\0*\0ptComposerControlName\";s:7:\"Content\";s:27:\"\0*\0ptComposerControlIconSRC\";s:33:\"/concrete/blocks/content/icon.png\";s:33:\"\0*\0ptComposerControlIconFormatter\";N;s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0),(13,4,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,'Job Name',NULL,NULL,1),(14,4,1,'O:82:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\DateTimeCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:9:\"date_time\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:9:\"date_time\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"calendar\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,'Posting Date',NULL,NULL,0),(15,5,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:21;}',0,NULL,NULL,NULL,0),(16,5,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:20;}',1,NULL,NULL,NULL,0),(17,5,1,'O:85:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\DescriptionCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:11:\"description\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:11:\"description\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:4:\"font\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',2,'Brief Description',NULL,NULL,0),(18,5,3,'O:53:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\BlockControl\":15:{s:7:\"\0*\0btID\";i:1;s:30:\"\0*\0ptComposerControlTypeHandle\";s:5:\"block\";s:5:\"\0*\0bt\";b:0;s:4:\"\0*\0b\";b:0;s:13:\"\0*\0controller\";N;s:30:\"\0*\0ptComposerControlIdentifier\";i:1;s:24:\"\0*\0ptComposerControlName\";s:7:\"Content\";s:27:\"\0*\0ptComposerControlIconSRC\";s:33:\"/concrete/blocks/content/icon.png\";s:33:\"\0*\0ptComposerControlIconFormatter\";N;s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',3,'Job Details',NULL,NULL,0),(19,6,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,NULL,NULL,'Give your portfolio project a name.',0),(20,6,1,'O:81:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\UrlSlugCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:8:\"url_slug\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:8:\"url_slug\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0),(21,6,1,'O:87:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PublishTargetCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:14:\"publish_target\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:14:\"publish_target\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"download\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',2,NULL,NULL,NULL,0),(22,7,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:25;}',0,NULL,NULL,NULL,0),(23,7,1,'O:82:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\DateTimeCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:9:\"date_time\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:9:\"date_time\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"calendar\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,'Date Completed',NULL,NULL,0),(24,7,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:27;}',2,NULL,NULL,NULL,0),(25,7,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:28;}',3,NULL,NULL,NULL,0),(26,7,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:29;}',4,NULL,NULL,NULL,0),(27,7,2,'O:67:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CollectionAttributeControl\":1:{s:7:\"\0*\0akID\";i:23;}',5,NULL,NULL,NULL,0),(28,8,3,'O:53:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\BlockControl\":15:{s:7:\"\0*\0btID\";i:31;s:30:\"\0*\0ptComposerControlTypeHandle\";s:5:\"block\";s:5:\"\0*\0bt\";b:0;s:4:\"\0*\0b\";b:0;s:13:\"\0*\0controller\";N;s:30:\"\0*\0ptComposerControlIdentifier\";i:31;s:24:\"\0*\0ptComposerControlName\";s:12:\"Image Slider\";s:27:\"\0*\0ptComposerControlIconSRC\";s:38:\"/concrete/blocks/image_slider/icon.png\";s:33:\"\0*\0ptComposerControlIconFormatter\";N;s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,NULL,NULL,NULL,0),(29,9,3,'O:53:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\BlockControl\":15:{s:7:\"\0*\0btID\";i:1;s:30:\"\0*\0ptComposerControlTypeHandle\";s:5:\"block\";s:5:\"\0*\0bt\";b:0;s:4:\"\0*\0b\";b:0;s:13:\"\0*\0controller\";N;s:30:\"\0*\0ptComposerControlIdentifier\";i:1;s:24:\"\0*\0ptComposerControlName\";s:7:\"Content\";s:27:\"\0*\0ptComposerControlIconSRC\";s:33:\"/concrete/blocks/content/icon.png\";s:33:\"\0*\0ptComposerControlIconFormatter\";N;s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,NULL,NULL,NULL,0),(30,10,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,NULL,NULL,NULL,0),(31,10,1,'O:87:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PublishTargetCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:14:\"publish_target\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:14:\"publish_target\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"download\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0),(32,11,1,'O:78:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\NameCorePageProperty\":12:{s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:1;s:17:\"\0*\0propertyHandle\";s:4:\"name\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:4:\"name\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:9:\"file-text\";}s:20:\"\0*\0ptComposerControl\";N;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',0,'Name',NULL,NULL,0),(33,11,1,'O:87:\"Concrete\\Core\\Page\\Type\\Composer\\Control\\CorePageProperty\\PublishTargetCorePageProperty\":12:{s:17:\"\0*\0propertyHandle\";s:14:\"publish_target\";s:30:\"\0*\0ptComposerControlTypeHandle\";s:18:\"core_page_property\";s:30:\"\0*\0ptComposerControlIdentifier\";s:14:\"publish_target\";s:24:\"\0*\0ptComposerControlName\";N;s:27:\"\0*\0ptComposerControlIconSRC\";N;s:33:\"\0*\0ptComposerControlIconFormatter\";O:48:\"Concrete\\Core\\Attribute\\FontAwesomeIconFormatter\":1:{s:7:\"\0*\0icon\";s:8:\"download\";}s:20:\"\0*\0ptComposerControl\";N;s:37:\"\0*\0ptComposerControlRequiredByDefault\";b:0;s:41:\"\0*\0ptComposerControlRequiredOnThisRequest\";b:0;s:31:\"\0*\0ptComposerControlCustomLabel\";N;s:31:\"\0*\0ptComposerControlDescription\";N;s:5:\"error\";s:0:\"\";}',1,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `PageTypeComposerFormLayoutSetControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypeComposerFormLayoutSets` -- DROP TABLE IF EXISTS `PageTypeComposerFormLayoutSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypeComposerFormLayoutSets` ( `ptComposerFormLayoutSetID` int unsigned NOT NULL AUTO_INCREMENT, `ptID` int unsigned DEFAULT '0', `ptComposerFormLayoutSetName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptComposerFormLayoutSetDescription` text COLLATE utf8mb4_unicode_ci, `ptComposerFormLayoutSetDisplayOrder` int unsigned DEFAULT '0', PRIMARY KEY (`ptComposerFormLayoutSetID`), KEY `ptID` (`ptID`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypeComposerFormLayoutSets` -- LOCK TABLES `PageTypeComposerFormLayoutSets` WRITE; /*!40000 ALTER TABLE `PageTypeComposerFormLayoutSets` DISABLE KEYS */; INSERT INTO `PageTypeComposerFormLayoutSets` VALUES (1,5,'Basics','',0),(2,6,'Post Details','',0),(3,6,'Content','',1),(4,7,'Basics','',0),(5,7,'About This Job','',1),(6,8,'Page','',0),(7,8,'Project Data','',1),(8,8,'Image Slider','',2),(9,8,'Body','',3),(10,9,'Details','',0),(11,10,'','',0); /*!40000 ALTER TABLE `PageTypeComposerFormLayoutSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypeComposerOutputBlocks` -- DROP TABLE IF EXISTS `PageTypeComposerOutputBlocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypeComposerOutputBlocks` ( `ptComposerOutputBlockID` int unsigned NOT NULL AUTO_INCREMENT, `cID` int unsigned NOT NULL DEFAULT '0', `cvID` int unsigned NOT NULL DEFAULT '0', `arHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cbDisplayOrder` int unsigned DEFAULT '0', `ptComposerFormLayoutSetControlID` int unsigned NOT NULL DEFAULT '0', `bID` int unsigned DEFAULT '0', PRIMARY KEY (`ptComposerOutputBlockID`), KEY `cID` (`cID`), KEY `bID` (`bID`,`cID`), KEY `ptComposerFormLayoutSetControlID` (`ptComposerFormLayoutSetControlID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypeComposerOutputBlocks` -- LOCK TABLES `PageTypeComposerOutputBlocks` WRITE; /*!40000 ALTER TABLE `PageTypeComposerOutputBlocks` DISABLE KEYS */; /*!40000 ALTER TABLE `PageTypeComposerOutputBlocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypeComposerOutputControls` -- DROP TABLE IF EXISTS `PageTypeComposerOutputControls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypeComposerOutputControls` ( `ptComposerOutputControlID` int unsigned NOT NULL AUTO_INCREMENT, `pTemplateID` int unsigned DEFAULT '0', `ptID` int unsigned DEFAULT '0', `ptComposerFormLayoutSetControlID` int unsigned DEFAULT '0', PRIMARY KEY (`ptComposerOutputControlID`), KEY `pTemplateID` (`pTemplateID`,`ptComposerFormLayoutSetControlID`), KEY `ptID` (`ptID`), KEY `ptComposerFormLayoutSetControlID` (`ptComposerFormLayoutSetControlID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypeComposerOutputControls` -- LOCK TABLES `PageTypeComposerOutputControls` WRITE; /*!40000 ALTER TABLE `PageTypeComposerOutputControls` DISABLE KEYS */; INSERT INTO `PageTypeComposerOutputControls` VALUES (1,7,6,12),(2,6,7,18),(3,6,8,28),(4,6,8,29); /*!40000 ALTER TABLE `PageTypeComposerOutputControls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypePageTemplateDefaultPages` -- DROP TABLE IF EXISTS `PageTypePageTemplateDefaultPages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypePageTemplateDefaultPages` ( `pTemplateID` int unsigned NOT NULL DEFAULT '0', `ptID` int unsigned NOT NULL DEFAULT '0', `cID` int unsigned DEFAULT '0', PRIMARY KEY (`pTemplateID`,`ptID`), KEY `ptID` (`ptID`), KEY `cID` (`cID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypePageTemplateDefaultPages` -- LOCK TABLES `PageTypePageTemplateDefaultPages` WRITE; /*!40000 ALTER TABLE `PageTypePageTemplateDefaultPages` DISABLE KEYS */; INSERT INTO `PageTypePageTemplateDefaultPages` VALUES (5,5,187),(5,10,189),(5,9,192),(6,8,197),(7,6,204),(6,7,211),(4,5,214),(6,5,215),(7,5,216); /*!40000 ALTER TABLE `PageTypePageTemplateDefaultPages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypePageTemplates` -- DROP TABLE IF EXISTS `PageTypePageTemplates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypePageTemplates` ( `ptID` int unsigned NOT NULL DEFAULT '0', `pTemplateID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ptID`,`pTemplateID`), KEY `pTemplateID` (`pTemplateID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypePageTemplates` -- LOCK TABLES `PageTypePageTemplates` WRITE; /*!40000 ALTER TABLE `PageTypePageTemplates` DISABLE KEYS */; INSERT INTO `PageTypePageTemplates` VALUES (9,5),(10,5),(7,6),(8,6),(6,7); /*!40000 ALTER TABLE `PageTypePageTemplates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypePermissionAssignments` -- DROP TABLE IF EXISTS `PageTypePermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypePermissionAssignments` ( `ptID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ptID`,`pkID`,`paID`), KEY `pkID` (`pkID`), KEY `ptID` (`ptID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypePermissionAssignments` -- LOCK TABLES `PageTypePermissionAssignments` WRITE; /*!40000 ALTER TABLE `PageTypePermissionAssignments` DISABLE KEYS */; INSERT INTO `PageTypePermissionAssignments` VALUES (1,60,17),(2,60,17),(3,60,17),(4,60,17),(5,60,17),(6,60,17),(7,60,17),(8,60,17),(9,60,17),(10,60,17),(1,61,17),(2,61,17),(3,61,17),(4,61,17),(5,61,17),(6,61,17),(7,61,17),(8,61,17),(9,61,17),(10,61,17),(1,62,17),(2,62,17),(3,62,17),(4,62,17),(5,62,17),(6,62,17),(7,62,17),(8,62,17),(9,62,17),(10,62,17),(1,63,17),(2,63,17),(3,63,17),(4,63,17),(5,63,17),(6,63,17),(7,63,17),(8,63,17),(9,63,17),(10,63,17),(1,64,40),(2,64,41),(3,64,42),(4,64,43),(5,64,48),(6,64,49),(7,64,50),(8,64,51),(9,64,52),(10,64,53); /*!40000 ALTER TABLE `PageTypePermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypePublishTargetTypes` -- DROP TABLE IF EXISTS `PageTypePublishTargetTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypePublishTargetTypes` ( `ptPublishTargetTypeID` int unsigned NOT NULL AUTO_INCREMENT, `ptPublishTargetTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ptPublishTargetTypeName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ptPublishTargetTypeID`), KEY `ptPublishTargetTypeHandle` (`ptPublishTargetTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypePublishTargetTypes` -- LOCK TABLES `PageTypePublishTargetTypes` WRITE; /*!40000 ALTER TABLE `PageTypePublishTargetTypes` DISABLE KEYS */; INSERT INTO `PageTypePublishTargetTypes` VALUES (1,'parent_page','Always publish below a certain page',0),(2,'page_type','Choose from pages of a certain type',0),(3,'all','Choose from all pages when publishing',0); /*!40000 ALTER TABLE `PageTypePublishTargetTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageTypes` -- DROP TABLE IF EXISTS `PageTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageTypes` ( `ptID` int unsigned NOT NULL AUTO_INCREMENT, `ptName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ptHandle` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `ptPublishTargetTypeID` int unsigned DEFAULT NULL, `ptDefaultPageTemplateID` int unsigned DEFAULT NULL, `ptAllowedPageTemplates` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'A', `ptIsInternal` tinyint(1) NOT NULL DEFAULT '0', `ptIsFrequentlyAdded` tinyint(1) NOT NULL DEFAULT '1', `ptDisplayOrder` int unsigned DEFAULT NULL, `ptLaunchInComposer` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', `ptPublishTargetObject` longtext COLLATE utf8mb4_unicode_ci, `siteTypeID` int unsigned DEFAULT '0', PRIMARY KEY (`ptID`), UNIQUE KEY `ptHandle` (`ptHandle`), KEY `siteTypeID` (`siteTypeID`), KEY `pkgID` (`pkgID`,`ptID`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageTypes` -- LOCK TABLES `PageTypes` WRITE; /*!40000 ALTER TABLE `PageTypes` DISABLE KEYS */; INSERT INTO `PageTypes` VALUES (1,'Stack','core_stack',3,0,'A',1,0,0,0,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":7:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;s:17:\"startingPointPage\";N;}',1),(2,'Stack Category','core_stack_category',3,0,'A',1,0,1,0,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":7:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;s:17:\"startingPointPage\";N;}',1),(3,'Desktop','core_desktop',3,0,'A',1,0,2,0,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":7:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;s:17:\"startingPointPage\";N;}',1),(4,'Dashboard Full','dashboard_full',3,0,'A',1,0,3,0,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":7:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;s:17:\"startingPointPage\";N;}',1),(5,'Empty Page','page',3,5,'A',0,1,0,0,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":6:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;}',1),(6,'Blog Entry','blog_entry',2,7,'C',0,1,1,1,0,'O:73:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\PageTypeConfiguration\":7:{s:7:\"\0*\0ptID\";s:1:\"9\";s:21:\"\0*\0selectorFormFactor\";N;s:20:\"\0*\0startingPointPage\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"2\";s:25:\"ptPublishTargetTypeHandle\";s:9:\"page_type\";s:9:\"pkgHandle\";b:0;}',1),(7,'Job Posting','job_posting',1,6,'C',0,1,2,1,0,'O:75:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\ParentPageConfiguration\":5:{s:12:\"\0*\0cParentID\";i:209;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"1\";s:25:\"ptPublishTargetTypeHandle\";s:11:\"parent_page\";s:9:\"pkgHandle\";b:0;}',1),(8,'Portfolio Project','portfolio_project',2,6,'C',0,1,3,1,0,'O:73:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\PageTypeConfiguration\":7:{s:7:\"\0*\0ptID\";s:2:\"10\";s:21:\"\0*\0selectorFormFactor\";N;s:20:\"\0*\0startingPointPage\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"2\";s:25:\"ptPublishTargetTypeHandle\";s:9:\"page_type\";s:9:\"pkgHandle\";b:0;}',1),(9,'Blog','blog',3,5,'C',0,0,4,1,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":6:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;}',1),(10,'Portfolio','portfolio',3,5,'C',0,0,5,1,0,'O:68:\"Concrete\\Core\\Page\\Type\\PublishTarget\\Configuration\\AllConfiguration\":6:{s:21:\"\0*\0selectorFormFactor\";N;s:22:\"\0*\0startingPointPageID\";N;s:5:\"error\";s:0:\"\";s:21:\"ptPublishTargetTypeID\";s:1:\"3\";s:25:\"ptPublishTargetTypeHandle\";s:3:\"all\";s:9:\"pkgHandle\";b:0;}',1); /*!40000 ALTER TABLE `PageTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PageWorkflowProgress` -- DROP TABLE IF EXISTS `PageWorkflowProgress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PageWorkflowProgress` ( `cID` int unsigned NOT NULL DEFAULT '0', `wpID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`wpID`), KEY `wpID` (`wpID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PageWorkflowProgress` -- LOCK TABLES `PageWorkflowProgress` WRITE; /*!40000 ALTER TABLE `PageWorkflowProgress` DISABLE KEYS */; /*!40000 ALTER TABLE `PageWorkflowProgress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Pages` -- DROP TABLE IF EXISTS `Pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Pages` ( `cID` int unsigned NOT NULL DEFAULT '0', `siteTreeID` int unsigned DEFAULT '0', `ptID` int unsigned NOT NULL DEFAULT '0', `cIsTemplate` tinyint(1) NOT NULL DEFAULT '0', `uID` int unsigned DEFAULT NULL, `cIsCheckedOut` tinyint(1) NOT NULL DEFAULT '0', `cCheckedOutUID` int unsigned DEFAULT NULL, `cCheckedOutDatetime` datetime DEFAULT NULL, `cCheckedOutDatetimeLastEdit` datetime DEFAULT NULL, `cOverrideTemplatePermissions` tinyint(1) NOT NULL DEFAULT '1', `cInheritPermissionsFromCID` int unsigned NOT NULL DEFAULT '0', `cInheritPermissionsFrom` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'PARENT', `cFilename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cPointerID` int unsigned NOT NULL DEFAULT '0', `cPointerExternalLink` longtext COLLATE utf8mb4_unicode_ci, `cPointerExternalLinkNewWindow` tinyint(1) NOT NULL DEFAULT '0', `cIsActive` tinyint(1) NOT NULL DEFAULT '1', `cChildren` int unsigned NOT NULL DEFAULT '0', `cDisplayOrder` int unsigned NOT NULL DEFAULT '0', `cParentID` int unsigned NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', `cDraftTargetParentPageID` int unsigned NOT NULL DEFAULT '0', `cIsDraft` tinyint(1) NOT NULL DEFAULT '0', `cCacheFullPageContent` smallint NOT NULL DEFAULT '-1', `cCacheFullPageContentOverrideLifetime` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cCacheFullPageContentLifetimeCustom` int unsigned NOT NULL DEFAULT '0', `cIsSystemPage` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`ptID`), KEY `cParentID` (`cParentID`), KEY `siteTreeID` (`siteTreeID`), KEY `cIsActive` (`cID`,`cIsActive`), KEY `cCheckedOutUID` (`cCheckedOutUID`), KEY `uID` (`uID`,`cPointerID`), KEY `cPointerID` (`cPointerID`,`cDisplayOrder`), KEY `cIsTemplate` (`cID`,`cIsTemplate`), KEY `cIsSystemPage` (`cID`,`cIsSystemPage`), KEY `pkgID` (`pkgID`), KEY `cParentMaxDisplay` (`cParentID`,`cDisplayOrder`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Pages` -- LOCK TABLES `Pages` WRITE; /*!40000 ALTER TABLE `Pages` DISABLE KEYS */; INSERT INTO `Pages` VALUES (1,1,0,0,1,0,NULL,NULL,NULL,1,1,'OVERRIDE',NULL,0,NULL,0,1,18,0,0,0,0,0,-1,'0',0,0),(2,0,0,0,1,0,NULL,NULL,NULL,1,2,'OVERRIDE','/dashboard/view.php',0,NULL,0,1,12,0,0,0,0,0,-1,'0',0,1),(3,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/sitemap/view.php',0,NULL,0,1,3,1,2,0,0,0,-1,'0',0,1),(4,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/sitemap/full.php',0,NULL,0,1,0,0,3,0,0,0,-1,'0',0,1),(5,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/sitemap/explore.php',0,NULL,0,1,0,1,3,0,0,0,-1,'0',0,1),(6,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/sitemap/search.php',0,NULL,0,1,0,2,3,0,0,0,-1,'0',0,1),(7,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/files/view.php',0,NULL,0,1,4,2,2,0,0,0,-1,'0',0,1),(8,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/files/search.php',0,NULL,0,1,0,0,7,0,0,0,-1,'0',0,1),(9,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/files/attributes.php',0,NULL,0,1,0,1,7,0,0,0,-1,'0',0,1),(10,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/files/sets.php',0,NULL,0,1,0,2,7,0,0,0,-1,'0',0,1),(11,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/files/add_set.php',0,NULL,0,1,0,3,7,0,0,0,-1,'0',0,1),(12,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/view.php',0,NULL,0,1,7,3,2,0,0,0,-1,'0',0,1),(13,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/search.php',0,NULL,0,1,0,0,12,0,0,0,-1,'0',0,1),(14,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/groups.php',0,NULL,0,1,1,1,12,0,0,0,-1,'0',0,1),(15,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/attributes.php',0,NULL,0,1,0,2,12,0,0,0,-1,'0',0,1),(16,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/add.php',0,NULL,0,1,0,3,12,0,0,0,-1,'0',0,1),(17,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/add_group.php',0,NULL,0,1,0,4,12,0,0,0,-1,'0',0,1),(18,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/groups/bulkupdate.php',0,NULL,0,1,0,0,14,0,0,0,-1,'0',0,1),(19,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/group_sets.php',0,NULL,0,1,0,5,12,0,0,0,-1,'0',0,1),(20,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/points/view.php',0,NULL,0,1,2,6,12,0,0,0,-1,'0',0,1),(21,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/points/assign.php',0,NULL,0,1,0,0,20,0,0,0,-1,'0',0,1),(22,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/users/points/actions.php',0,NULL,0,1,0,1,20,0,0,0,-1,'0',0,1),(23,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/express/view.php',0,NULL,0,1,1,4,2,0,0,0,-1,'0',0,1),(24,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/express/entries.php',0,NULL,0,1,0,0,23,0,0,0,-1,'0',0,1),(25,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports.php',0,NULL,0,1,4,5,2,0,0,0,-1,'0',0,1),(26,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports/forms.php',0,NULL,0,1,1,0,25,0,0,0,-1,'0',0,1),(27,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports/forms/legacy.php',0,NULL,0,1,0,0,26,0,0,0,-1,'0',0,1),(28,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports/surveys.php',0,NULL,0,1,0,1,25,0,0,0,-1,'0',0,1),(29,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports/logs.php',0,NULL,0,1,0,2,25,0,0,0,-1,'0',0,1),(30,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/reports/page_changes.php',0,NULL,0,1,0,3,25,0,0,0,-1,'0',0,1),(31,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/view.php',0,NULL,0,1,6,6,2,0,0,0,-1,'0',0,1),(32,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/themes/view.php',0,NULL,0,1,1,0,31,0,0,0,-1,'0',0,1),(33,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/themes/inspect.php',0,NULL,0,1,0,0,32,0,0,0,-1,'0',0,1),(34,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/view.php',0,NULL,0,1,6,1,31,0,0,0,-1,'0',0,1),(35,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/organize.php',0,NULL,0,1,0,0,34,0,0,0,-1,'0',0,1),(36,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/add.php',0,NULL,0,1,0,1,34,0,0,0,-1,'0',0,1),(37,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/form.php',0,NULL,0,1,0,2,34,0,0,0,-1,'0',0,1),(38,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/output.php',0,NULL,0,1,0,3,34,0,0,0,-1,'0',0,1),(39,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/attributes.php',0,NULL,0,1,0,4,34,0,0,0,-1,'0',0,1),(40,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/types/permissions.php',0,NULL,0,1,0,5,34,0,0,0,-1,'0',0,1),(41,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/templates/view.php',0,NULL,0,1,1,2,31,0,0,0,-1,'0',0,1),(42,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/templates/add.php',0,NULL,0,1,0,0,41,0,0,0,-1,'0',0,1),(43,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/attributes.php',0,NULL,0,1,0,3,31,0,0,0,-1,'0',0,1),(44,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/single.php',0,NULL,0,1,0,4,31,0,0,0,-1,'0',0,1),(45,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/pages/feeds.php',0,NULL,0,1,0,5,31,0,0,0,-1,'0',0,1),(46,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/view.php',0,NULL,0,1,5,7,2,0,0,0,-1,'0',0,1),(47,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/events.php',0,NULL,0,1,0,0,46,0,0,0,-1,'0',0,1),(48,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/event_list.php',0,NULL,0,1,0,1,46,0,0,0,-1,'0',0,1),(49,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/add.php',0,NULL,0,1,0,2,46,0,0,0,-1,'0',0,1),(50,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/permissions.php',0,NULL,0,1,0,3,46,0,0,0,-1,'0',0,1),(51,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/calendar/attributes.php',0,NULL,0,1,0,4,46,0,0,0,-1,'0',0,1),(52,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/conversations/view.php',0,NULL,0,1,1,8,2,0,0,0,-1,'0',0,1),(53,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/conversations/messages.php',0,NULL,0,1,0,0,52,0,0,0,-1,'0',0,1),(54,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/blocks/view.php',0,NULL,0,1,3,9,2,0,0,0,-1,'0',0,1),(55,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/blocks/stacks/view.php',0,NULL,0,1,1,0,54,0,0,0,-1,'0',0,1),(56,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/blocks/permissions.php',0,NULL,0,1,0,1,54,0,0,0,-1,'0',0,1),(57,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/blocks/stacks/list/view.php',0,NULL,0,1,0,0,55,0,0,0,-1,'0',0,1),(58,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/blocks/types/view.php',0,NULL,0,1,0,2,54,0,0,0,-1,'0',0,1),(59,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/view.php',0,NULL,0,1,5,10,2,0,0,0,-1,'0',0,1),(60,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/install.php',0,NULL,0,1,0,0,59,0,0,0,-1,'0',0,1),(61,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/update.php',0,NULL,0,1,0,1,59,0,0,0,-1,'0',0,1),(62,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/connect.php',0,NULL,0,1,0,2,59,0,0,0,-1,'0',0,1),(63,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/themes.php',0,NULL,0,1,0,3,59,0,0,0,-1,'0',0,1),(64,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/extend/addons.php',0,NULL,0,1,0,4,59,0,0,0,-1,'0',0,1),(65,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/view.php',0,NULL,0,1,15,11,2,0,0,0,-1,'0',0,1),(66,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/view.php',0,NULL,0,1,9,0,65,0,0,0,-1,'0',0,1),(67,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/name.php',0,NULL,0,1,0,0,66,0,0,0,-1,'0',0,1),(68,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/accessibility.php',0,NULL,0,1,0,1,66,0,0,0,-1,'0',0,1),(69,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/social.php',0,NULL,0,1,0,2,66,0,0,0,-1,'0',0,1),(70,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/icons.php',0,NULL,0,1,0,3,66,0,0,0,-1,'0',0,1),(71,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/editor.php',0,NULL,0,1,0,4,66,0,0,0,-1,'0',0,1),(72,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/multilingual/view.php',0,NULL,0,1,1,5,66,0,0,0,-1,'0',0,1),(73,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/multilingual/update.php',0,NULL,0,1,0,0,72,0,0,0,-1,'0',0,1),(74,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/timezone.php',0,NULL,0,1,0,6,66,0,0,0,-1,'0',0,1),(75,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/attributes.php',0,NULL,0,1,0,7,66,0,0,0,-1,'0',0,1),(76,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/basics/reset_edit_mode.php',0,NULL,0,1,0,8,66,0,0,0,-1,'0',0,1),(77,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/view.php',0,NULL,0,1,2,1,65,0,0,0,-1,'0',0,1),(78,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities.php',0,NULL,0,1,5,0,77,0,0,0,-1,'0',0,1),(79,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities/attributes.php',0,NULL,0,1,0,0,78,0,0,0,-1,'0',0,1),(80,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities/associations.php',0,NULL,0,1,0,1,78,0,0,0,-1,'0',0,1),(81,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities/forms.php',0,NULL,0,1,0,2,78,0,0,0,-1,'0',0,1),(82,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities/customize_search.php',0,NULL,0,1,0,3,78,0,0,0,-1,'0',0,1),(83,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entities/order_entries.php',0,NULL,0,1,0,4,78,0,0,0,-1,'0',0,1),(84,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/express/entries.php',0,NULL,0,1,0,1,77,0,0,0,-1,'0',0,1),(85,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/multilingual/view.php',0,NULL,0,1,4,2,65,0,0,0,-1,'0',0,1),(86,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/multilingual/setup.php',0,NULL,0,1,0,0,85,0,0,0,-1,'0',0,1),(87,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/multilingual/copy.php',0,NULL,0,1,0,1,85,0,0,0,-1,'0',0,1),(88,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/multilingual/page_report.php',0,NULL,0,1,0,2,85,0,0,0,-1,'0',0,1),(89,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/multilingual/translate_interface.php',0,NULL,0,1,0,3,85,0,0,0,-1,'0',0,1),(90,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/view.php',0,NULL,0,1,5,3,65,0,0,0,-1,'0',0,1),(91,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/urls.php',0,NULL,0,1,0,0,90,0,0,0,-1,'0',0,1),(92,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/bulk.php',0,NULL,0,1,0,1,90,0,0,0,-1,'0',0,1),(93,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/codes.php',0,NULL,0,1,0,2,90,0,0,0,-1,'0',0,1),(94,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/excluded.php',0,NULL,0,1,0,3,90,0,0,0,-1,'0',0,1),(95,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/seo/searchindex.php',0,NULL,0,1,0,4,90,0,0,0,-1,'0',0,1),(96,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/view.php',0,NULL,0,1,6,4,65,0,0,0,-1,'0',0,1),(97,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/filetypes.php',0,NULL,0,1,0,0,96,0,0,0,-1,'0',0,1),(98,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/permissions.php',0,NULL,0,1,0,1,96,0,0,0,-1,'0',0,1),(99,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/thumbnails.php',0,NULL,0,1,1,2,96,0,0,0,-1,'0',0,1),(100,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/thumbnails/options.php',0,NULL,0,1,0,0,99,0,0,0,-1,'0',0,1),(101,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/image_uploading.php',0,NULL,0,1,0,3,96,0,0,0,-1,'0',0,1),(102,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/storage.php',0,NULL,0,1,0,4,96,0,0,0,-1,'0',0,1),(103,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/files/export_options.php',0,NULL,0,1,0,5,96,0,0,0,-1,'0',0,1),(104,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/optimization/view.php',0,NULL,0,1,4,5,65,0,0,0,-1,'0',0,1),(105,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/optimization/cache.php',0,NULL,0,1,0,0,104,0,0,0,-1,'0',0,1),(106,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/optimization/clearcache.php',0,NULL,0,1,0,1,104,0,0,0,-1,'0',0,1),(107,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/optimization/jobs.php',0,NULL,0,1,0,2,104,0,0,0,-1,'0',0,1),(108,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','',0,NULL,0,1,0,3,104,0,0,0,-1,'0',0,1),(109,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/view.php',0,NULL,0,1,10,6,65,0,0,0,-1,'0',0,1),(110,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/site.php',0,NULL,0,1,0,0,109,0,0,0,-1,'0',0,1),(111,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/tasks.php',0,NULL,0,1,0,1,109,0,0,0,-1,'0',0,1),(112,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/users.php',0,NULL,0,1,0,2,109,0,0,0,-1,'0',0,1),(113,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/advanced.php',0,NULL,0,1,0,3,109,0,0,0,-1,'0',0,1),(114,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/workflows.php',0,NULL,0,1,0,4,109,0,0,0,-1,'0',0,1),(115,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/blacklist.php',0,NULL,0,1,1,5,109,0,0,0,-1,'0',0,1),(116,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/blacklist/range.php',0,NULL,0,1,0,0,115,0,0,0,-1,'0',0,1),(117,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/captcha.php',0,NULL,0,1,0,6,109,0,0,0,-1,'0',0,1),(118,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/antispam.php',0,NULL,0,1,0,7,109,0,0,0,-1,'0',0,1),(119,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/maintenance.php',0,NULL,0,1,0,8,109,0,0,0,-1,'0',0,1),(120,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/permissions/trusted_proxies.php',0,NULL,0,1,0,9,109,0,0,0,-1,'0',0,1),(121,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/view.php',0,NULL,0,1,9,7,65,0,0,0,-1,'0',0,1),(122,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/open.php',0,NULL,0,1,0,0,121,0,0,0,-1,'0',0,1),(123,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/postlogin.php',0,NULL,0,1,0,1,121,0,0,0,-1,'0',0,1),(124,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/profiles.php',0,NULL,0,1,0,2,121,0,0,0,-1,'0',0,1),(125,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/authentication.php',0,NULL,0,1,0,3,121,0,0,0,-1,'0',0,1),(126,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/global_password_reset.php',0,NULL,0,1,0,4,121,0,0,0,-1,'0',0,1),(127,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/notification.php',0,NULL,0,1,0,5,121,0,0,0,-1,'0',0,1),(128,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/deactivation.php',0,NULL,0,1,0,6,121,0,0,0,-1,'0',0,1),(129,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/automated_logout.php',0,NULL,0,1,0,7,121,0,0,0,-1,'0',0,1),(130,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/registration/password_requirements.php',0,NULL,0,1,0,8,121,0,0,0,-1,'0',0,1),(131,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/mail/view.php',0,NULL,0,1,3,8,65,0,0,0,-1,'0',0,1),(132,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/mail/method.php',0,NULL,0,1,1,0,131,0,0,0,-1,'0',0,1),(133,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/mail/method/test.php',0,NULL,0,1,0,0,132,0,0,0,-1,'0',0,1),(134,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/mail/importers.php',0,NULL,0,1,0,1,131,0,0,0,-1,'0',0,1),(135,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/mail/addresses.php',0,NULL,0,1,0,2,131,0,0,0,-1,'0',0,1),(136,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/calendar/view.php',0,NULL,0,1,4,9,65,0,0,0,-1,'0',0,1),(137,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/calendar/settings.php',0,NULL,0,1,0,0,136,0,0,0,-1,'0',0,1),(138,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/calendar/colors.php',0,NULL,0,1,0,1,136,0,0,0,-1,'0',0,1),(139,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/calendar/permissions.php',0,NULL,0,1,0,2,136,0,0,0,-1,'0',0,1),(140,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/calendar/import.php',0,NULL,0,1,0,3,136,0,0,0,-1,'0',0,1),(141,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/conversations/view.php',0,NULL,0,1,4,10,65,0,0,0,-1,'0',0,1),(142,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/conversations/settings.php',0,NULL,0,1,0,0,141,0,0,0,-1,'0',0,1),(143,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/conversations/points.php',0,NULL,0,1,0,1,141,0,0,0,-1,'0',0,1),(144,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/conversations/bannedwords.php',0,NULL,0,1,0,2,141,0,0,0,-1,'0',0,1),(145,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/conversations/permissions.php',0,NULL,0,1,0,3,141,0,0,0,-1,'0',0,1),(146,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/attributes/view.php',0,NULL,0,1,3,11,65,0,0,0,-1,'0',0,1),(147,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/attributes/types.php',0,NULL,0,1,0,0,146,0,0,0,-1,'0',0,1),(148,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/attributes/sets.php',0,NULL,0,1,0,1,146,0,0,0,-1,'0',0,1),(149,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/attributes/topics/view.php',0,NULL,0,1,1,2,146,0,0,0,-1,'0',0,1),(150,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/attributes/topics/add.php',0,NULL,0,1,0,0,149,0,0,0,-1,'0',0,1),(151,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/view.php',0,NULL,0,1,7,12,65,0,0,0,-1,'0',0,1),(152,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/info.php',0,NULL,0,1,0,0,151,0,0,0,-1,'0',0,1),(153,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/debug.php',0,NULL,0,1,0,1,151,0,0,0,-1,'0',0,1),(154,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/logging.php',0,NULL,0,1,0,2,151,0,0,0,-1,'0',0,1),(155,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/proxy.php',0,NULL,0,1,0,3,151,0,0,0,-1,'0',0,1),(156,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/entities.php',0,NULL,0,1,0,4,151,0,0,0,-1,'0',0,1),(157,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/database_charset.php',0,NULL,0,1,0,5,151,0,0,0,-1,'0',0,1),(158,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/environment/geolocation.php',0,NULL,0,1,0,6,151,0,0,0,-1,'0',0,1),(159,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/update/view.php',0,NULL,0,1,1,13,65,0,0,0,-1,'0',0,1),(160,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/update/update.php',0,NULL,0,1,0,0,159,0,0,0,-1,'0',0,1),(161,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/api/view.php',0,NULL,0,1,2,14,65,0,0,0,-1,'0',0,1),(162,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/api/settings.php',0,NULL,0,1,0,0,161,0,0,0,-1,'0',0,1),(163,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/system/api/integrations.php',0,NULL,0,1,0,1,161,0,0,0,-1,'0',0,1),(164,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT','/dashboard/welcome.php',0,NULL,0,1,1,0,2,0,0,0,-1,'0',0,1),(165,0,0,0,1,0,NULL,NULL,NULL,1,2,'PARENT',NULL,0,NULL,0,1,0,0,164,0,0,0,-1,'0',0,1),(166,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/!stacks/view.php',0,NULL,0,1,8,0,0,0,0,0,-1,'0',0,1),(167,0,0,0,1,0,NULL,NULL,NULL,1,167,'OVERRIDE','/page_not_found.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(168,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/!trash/view.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(169,0,0,0,1,0,NULL,NULL,NULL,1,169,'OVERRIDE','/login.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(170,0,0,0,1,0,NULL,NULL,NULL,1,170,'OVERRIDE','/register.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(171,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/account/view.php',0,NULL,0,1,3,0,0,0,0,0,-1,'0',0,1),(172,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/account/edit_profile.php',0,NULL,0,1,0,0,171,0,0,0,-1,'0',0,1),(173,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/account/avatar.php',0,NULL,0,1,0,1,171,0,0,0,-1,'0',0,1),(174,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/account/messages.php',0,NULL,0,1,0,2,171,0,0,0,-1,'0',0,1),(175,0,0,0,1,0,NULL,NULL,NULL,1,175,'OVERRIDE','/page_forbidden.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(176,0,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/download_file.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(177,1,0,0,1,0,NULL,NULL,NULL,1,177,'OVERRIDE','/!drafts/view.php',0,NULL,0,1,1,0,0,0,0,0,-1,'0',0,1),(178,1,0,0,1,0,NULL,NULL,NULL,1,1,'PARENT','/desktop.php',0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,1),(179,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,166,0,0,0,-1,'0',0,1),(180,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,1,166,0,0,0,-1,'0',0,1),(181,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,2,166,0,0,0,-1,'0',0,1),(182,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,3,166,0,0,0,-1,'0',0,1),(183,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,4,166,0,0,0,-1,'0',0,1),(184,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,5,166,0,0,0,-1,'0',0,1),(185,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,6,166,0,0,0,-1,'0',0,1),(186,0,1,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,7,166,0,0,0,-1,'0',0,1),(187,1,5,1,NULL,0,NULL,NULL,NULL,1,187,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(188,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,1,0,0,0,-1,'0',0,0),(189,1,10,1,NULL,0,NULL,NULL,NULL,1,189,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(190,1,10,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,6,1,1,0,0,0,-1,'0',0,0),(191,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,3,2,1,0,0,0,-1,'0',0,0),(192,1,9,1,NULL,0,NULL,NULL,NULL,1,192,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(193,1,9,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,3,3,1,0,0,0,-1,'0',0,0),(194,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,4,1,0,0,0,-1,'0',0,0),(195,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,5,1,0,0,0,-1,'0',0,0),(196,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,6,1,0,0,0,-1,'0',0,0),(197,1,8,1,NULL,0,NULL,NULL,NULL,1,197,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(198,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,190,0,0,0,-1,'0',0,0),(199,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,1,190,0,0,0,-1,'0',0,0),(200,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,2,190,0,0,0,-1,'0',0,0),(201,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,3,190,0,0,0,-1,'0',0,0),(202,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,4,190,0,0,0,-1,'0',0,0),(203,1,8,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,5,190,0,0,0,-1,'0',0,0),(204,1,6,1,NULL,0,NULL,NULL,NULL,1,204,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(205,1,6,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,193,0,0,0,-1,'0',0,0),(206,1,6,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,1,193,0,0,0,-1,'0',0,0),(207,1,6,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,2,193,0,0,0,-1,'0',0,0),(208,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,191,0,0,0,-1,'0',0,0),(209,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,2,1,191,0,0,0,-1,'0',0,0),(210,1,5,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,2,191,0,0,0,-1,'0',0,0),(211,1,7,1,NULL,0,NULL,NULL,NULL,1,211,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(212,1,7,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,0,209,0,0,0,-1,'0',0,0),(213,1,7,0,1,0,NULL,NULL,NULL,1,1,'PARENT',NULL,0,NULL,0,1,0,1,209,0,0,0,-1,'0',0,0),(214,1,5,1,NULL,0,NULL,NULL,NULL,1,214,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(215,1,5,1,NULL,0,NULL,NULL,NULL,1,215,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(216,1,5,1,NULL,0,NULL,NULL,NULL,1,216,'OVERRIDE',NULL,0,NULL,0,1,0,0,0,0,0,0,-1,'0',0,0),(217,1,5,0,1,0,NULL,NULL,NULL,1,177,'PARENT',NULL,0,NULL,0,0,0,0,177,0,0,1,-1,'0',0,1); /*!40000 ALTER TABLE `Pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccess` -- DROP TABLE IF EXISTS `PermissionAccess`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccess` ( `paID` int unsigned NOT NULL AUTO_INCREMENT, `paIsInUse` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`paID`) ) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccess` -- LOCK TABLES `PermissionAccess` WRITE; /*!40000 ALTER TABLE `PermissionAccess` DISABLE KEYS */; INSERT INTO `PermissionAccess` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(21,1),(22,1),(23,1),(24,1),(25,1),(26,1),(27,1),(28,1),(29,1),(30,1),(31,1),(32,1),(33,1),(34,1),(35,1),(36,1),(37,1),(38,1),(39,1),(40,1),(41,1),(42,1),(43,1),(44,1),(45,1),(46,1),(47,1),(48,1),(49,1),(50,1),(51,1),(52,1),(53,1),(54,1),(55,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(62,1),(63,1),(64,1),(65,1),(66,1),(67,1),(68,1),(69,1),(70,1),(71,1),(72,1),(73,1),(74,1),(75,1),(76,1),(77,1),(78,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(85,1),(86,1),(87,1),(88,1),(89,1),(90,1),(91,1),(92,1),(93,1),(94,1),(95,1),(96,1),(97,1),(98,1),(99,1),(100,1),(101,1),(102,1),(103,1),(104,1),(105,1),(106,1),(107,1),(108,1),(109,1),(110,1),(111,1),(112,1),(113,1),(114,1),(115,1),(116,1),(117,1),(118,1),(119,1); /*!40000 ALTER TABLE `PermissionAccess` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntities` -- DROP TABLE IF EXISTS `PermissionAccessEntities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntities` ( `peID` int unsigned NOT NULL AUTO_INCREMENT, `petID` int unsigned DEFAULT NULL, PRIMARY KEY (`peID`), KEY `petID` (`petID`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntities` -- LOCK TABLES `PermissionAccessEntities` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntities` DISABLE KEYS */; INSERT INTO `PermissionAccessEntities` VALUES (1,1),(2,1),(6,1),(7,2),(3,5),(4,6),(5,7); /*!40000 ALTER TABLE `PermissionAccessEntities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntityGroupSets` -- DROP TABLE IF EXISTS `PermissionAccessEntityGroupSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntityGroupSets` ( `peID` int unsigned NOT NULL DEFAULT '0', `gsID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`peID`,`gsID`), KEY `gsID` (`gsID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntityGroupSets` -- LOCK TABLES `PermissionAccessEntityGroupSets` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntityGroupSets` DISABLE KEYS */; /*!40000 ALTER TABLE `PermissionAccessEntityGroupSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntityGroups` -- DROP TABLE IF EXISTS `PermissionAccessEntityGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntityGroups` ( `pegID` int unsigned NOT NULL AUTO_INCREMENT, `peID` int unsigned NOT NULL DEFAULT '0', `gID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pegID`), KEY `peID` (`peID`), KEY `gID` (`gID`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntityGroups` -- LOCK TABLES `PermissionAccessEntityGroups` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntityGroups` DISABLE KEYS */; INSERT INTO `PermissionAccessEntityGroups` VALUES (1,1,3),(2,2,1),(3,6,2); /*!40000 ALTER TABLE `PermissionAccessEntityGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntityTypeCategories` -- DROP TABLE IF EXISTS `PermissionAccessEntityTypeCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntityTypeCategories` ( `petID` int unsigned NOT NULL DEFAULT '0', `pkCategoryID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`petID`,`pkCategoryID`), KEY `pkCategoryID` (`pkCategoryID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntityTypeCategories` -- LOCK TABLES `PermissionAccessEntityTypeCategories` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntityTypeCategories` DISABLE KEYS */; INSERT INTO `PermissionAccessEntityTypeCategories` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(1,4),(2,4),(3,4),(4,4),(1,5),(2,5),(3,5),(4,5),(6,5),(1,6),(2,6),(3,6),(4,6),(6,6),(1,7),(2,7),(3,7),(4,7),(1,8),(2,8),(3,8),(4,8),(1,9),(2,9),(3,9),(4,9),(1,10),(2,10),(3,10),(4,10),(1,11),(2,11),(3,11),(4,11),(1,12),(2,12),(3,12),(4,12),(1,13),(2,13),(3,13),(4,13),(1,14),(2,14),(3,14),(4,14),(1,15),(2,15),(3,15),(4,15),(5,15),(1,16),(2,16),(3,16),(4,16),(1,17),(2,17),(3,17),(4,17),(1,18),(2,18),(3,18),(4,18),(1,19),(2,19),(3,19),(4,19),(1,20),(2,20),(3,20),(4,20),(1,21),(2,21),(3,21),(4,21),(7,21),(1,22),(2,22),(3,22),(4,22),(7,22),(1,23),(2,23),(4,23),(1,24),(2,24),(3,24),(4,24),(1,25),(2,25),(3,25),(4,25); /*!40000 ALTER TABLE `PermissionAccessEntityTypeCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntityTypes` -- DROP TABLE IF EXISTS `PermissionAccessEntityTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntityTypes` ( `petID` int unsigned NOT NULL AUTO_INCREMENT, `petHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `petName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`petID`), UNIQUE KEY `petHandle` (`petHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntityTypes` -- LOCK TABLES `PermissionAccessEntityTypes` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntityTypes` DISABLE KEYS */; INSERT INTO `PermissionAccessEntityTypes` VALUES (1,'group','Group',0),(2,'user','User',0),(3,'group_set','Group Set',0),(4,'group_combination','Group Combination',0),(5,'page_owner','Page Owner',0),(6,'file_uploader','File Uploader',0),(7,'conversation_message_author','Message Author',0); /*!40000 ALTER TABLE `PermissionAccessEntityTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessEntityUsers` -- DROP TABLE IF EXISTS `PermissionAccessEntityUsers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessEntityUsers` ( `peID` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`peID`,`uID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessEntityUsers` -- LOCK TABLES `PermissionAccessEntityUsers` WRITE; /*!40000 ALTER TABLE `PermissionAccessEntityUsers` DISABLE KEYS */; INSERT INTO `PermissionAccessEntityUsers` VALUES (7,1); /*!40000 ALTER TABLE `PermissionAccessEntityUsers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessList` -- DROP TABLE IF EXISTS `PermissionAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `pdID` int unsigned NOT NULL DEFAULT '0', `accessType` smallint NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`), KEY `accessType` (`accessType`), KEY `peID` (`peID`), KEY `peID_accessType` (`peID`,`accessType`), KEY `pdID` (`pdID`), KEY `permissionAccessDuration` (`paID`,`pdID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessList` -- LOCK TABLES `PermissionAccessList` WRITE; /*!40000 ALTER TABLE `PermissionAccessList` DISABLE KEYS */; INSERT INTO `PermissionAccessList` VALUES (1,1,0,10),(2,1,0,10),(3,1,0,10),(4,1,0,10),(5,1,0,10),(6,1,0,10),(7,1,0,10),(8,1,0,10),(9,1,0,10),(10,2,0,10),(11,1,0,10),(12,1,0,10),(13,1,0,10),(14,1,0,10),(15,1,0,10),(16,2,0,10),(17,1,0,10),(18,1,0,10),(19,1,0,10),(20,1,0,10),(21,1,0,10),(22,1,0,10),(23,1,0,10),(24,1,0,10),(25,1,0,10),(26,1,0,10),(27,1,0,10),(28,1,0,10),(29,1,0,10),(30,1,0,10),(31,1,0,10),(32,1,0,10),(33,1,0,10),(34,1,0,10),(35,1,0,10),(36,1,0,10),(36,2,0,10),(37,1,0,10),(37,2,0,10),(38,1,0,10),(39,1,0,10),(40,3,0,10),(41,3,0,10),(42,3,0,10),(43,3,0,10),(44,1,0,10),(45,2,0,10),(46,2,0,10),(47,2,0,10),(48,3,0,10),(49,3,0,10),(50,3,0,10),(51,3,0,10),(52,3,0,10),(53,3,0,10),(54,2,0,10),(55,1,0,10),(55,2,0,10),(56,1,0,10),(57,1,0,10),(58,1,0,10),(59,1,0,10),(60,1,0,10),(61,1,0,10),(62,1,0,10),(63,1,0,10),(64,1,0,10),(65,2,0,10),(66,2,0,10),(67,2,0,10),(68,2,0,10),(69,1,0,10),(70,1,0,10),(71,1,0,10),(72,1,0,10),(73,1,0,10),(74,1,0,10),(75,1,0,10),(76,1,0,10),(77,1,0,10),(78,1,0,10),(79,1,0,10),(80,1,0,10),(81,1,0,10),(82,1,0,10),(83,1,0,10),(84,1,0,10),(85,1,0,10),(86,1,0,10),(87,1,0,10),(88,2,0,10),(89,1,0,10),(90,1,0,10),(91,1,0,10),(92,1,0,10),(93,1,0,10),(94,1,0,10),(95,1,0,10),(96,1,0,10),(97,1,0,10),(98,1,0,10),(99,1,0,10),(100,1,0,10),(101,1,0,10),(102,1,0,10),(103,1,0,10),(104,1,0,10),(105,1,0,10),(106,1,0,10),(107,1,0,10),(108,1,0,10),(109,1,0,10),(110,1,0,10),(111,2,0,10),(112,2,0,10),(113,1,0,10),(113,5,0,10),(114,1,0,10),(114,5,0,10),(115,1,0,10),(115,6,0,10),(116,1,0,10),(117,1,0,10),(118,1,0,10),(119,1,0,10),(119,7,0,10); /*!40000 ALTER TABLE `PermissionAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAccessWorkflows` -- DROP TABLE IF EXISTS `PermissionAccessWorkflows`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAccessWorkflows` ( `paID` int unsigned NOT NULL DEFAULT '0', `wfID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`wfID`), KEY `wfID` (`wfID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAccessWorkflows` -- LOCK TABLES `PermissionAccessWorkflows` WRITE; /*!40000 ALTER TABLE `PermissionAccessWorkflows` DISABLE KEYS */; /*!40000 ALTER TABLE `PermissionAccessWorkflows` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionAssignments` -- DROP TABLE IF EXISTS `PermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionAssignments` ( `paID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`pkID`), KEY `pkID` (`pkID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionAssignments` -- LOCK TABLES `PermissionAssignments` WRITE; /*!40000 ALTER TABLE `PermissionAssignments` DISABLE KEYS */; INSERT INTO `PermissionAssignments` VALUES (1,19),(2,20),(3,75),(4,76),(5,77),(6,79),(7,80),(8,81),(119,82),(9,83),(10,84),(11,85),(12,86),(13,87),(14,88),(15,89),(16,90),(17,110),(18,112),(19,113),(20,114),(21,115),(22,116),(23,117),(24,118),(25,119),(26,120),(27,121),(28,122),(29,123),(30,124),(31,125),(38,126),(39,127); /*!40000 ALTER TABLE `PermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionDurationObjects` -- DROP TABLE IF EXISTS `PermissionDurationObjects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionDurationObjects` ( `pdID` int unsigned NOT NULL AUTO_INCREMENT, `pdObject` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`pdID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionDurationObjects` -- LOCK TABLES `PermissionDurationObjects` WRITE; /*!40000 ALTER TABLE `PermissionDurationObjects` DISABLE KEYS */; /*!40000 ALTER TABLE `PermissionDurationObjects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionKeyCategories` -- DROP TABLE IF EXISTS `PermissionKeyCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionKeyCategories` ( `pkCategoryID` int unsigned NOT NULL AUTO_INCREMENT, `pkCategoryHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`pkCategoryID`), UNIQUE KEY `pkCategoryHandle` (`pkCategoryHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionKeyCategories` -- LOCK TABLES `PermissionKeyCategories` WRITE; /*!40000 ALTER TABLE `PermissionKeyCategories` DISABLE KEYS */; INSERT INTO `PermissionKeyCategories` VALUES (1,'page',NULL),(2,'single_page',NULL),(3,'stack',NULL),(4,'user',NULL),(5,'file_folder',NULL),(6,'file',NULL),(7,'area',NULL),(8,'block_type',NULL),(9,'block',NULL),(10,'admin',NULL),(11,'notification',NULL),(12,'sitemap',NULL),(13,'marketplace_newsflow',NULL),(14,'basic_workflow',NULL),(15,'page_type',NULL),(16,'gathering',NULL),(17,'group_tree_node',NULL),(18,'express_tree_node',NULL),(19,'category_tree_node',NULL),(20,'topic_tree_node',NULL),(21,'conversation',NULL),(22,'conversation_message',NULL),(23,'multilingual_section',NULL),(24,'calendar_admin',NULL),(25,'calendar',NULL); /*!40000 ALTER TABLE `PermissionKeyCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PermissionKeys` -- DROP TABLE IF EXISTS `PermissionKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PermissionKeys` ( `pkID` int unsigned NOT NULL AUTO_INCREMENT, `pkHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkCanTriggerWorkflow` tinyint(1) NOT NULL DEFAULT '0', `pkHasCustomClass` tinyint(1) NOT NULL DEFAULT '0', `pkDescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pkCategoryID` int unsigned DEFAULT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`pkID`), UNIQUE KEY `akHandle` (`pkHandle`), KEY `pkCategoryID` (`pkCategoryID`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PermissionKeys` -- LOCK TABLES `PermissionKeys` WRITE; /*!40000 ALTER TABLE `PermissionKeys` DISABLE KEYS */; INSERT INTO `PermissionKeys` VALUES (1,'view_page','View',0,0,'Can see a page exists and read its content.',1,0),(2,'view_page_versions','View Versions',0,0,'Can view the page versions dialog and read past versions of a page.',1,0),(3,'view_page_in_sitemap','View Page in Sitemap',0,0,'Controls whether a user can see a page in the sitemap or intelligent search.',1,0),(4,'preview_page_as_user','Preview Page As User',0,0,'Ability to see what this page will look like at a specific time in the future as a specific user.',1,0),(5,'edit_page_properties','Edit Properties',0,1,'Ability to change anything in the Page Properties menu.',1,0),(6,'edit_page_contents','Edit Contents',0,0,'Ability to make edits to at least some of the content in the page. You can lock down different block areas and specific blocks by clicking Permissions on them as well. ',1,0),(7,'edit_page_speed_settings','Edit Speed Settings',0,0,'Ability to change caching settings.',1,0),(8,'edit_page_theme','Change Theme',0,1,'Ability to change just the theme for this page.',1,0),(9,'edit_page_template','Change Page Template',0,0,'Ability to change just the page template for this page.',1,0),(10,'edit_page_page_type','Edit Page Type',0,0,'Change the type of an existing page.',1,0),(11,'edit_page_permissions','Edit Permissions',1,0,'Ability to change permissions for this page. Warning: by granting this a user could give themselves more access.',1,0),(12,'delete_page','Delete',1,0,'Ability to move this page to the site\'s Trash.',1,0),(13,'delete_page_versions','Delete Versions',1,0,'Ability to remove old versions of this page.',1,0),(14,'approve_page_versions','Approve Changes',1,0,'Can publish an unapproved version of the page.',1,0),(15,'add_subpage','Add Sub-Page',0,1,'Can add a page beneath the current page.',1,0),(16,'move_or_copy_page','Move or Copy Page',1,0,'Can move or copy this page to another location.',1,0),(17,'schedule_page_contents_guest_access','Schedule Guest Access',0,0,'Can control scheduled guest access to this page.',1,0),(18,'edit_page_multilingual_settings','Edit Multilingual Settings',0,0,'Controls whether a user can see the multilingual settings menu, re-map a page or set a page as ignored in multilingual settings.',1,0),(19,'add_block','Add Block',0,1,'Can add a block to any area on the site. If someone is added here they can add blocks to any area (unless that area has permissions that override these global permissions.)',8,0),(20,'add_stack','Add Stack',0,0,'Can add a stack or block from a stack to any area on the site. If someone is added here they can add stacks to any area (unless that area has permissions that override these global permissions.)',8,0),(21,'view_area','View Area',0,0,'Can view the area and its contents.',7,0),(22,'edit_area_contents','Edit Area Contents',0,0,'Can edit blocks within this area.',7,0),(23,'add_block_to_area','Add Block to Area',0,1,'Can add blocks to this area. This setting overrides the global Add Block permission for this area.',7,0),(24,'add_stack_to_area','Add Stack to Area',0,0,'Can add stacks to this area. This setting overrides the global Add Stack permission for this area.',7,0),(25,'add_layout_to_area','Add Layouts to Area',0,0,'Controls whether users get the ability to add layouts to a particular area.',7,0),(26,'edit_area_design','Edit Area Design',0,0,'Controls whether users see design controls and can modify an area\'s custom CSS.',7,0),(27,'edit_area_permissions','Edit Area Permissions',0,0,'Controls whether users can access the permissions on an area. Custom area permissions could override those of the page.',7,0),(28,'delete_area_contents','Delete Area Contents',0,0,'Controls whether users can delete blocks from this area.',7,0),(29,'schedule_area_contents_guest_access','Schedule Guest Access',0,0,'Controls whether users can schedule guest access permissions on blocks in this area. Guest Access is a shortcut for granting permissions just to the Guest Group.',7,0),(30,'view_block','View Block',0,0,'Controls whether users can view this block in the page.',9,0),(31,'edit_block','Edit Block',0,0,'Controls whether users can edit this block. This overrides any area or page permissions.',9,0),(32,'edit_block_custom_template','Change Custom Template',0,0,'Controls whether users can change the custom template on this block. This overrides any area or page permissions.',9,0),(33,'edit_block_cache_settings','Edit Cache Settings',0,0,'Controls whether users can change the block cache settings for this block instance.',9,0),(34,'edit_block_name','Edit Name',0,0,'Controls whether users can change the block\'s name (rarely used.)',9,0),(35,'delete_block','Delete Block',0,0,'Controls whether users can delete this block. This overrides any area or page permissions.',9,0),(36,'edit_block_design','Edit Design',0,0,'Controls whether users can set custom design properties or CSS on this block.',9,0),(37,'edit_block_permissions','Edit Permissions',0,0,'Controls whether users can change permissions on this block, potentially granting themselves or others greater access.',9,0),(38,'schedule_guest_access','Schedule Guest Access',0,0,'Controls whether users can schedule guest access permissions on this block. Guest Access is a shortcut for granting permissions just to the Guest Group.',9,0),(39,'view_file_folder_file','View Files',0,0,'View files within folder in the site.',5,0),(40,'search_file_folder','Search File Folder',0,0,'See this file folder in the file manager',5,0),(41,'edit_file_folder','Edit File Folder',0,0,'Edit a file folder.',5,0),(42,'edit_file_folder_file_properties','Edit File Properties',0,0,'Can edit a file\'s properties.',5,0),(43,'edit_file_folder_file_contents','Edit File Contents',0,0,'Can edit or replace files in folder.',5,0),(44,'copy_file_folder_files','Copy File',0,0,'Can copy files in file folder.',5,0),(45,'edit_file_folder_permissions','Edit File Access',0,0,'Can edit access to file folder.',5,0),(46,'delete_file_folder','Delete File Set',0,0,'Can delete file folder.',5,0),(47,'delete_file_folder_files','Delete File',0,0,'Can delete files in folder.',5,0),(48,'add_file','Add File',0,1,'Can add files to folder.',5,0),(49,'view_file','View Files',0,0,'Can view and download files.',6,0),(50,'view_file_in_file_manager','View File in File Manager',0,0,'Can access the File Manager.',6,0),(51,'edit_file_properties','Edit File Properties',0,0,'Can edit a file\'s properties.',6,0),(52,'edit_file_contents','Edit File Contents',0,0,'Can edit or replace files.',6,0),(53,'copy_file','Copy File',0,0,'Can copy file.',6,0),(54,'edit_file_permissions','Edit File Access',0,0,'Can edit access to file.',6,0),(55,'delete_file','Delete File',0,0,'Can delete file.',6,0),(56,'approve_basic_workflow_action','Approve or Deny',0,0,'Grant ability to approve workflow.',14,0),(57,'notify_on_basic_workflow_entry','Notify on Entry',0,0,'Notify approvers that a change has entered the workflow.',14,0),(58,'notify_on_basic_workflow_approve','Notify on Approve',0,0,'Notify approvers that a change has been approved.',14,0),(59,'notify_on_basic_workflow_deny','Notify on Deny',0,0,'Notify approvers that a change has been denied.',14,0),(60,'add_page_type','Add Pages of This Type',0,0,'',15,0),(61,'edit_page_type','Edit Page Type',0,0,'',15,0),(62,'delete_page_type','Delete Page Type',0,0,'',15,0),(63,'edit_page_type_permissions','Edit Page Type Permissions',0,0,'',15,0),(64,'edit_page_type_drafts','Edit Page Type Drafts',0,0,'',15,0),(65,'view_topic_tree_node','View Topic Tree Node',0,0,'',20,0),(66,'view_category_tree_node','View Category Tree Node',0,0,'',19,0),(67,'add_conversation_message','Add Message to Conversation',0,1,'',21,0),(68,'add_conversation_message_attachments','Add Message Attachments',0,0,'',21,0),(69,'edit_conversation_permissions','Edit Conversation Permissions',0,0,'',21,0),(70,'delete_conversation_message','Delete Message',0,0,'',21,0),(71,'edit_conversation_message','Edit Message',0,0,'',21,0),(72,'rate_conversation_message','Rate Message',0,0,'',21,0),(73,'flag_conversation_message','Flag Message',0,0,'',21,0),(74,'approve_conversation_message','Approve Message',0,0,'',21,0),(75,'edit_user_properties','Edit User Details',0,1,NULL,4,0),(76,'view_user_attributes','View User Attributes',0,1,NULL,4,0),(77,'activate_user','Activate/Deactivate User',1,0,NULL,4,0),(78,'sudo','Sign in as User',0,0,NULL,4,0),(79,'upgrade','Upgrade concrete5',0,0,NULL,10,0),(80,'access_group_search','Access Group Search',0,0,NULL,4,0),(81,'delete_user','Delete User',1,0,NULL,4,0),(82,'notify_in_notification_center','Notify in Notification Center',0,1,'Controls who receives updates in the notification center.',11,0),(83,'add_calendar','Add Calendar',0,0,'',24,0),(84,'view_calendars','View Calendars',0,0,'',24,0),(85,'edit_calendars','Edit Calendars',0,0,'',24,0),(86,'edit_calendars_permissions','Edit Permissions',0,0,'',24,0),(87,'add_calendar_events','Add Calendar Events',0,0,'',24,0),(88,'approve_calendar_events','Approve Calendar Events',1,0,'',24,0),(89,'delete_calendars','Delete Calendars',0,0,'',24,0),(90,'access_calendar_rss_feeds','Access RSS Feeds',0,0,'',24,0),(91,'view_calendar','View Calendar',0,0,'',25,0),(92,'view_calendar_in_edit_interface','View in Edit Interface',0,0,'',25,0),(93,'edit_calendar_permissions','Edit Permissions',0,0,'',25,0),(94,'edit_calendar','Edit Calendar',0,0,'',25,0),(95,'add_calendar_event','Add Calendar Event',0,0,'',25,0),(96,'approve_calendar_event','Approve Calendar Event',1,0,'',25,0),(97,'edit_calendar_event_more_details_location','Modify More Details Location',0,0,'',25,0),(98,'edit_calendar_events','Edit Calendar Events',0,0,'',25,0),(99,'access_calendar_rss_feed','Access RSS Feed',0,0,'',25,0),(100,'delete_calendar','Delete Calendar',0,0,'',25,0),(101,'view_express_entries','View Entries',0,0,NULL,18,0),(102,'add_express_entries','Add Entry',0,0,NULL,18,0),(103,'edit_express_entries','Edit Entry',0,0,NULL,18,0),(104,'delete_express_entries','Delete Entry',0,0,NULL,18,0),(105,'search_users_in_group','Search User Group',0,0,NULL,17,0),(106,'edit_group','Edit Group',0,0,NULL,17,0),(107,'assign_group','Assign Group',0,0,NULL,17,0),(108,'add_sub_group','Add Child Group',0,0,NULL,17,0),(109,'edit_group_permissions','Edit Group Permissions',0,0,NULL,17,0),(110,'access_page_type_permissions','Access Page Type Permissions',0,0,NULL,10,0),(111,'access_task_permissions','Access Task Permissions',0,0,NULL,10,0),(112,'access_sitemap','Access Sitemap',0,0,NULL,12,0),(113,'access_page_defaults','Access Page Type Defaults',0,0,NULL,10,0),(114,'customize_themes','Customize Themes',0,0,NULL,10,0),(115,'manage_layout_presets','Manage Layout Presets',0,0,NULL,10,0),(116,'empty_trash','Empty Trash',0,0,NULL,10,0),(117,'add_topic_tree','Add Topic Tree',0,0,NULL,10,0),(118,'remove_topic_tree','Remove Topic Tree',0,0,NULL,10,0),(119,'view_in_maintenance_mode','View Site in Maintenance Mode',0,0,'Ability to see and use the website when concrete5 is in maintenance mode.',10,0),(120,'uninstall_packages','Uninstall Packages',0,0,NULL,13,0),(121,'install_packages','Install Packages',0,0,NULL,13,0),(122,'view_newsflow','View Newsflow',0,0,NULL,13,0),(123,'access_user_search_export','Export Site Users',0,0,'Controls whether a user can export site users or not',4,0),(124,'access_user_search','Access User Search',0,0,'Controls whether a user can view the search user interface.',4,0),(125,'edit_topic_tree','Edit Topic Tree',0,0,NULL,10,0),(126,'edit_gatherings','Edit Gatherings',0,0,'Can edit the footprint and items in all gatherings.',10,0),(127,'edit_gathering_items','Edit Gathering Items',0,0,'',16,0); /*!40000 ALTER TABLE `PermissionKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PileContents` -- DROP TABLE IF EXISTS `PileContents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PileContents` ( `pcID` int unsigned NOT NULL AUTO_INCREMENT, `pID` int unsigned NOT NULL DEFAULT '0', `itemID` int unsigned NOT NULL DEFAULT '0', `itemType` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `quantity` int unsigned NOT NULL DEFAULT '1', `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `displayOrder` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pcID`), KEY `pID` (`pID`,`displayOrder`), KEY `itemID` (`itemID`), KEY `itemType` (`itemType`,`itemID`,`pID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PileContents` -- LOCK TABLES `PileContents` WRITE; /*!40000 ALTER TABLE `PileContents` DISABLE KEYS */; /*!40000 ALTER TABLE `PileContents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Piles` -- DROP TABLE IF EXISTS `Piles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Piles` ( `pID` int unsigned NOT NULL AUTO_INCREMENT, `uID` int unsigned DEFAULT NULL, `isDefault` tinyint(1) NOT NULL DEFAULT '0', `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`pID`), KEY `uID` (`uID`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Piles` -- LOCK TABLES `Piles` WRITE; /*!40000 ALTER TABLE `Piles` DISABLE KEYS */; /*!40000 ALTER TABLE `Piles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `PrivateMessageNotifications` -- DROP TABLE IF EXISTS `PrivateMessageNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `PrivateMessageNotifications` ( `msgID` int unsigned NOT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), CONSTRAINT `FK_1AB97592ED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `PrivateMessageNotifications` -- LOCK TABLES `PrivateMessageNotifications` WRITE; /*!40000 ALTER TABLE `PrivateMessageNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `PrivateMessageNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QueueMessages` -- DROP TABLE IF EXISTS `QueueMessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `QueueMessages` ( `message_id` int unsigned NOT NULL AUTO_INCREMENT, `queue_id` int unsigned NOT NULL, `handle` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `body` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `md5` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `timeout` decimal(14,0) DEFAULT NULL, `created` int unsigned NOT NULL, PRIMARY KEY (`message_id`), UNIQUE KEY `message_handle` (`handle`), KEY `message_queueid` (`queue_id`), CONSTRAINT `FK_7C04D76477B5BAE` FOREIGN KEY (`queue_id`) REFERENCES `Queues` (`queue_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QueueMessages` -- LOCK TABLES `QueueMessages` WRITE; /*!40000 ALTER TABLE `QueueMessages` DISABLE KEYS */; /*!40000 ALTER TABLE `QueueMessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `QueuePageDuplicationRelations` -- DROP TABLE IF EXISTS `QueuePageDuplicationRelations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `QueuePageDuplicationRelations` ( `queue_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `cID` int unsigned NOT NULL DEFAULT '0', `originalCID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cID`,`originalCID`), KEY `originalCID` (`originalCID`,`queue_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `QueuePageDuplicationRelations` -- LOCK TABLES `QueuePageDuplicationRelations` WRITE; /*!40000 ALTER TABLE `QueuePageDuplicationRelations` DISABLE KEYS */; /*!40000 ALTER TABLE `QueuePageDuplicationRelations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Queues` -- DROP TABLE IF EXISTS `Queues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Queues` ( `queue_id` int unsigned NOT NULL AUTO_INCREMENT, `queue_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `timeout` int unsigned NOT NULL DEFAULT '30', PRIMARY KEY (`queue_id`), KEY `queue_name` (`queue_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Queues` -- LOCK TABLES `Queues` WRITE; /*!40000 ALTER TABLE `Queues` DISABLE KEYS */; /*!40000 ALTER TABLE `Queues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SavedExpressSearchQueries` -- DROP TABLE IF EXISTS `SavedExpressSearchQueries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SavedExpressSearchQueries` ( `id` int NOT NULL AUTO_INCREMENT, `presetName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `query_fields` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_columns` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_itemsPerPage` smallint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SavedExpressSearchQueries` -- LOCK TABLES `SavedExpressSearchQueries` WRITE; /*!40000 ALTER TABLE `SavedExpressSearchQueries` DISABLE KEYS */; /*!40000 ALTER TABLE `SavedExpressSearchQueries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SavedFileSearchQueries` -- DROP TABLE IF EXISTS `SavedFileSearchQueries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SavedFileSearchQueries` ( `id` int NOT NULL AUTO_INCREMENT, `presetName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `query_fields` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_columns` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_itemsPerPage` smallint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SavedFileSearchQueries` -- LOCK TABLES `SavedFileSearchQueries` WRITE; /*!40000 ALTER TABLE `SavedFileSearchQueries` DISABLE KEYS */; /*!40000 ALTER TABLE `SavedFileSearchQueries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SavedPageSearchQueries` -- DROP TABLE IF EXISTS `SavedPageSearchQueries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SavedPageSearchQueries` ( `id` int NOT NULL AUTO_INCREMENT, `presetName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `query_fields` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_columns` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_itemsPerPage` smallint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SavedPageSearchQueries` -- LOCK TABLES `SavedPageSearchQueries` WRITE; /*!40000 ALTER TABLE `SavedPageSearchQueries` DISABLE KEYS */; /*!40000 ALTER TABLE `SavedPageSearchQueries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SavedUserSearchQueries` -- DROP TABLE IF EXISTS `SavedUserSearchQueries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SavedUserSearchQueries` ( `id` int NOT NULL AUTO_INCREMENT, `presetName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `query_fields` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_columns` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:object)', `query_itemsPerPage` smallint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SavedUserSearchQueries` -- LOCK TABLES `SavedUserSearchQueries` WRITE; /*!40000 ALTER TABLE `SavedUserSearchQueries` DISABLE KEYS */; /*!40000 ALTER TABLE `SavedUserSearchQueries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Sessions` -- DROP TABLE IF EXISTS `Sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Sessions` ( `sessionID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `sessionValue` longtext COLLATE utf8mb4_unicode_ci, `sessionTime` int unsigned NOT NULL, `sessionLifeTime` int unsigned NOT NULL, PRIMARY KEY (`sessionID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Sessions` -- LOCK TABLES `Sessions` WRITE; /*!40000 ALTER TABLE `Sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `Sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiblingPageRelations` -- DROP TABLE IF EXISTS `SiblingPageRelations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiblingPageRelations` ( `mpRelationID` int unsigned NOT NULL, `cID` int unsigned NOT NULL, PRIMARY KEY (`mpRelationID`,`cID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiblingPageRelations` -- LOCK TABLES `SiblingPageRelations` WRITE; /*!40000 ALTER TABLE `SiblingPageRelations` DISABLE KEYS */; /*!40000 ALTER TABLE `SiblingPageRelations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteAttributeKeys` -- DROP TABLE IF EXISTS `SiteAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteAttributeKeys` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_63D1E182B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteAttributeKeys` -- LOCK TABLES `SiteAttributeKeys` WRITE; /*!40000 ALTER TABLE `SiteAttributeKeys` DISABLE KEYS */; /*!40000 ALTER TABLE `SiteAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteAttributeValues` -- DROP TABLE IF EXISTS `SiteAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteAttributeValues` ( `siteID` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`siteID`,`akID`), KEY `IDX_67658AF7521D8435` (`siteID`), KEY `IDX_67658AF7B6561A7E` (`akID`), KEY `IDX_67658AF7A2A82A5D` (`avID`), CONSTRAINT `FK_67658AF7521D8435` FOREIGN KEY (`siteID`) REFERENCES `Sites` (`siteID`), CONSTRAINT `FK_67658AF7A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_67658AF7B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteAttributeValues` -- LOCK TABLES `SiteAttributeValues` WRITE; /*!40000 ALTER TABLE `SiteAttributeValues` DISABLE KEYS */; /*!40000 ALTER TABLE `SiteAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteLocales` -- DROP TABLE IF EXISTS `SiteLocales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteLocales` ( `siteLocaleID` int unsigned NOT NULL AUTO_INCREMENT, `msIsDefault` tinyint(1) NOT NULL, `msLanguage` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `msCountry` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `msNumPlurals` int NOT NULL, `msPluralRule` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL, `msPluralCases` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL, `siteID` int unsigned DEFAULT NULL, `siteTreeID` int unsigned DEFAULT NULL, PRIMARY KEY (`siteLocaleID`), UNIQUE KEY `UNIQ_2527AB2CF9431B4B` (`siteTreeID`), KEY `IDX_2527AB2C521D8435` (`siteID`), CONSTRAINT `FK_2527AB2C521D8435` FOREIGN KEY (`siteID`) REFERENCES `Sites` (`siteID`), CONSTRAINT `FK_2527AB2CF9431B4B` FOREIGN KEY (`siteTreeID`) REFERENCES `SiteTreeTrees` (`siteTreeID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteLocales` -- LOCK TABLES `SiteLocales` WRITE; /*!40000 ALTER TABLE `SiteLocales` DISABLE KEYS */; INSERT INTO `SiteLocales` VALUES (1,1,'en','US',2,'n != 1','one@1\nother@0, 2~16, 100, 1000, 10000, 100000, 1000000, …',1,1); /*!40000 ALTER TABLE `SiteLocales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteSearchIndexAttributes` -- DROP TABLE IF EXISTS `SiteSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteSearchIndexAttributes` ( `siteID` int unsigned NOT NULL, PRIMARY KEY (`siteID`), CONSTRAINT `FK_3DD070B4521D8435` FOREIGN KEY (`siteID`) REFERENCES `Sites` (`siteID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteSearchIndexAttributes` -- LOCK TABLES `SiteSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `SiteSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `SiteSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteTreeTrees` -- DROP TABLE IF EXISTS `SiteTreeTrees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteTreeTrees` ( `siteLocaleID` int unsigned DEFAULT NULL, `siteTreeID` int unsigned NOT NULL, PRIMARY KEY (`siteTreeID`), UNIQUE KEY `UNIQ_A4B9696EACD624CD` (`siteLocaleID`), CONSTRAINT `FK_A4B9696EACD624CD` FOREIGN KEY (`siteLocaleID`) REFERENCES `SiteLocales` (`siteLocaleID`), CONSTRAINT `FK_A4B9696EF9431B4B` FOREIGN KEY (`siteTreeID`) REFERENCES `SiteTrees` (`siteTreeID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteTreeTrees` -- LOCK TABLES `SiteTreeTrees` WRITE; /*!40000 ALTER TABLE `SiteTreeTrees` DISABLE KEYS */; INSERT INTO `SiteTreeTrees` VALUES (1,1); /*!40000 ALTER TABLE `SiteTreeTrees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteTrees` -- DROP TABLE IF EXISTS `SiteTrees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteTrees` ( `siteTreeID` int unsigned NOT NULL AUTO_INCREMENT, `siteHomePageID` int unsigned NOT NULL, `treeType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`siteTreeID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteTrees` -- LOCK TABLES `SiteTrees` WRITE; /*!40000 ALTER TABLE `SiteTrees` DISABLE KEYS */; INSERT INTO `SiteTrees` VALUES (1,1,'sitetree'); /*!40000 ALTER TABLE `SiteTrees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SiteTypes` -- DROP TABLE IF EXISTS `SiteTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SiteTypes` ( `siteTypeID` int unsigned NOT NULL AUTO_INCREMENT, `siteTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `siteTypeName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `siteTypeThemeID` int NOT NULL, `siteTypeHomePageTemplateID` int NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`siteTypeID`), UNIQUE KEY `UNIQ_7CBFE97576D39A3C` (`siteTypeHandle`), UNIQUE KEY `UNIQ_7CBFE975C7F74FC3` (`siteTypeName`), KEY `IDX_7CBFE975CE45CBB0` (`pkgID`), CONSTRAINT `FK_7CBFE975CE45CBB0` FOREIGN KEY (`pkgID`) REFERENCES `Packages` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SiteTypes` -- LOCK TABLES `SiteTypes` WRITE; /*!40000 ALTER TABLE `SiteTypes` DISABLE KEYS */; INSERT INTO `SiteTypes` VALUES (1,'default','Default Site Type',0,0,NULL); /*!40000 ALTER TABLE `SiteTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Sites` -- DROP TABLE IF EXISTS `Sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Sites` ( `siteID` int unsigned NOT NULL AUTO_INCREMENT, `pThemeID` int unsigned NOT NULL, `siteIsDefault` tinyint(1) NOT NULL, `siteHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `siteTypeID` int unsigned DEFAULT NULL, PRIMARY KEY (`siteID`), UNIQUE KEY `UNIQ_7DC18567D84E1976` (`siteHandle`), KEY `IDX_7DC18567E9548DF7` (`siteTypeID`), CONSTRAINT `FK_7DC18567E9548DF7` FOREIGN KEY (`siteTypeID`) REFERENCES `SiteTypes` (`siteTypeID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Sites` -- LOCK TABLES `Sites` WRITE; /*!40000 ALTER TABLE `Sites` DISABLE KEYS */; INSERT INTO `Sites` VALUES (1,1,1,'default',1); /*!40000 ALTER TABLE `Sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SocialLinks` -- DROP TABLE IF EXISTS `SocialLinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SocialLinks` ( `ssHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slID` int NOT NULL AUTO_INCREMENT, `siteID` int unsigned DEFAULT NULL, PRIMARY KEY (`slID`), KEY `IDX_84EBA2B4521D8435` (`siteID`), CONSTRAINT `FK_84EBA2B4521D8435` FOREIGN KEY (`siteID`) REFERENCES `Sites` (`siteID`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SocialLinks` -- LOCK TABLES `SocialLinks` WRITE; /*!40000 ALTER TABLE `SocialLinks` DISABLE KEYS */; INSERT INTO `SocialLinks` VALUES ('facebook','http://facebook.com/concrete5',1,1),('github','http://github.com/concrete5',2,1),('twitter','http://twitter.com/concrete5',3,1); /*!40000 ALTER TABLE `SocialLinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StackUsageRecord` -- DROP TABLE IF EXISTS `StackUsageRecord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StackUsageRecord` ( `stack_id` int NOT NULL, `block_id` int NOT NULL, `collection_id` int NOT NULL, `collection_version_id` int NOT NULL, PRIMARY KEY (`stack_id`,`block_id`,`collection_id`,`collection_version_id`), KEY `block` (`block_id`), KEY `collection_version` (`collection_id`,`collection_version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StackUsageRecord` -- LOCK TABLES `StackUsageRecord` WRITE; /*!40000 ALTER TABLE `StackUsageRecord` DISABLE KEYS */; /*!40000 ALTER TABLE `StackUsageRecord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Stacks` -- DROP TABLE IF EXISTS `Stacks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Stacks` ( `stID` int unsigned NOT NULL AUTO_INCREMENT, `stName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `stType` int unsigned NOT NULL DEFAULT '0', `cID` int unsigned NOT NULL DEFAULT '0', `stMultilingualSection` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`stID`), KEY `stType` (`stType`), KEY `stName` (`stName`), KEY `cID` (`cID`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Stacks` -- LOCK TABLES `Stacks` WRITE; /*!40000 ALTER TABLE `Stacks` DISABLE KEYS */; INSERT INTO `Stacks` VALUES (1,'Footer Contact',20,179,0),(2,'Footer Legal',20,180,0),(3,'Footer Navigation',20,181,0),(4,'Footer Site Title',20,182,0),(5,'Footer Social',20,183,0),(6,'Header Navigation',20,184,0),(7,'Header Search',20,185,0),(8,'Header Site Title',20,186,0); /*!40000 ALTER TABLE `Stacks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StyleCustomizerCustomCssRecords` -- DROP TABLE IF EXISTS `StyleCustomizerCustomCssRecords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StyleCustomizerCustomCssRecords` ( `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `sccRecordID` int NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sccRecordID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StyleCustomizerCustomCssRecords` -- LOCK TABLES `StyleCustomizerCustomCssRecords` WRITE; /*!40000 ALTER TABLE `StyleCustomizerCustomCssRecords` DISABLE KEYS */; /*!40000 ALTER TABLE `StyleCustomizerCustomCssRecords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StyleCustomizerInlineStylePresets` -- DROP TABLE IF EXISTS `StyleCustomizerInlineStylePresets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StyleCustomizerInlineStylePresets` ( `pssPresetID` int unsigned NOT NULL AUTO_INCREMENT, `pssPresetName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `issID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pssPresetID`), KEY `issID` (`issID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StyleCustomizerInlineStylePresets` -- LOCK TABLES `StyleCustomizerInlineStylePresets` WRITE; /*!40000 ALTER TABLE `StyleCustomizerInlineStylePresets` DISABLE KEYS */; /*!40000 ALTER TABLE `StyleCustomizerInlineStylePresets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StyleCustomizerInlineStyleSets` -- DROP TABLE IF EXISTS `StyleCustomizerInlineStyleSets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StyleCustomizerInlineStyleSets` ( `issID` int NOT NULL AUTO_INCREMENT, `customClass` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customElementAttribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backgroundColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backgroundImageFileID` int NOT NULL, `backgroundRepeat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backgroundSize` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backgroundPosition` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `borderColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `borderStyle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `borderWidth` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `borderRadius` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `baseFontSize` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `alignment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `textColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `linkColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `marginTop` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `marginBottom` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `marginLeft` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `marginRight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paddingTop` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paddingBottom` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paddingLeft` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paddingRight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rotate` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boxShadowHorizontal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boxShadowVertical` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boxShadowBlur` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boxShadowSpread` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boxShadowColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hideOnExtraSmallDevice` tinyint(1) DEFAULT NULL, `hideOnSmallDevice` tinyint(1) DEFAULT NULL, `hideOnMediumDevice` tinyint(1) DEFAULT NULL, `hideOnLargeDevice` tinyint(1) DEFAULT NULL, PRIMARY KEY (`issID`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StyleCustomizerInlineStyleSets` -- LOCK TABLES `StyleCustomizerInlineStyleSets` WRITE; /*!40000 ALTER TABLE `StyleCustomizerInlineStyleSets` DISABLE KEYS */; INSERT INTO `StyleCustomizerInlineStyleSets` VALUES (1,'concrete5-org-stories','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(2,'block-sidebar-wrapped','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(3,'block-sidebar-wrapped','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(4,'block-sidebar-wrapped','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(5,'blog-entry-list','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(6,'block-sidebar-wrapped','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(7,'block-sidebar-padded','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(8,'','','','',0,'no-repeat','','','','none','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(9,'feature-home-page','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(10,'feature-home-page','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(11,'feature-home-page','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(12,'','','','',0,'','','','','','','','','','','','','80px','','','','','','','','','','','','',0,0,0,0),(13,'recent-blog-entry','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(14,'recent-blog-entry','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(15,'area-content-accent','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(16,'area-content-accent','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(17,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(18,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(19,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(20,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(21,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(22,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(23,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(24,'testimonial-bio','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(25,'image-right-tilt','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(26,'image-circle','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(27,'image-right-tilt','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(28,'page-list-with-buttons','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','',0,0,0,0),(29,NULL,NULL,NULL,NULL,0,'no-repeat','auto','0% 0%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'89px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0),(30,NULL,NULL,NULL,NULL,0,'no-repeat','auto','0% 0%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'89px',NULL,NULL,NULL,'62px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0),(31,NULL,NULL,NULL,NULL,0,'no-repeat','auto','0% 0%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'23px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0),(32,NULL,NULL,NULL,NULL,0,'no-repeat','auto','0% 0%',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-2px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0); /*!40000 ALTER TABLE `StyleCustomizerInlineStyleSets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StyleCustomizerValueLists` -- DROP TABLE IF EXISTS `StyleCustomizerValueLists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StyleCustomizerValueLists` ( `scvlID` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`scvlID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StyleCustomizerValueLists` -- LOCK TABLES `StyleCustomizerValueLists` WRITE; /*!40000 ALTER TABLE `StyleCustomizerValueLists` DISABLE KEYS */; /*!40000 ALTER TABLE `StyleCustomizerValueLists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `StyleCustomizerValues` -- DROP TABLE IF EXISTS `StyleCustomizerValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `StyleCustomizerValues` ( `scvID` int unsigned NOT NULL AUTO_INCREMENT, `scvlID` int unsigned DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`scvID`), KEY `scvlID` (`scvlID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `StyleCustomizerValues` -- LOCK TABLES `StyleCustomizerValues` WRITE; /*!40000 ALTER TABLE `StyleCustomizerValues` DISABLE KEYS */; /*!40000 ALTER TABLE `StyleCustomizerValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemAntispamLibraries` -- DROP TABLE IF EXISTS `SystemAntispamLibraries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SystemAntispamLibraries` ( `saslHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `saslName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `saslIsActive` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`saslHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemAntispamLibraries` -- LOCK TABLES `SystemAntispamLibraries` WRITE; /*!40000 ALTER TABLE `SystemAntispamLibraries` DISABLE KEYS */; /*!40000 ALTER TABLE `SystemAntispamLibraries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemCaptchaLibraries` -- DROP TABLE IF EXISTS `SystemCaptchaLibraries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SystemCaptchaLibraries` ( `sclHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `sclName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sclIsActive` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`sclHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemCaptchaLibraries` -- LOCK TABLES `SystemCaptchaLibraries` WRITE; /*!40000 ALTER TABLE `SystemCaptchaLibraries` DISABLE KEYS */; INSERT INTO `SystemCaptchaLibraries` VALUES ('recaptchaV3','reCAPTCHA v3',0,0),('securimage','SecurImage (Default)',1,0); /*!40000 ALTER TABLE `SystemCaptchaLibraries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemContentEditorSnippets` -- DROP TABLE IF EXISTS `SystemContentEditorSnippets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SystemContentEditorSnippets` ( `scsHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `scsName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scsIsActive` tinyint(1) NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`scsHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemContentEditorSnippets` -- LOCK TABLES `SystemContentEditorSnippets` WRITE; /*!40000 ALTER TABLE `SystemContentEditorSnippets` DISABLE KEYS */; INSERT INTO `SystemContentEditorSnippets` VALUES ('page_name','Page Name',1,0),('user_name','User Name',1,0); /*!40000 ALTER TABLE `SystemContentEditorSnippets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemDatabaseMigrations` -- DROP TABLE IF EXISTS `SystemDatabaseMigrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SystemDatabaseMigrations` ( `version` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemDatabaseMigrations` -- LOCK TABLES `SystemDatabaseMigrations` WRITE; /*!40000 ALTER TABLE `SystemDatabaseMigrations` DISABLE KEYS */; INSERT INTO `SystemDatabaseMigrations` VALUES ('20140919000000'),('20140930000000'),('20141017000000'),('20141024000000'),('20141113000000'),('20141219000000'),('20150109000000'),('20150504000000'),('20150515000000'),('20150610000000'),('20150612000000'),('20150615000000'),('20150616000000'),('20150619000000'),('20150622000000'),('20150623000000'),('20150713000000'),('20150731000000'),('20151221000000'),('20160107000000'),('20160213000000'),('20160314000000'),('20160412000000'),('20160615000000'),('20160725000000'),('20161109000000'),('20161203000000'),('20161208000000'),('20161216000000'),('20161216100000'),('20170118000000'),('20170123000000'),('20170201000000'),('20170202000000'),('20170227063249'),('20170313000000'),('20170316000000'),('20170404000000'),('20170406000000'),('20170407000001'),('20170412000000'),('20170418000000'),('20170420000000'),('20170421000000'),('20170424000000'),('20170505000000'),('20170512000000'),('20170519000000'),('20170608000000'),('20170608100000'),('20170609000000'),('20170609100000'),('20170610000000'),('20170611000000'),('20170613000000'),('20170614000000'),('20170626000000'),('20170711151953'),('20170731021618'),('20170802000000'),('20170804000000'),('20170810000000'),('20170818000000'),('20170824000000'),('20170905000000'),('20170915000000'),('20170926000000'),('20171012000000'),('20171025000000'),('20171109000000'),('20171109065758'),('20171110032423'),('20171121000000'),('20171129190607'),('20171218000000'),('20171221194440'),('20180119000000'),('20180122213656'),('20180122220813'),('20180123000000'),('20180126000000'),('20180130000000'),('20180212000000'),('20180213000000'),('20180227035239'),('20180308043255'),('20180328215345'),('20180329183749'),('20180330080830'),('20180403143200'),('20180518153531'),('20180524000000'),('20180531000000'),('20180604000000'),('20180609000000'),('20180615000000'),('20180617000000'),('20180621222449'),('20180622192332'),('20180627000000'),('20180709175202'),('20180710203437'),('20180716000000'),('20180717000000'),('20180813220933'),('20180816210727'),('20180820205800'),('20180831213421'),('20180904165911'),('20180907091500'),('20180910000000'),('20180912113737'),('20180920000000'),('20180926000000'),('20180926070200'),('20180926070300'),('20181006212300'),('20181006212400'),('20181019010145'),('20181029223809'),('20181105102800'),('20181112211702'),('20181116072400'),('20181211000000'),('20181211100000'),('20181212000000'),('20181212221911'),('20181222183445'),('20190106000000'),('20190110194848'),('20190110231015'),('20190111181236'),('20190112000000'),('20190129000000'),('20190225000000'),('20190225184524'),('20190301133300'),('20190516204806'),('20190520171430'),('20190625177700'),('20190625177710'),('20190717090600'),('20190817000000'),('20190822160700'),('20190826000000'),('20190925072210'); /*!40000 ALTER TABLE `SystemDatabaseMigrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SystemDatabaseQueryLog` -- DROP TABLE IF EXISTS `SystemDatabaseQueryLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `SystemDatabaseQueryLog` ( `ID` int unsigned NOT NULL AUTO_INCREMENT, `query` text COLLATE utf8mb4_unicode_ci, `params` text COLLATE utf8mb4_unicode_ci, `executionMS` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SystemDatabaseQueryLog` -- LOCK TABLES `SystemDatabaseQueryLog` WRITE; /*!40000 ALTER TABLE `SystemDatabaseQueryLog` DISABLE KEYS */; /*!40000 ALTER TABLE `SystemDatabaseQueryLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TopicTrees` -- DROP TABLE IF EXISTS `TopicTrees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TopicTrees` ( `treeID` int unsigned NOT NULL DEFAULT '0', `topicTreeName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', PRIMARY KEY (`treeID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TopicTrees` -- LOCK TABLES `TopicTrees` WRITE; /*!40000 ALTER TABLE `TopicTrees` DISABLE KEYS */; INSERT INTO `TopicTrees` VALUES (4,'Blog Entries'),(5,'Projects'),(6,'Event Categories'); /*!40000 ALTER TABLE `TopicTrees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeFileNodes` -- DROP TABLE IF EXISTS `TreeFileNodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeFileNodes` ( `treeNodeID` int unsigned NOT NULL AUTO_INCREMENT, `fID` int unsigned DEFAULT '0', PRIMARY KEY (`treeNodeID`), KEY `fID` (`fID`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeFileNodes` -- LOCK TABLES `TreeFileNodes` WRITE; /*!40000 ALTER TABLE `TreeFileNodes` DISABLE KEYS */; INSERT INTO `TreeFileNodes` VALUES (8,1),(9,2),(10,3),(11,4),(12,5),(13,6),(14,7),(15,8),(16,9),(17,10),(18,11),(19,12),(20,13),(21,14),(22,15),(23,16); /*!40000 ALTER TABLE `TreeFileNodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeGroupNodes` -- DROP TABLE IF EXISTS `TreeGroupNodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeGroupNodes` ( `treeNodeID` int unsigned NOT NULL AUTO_INCREMENT, `gID` int unsigned DEFAULT '0', PRIMARY KEY (`treeNodeID`), KEY `gID` (`gID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeGroupNodes` -- LOCK TABLES `TreeGroupNodes` WRITE; /*!40000 ALTER TABLE `TreeGroupNodes` DISABLE KEYS */; INSERT INTO `TreeGroupNodes` VALUES (2,1),(3,2),(4,3); /*!40000 ALTER TABLE `TreeGroupNodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeNodePermissionAssignments` -- DROP TABLE IF EXISTS `TreeNodePermissionAssignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeNodePermissionAssignments` ( `treeNodeID` int unsigned NOT NULL DEFAULT '0', `pkID` int unsigned NOT NULL DEFAULT '0', `paID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`treeNodeID`,`pkID`,`paID`), KEY `pkID` (`pkID`), KEY `paID` (`paID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeNodePermissionAssignments` -- LOCK TABLES `TreeNodePermissionAssignments` WRITE; /*!40000 ALTER TABLE `TreeNodePermissionAssignments` DISABLE KEYS */; INSERT INTO `TreeNodePermissionAssignments` VALUES (7,39,55),(7,40,56),(7,41,57),(7,42,58),(7,43,59),(7,44,60),(7,45,61),(7,46,63),(7,47,62),(7,48,64),(7,66,44),(24,66,45),(33,66,46),(38,66,47),(5,101,37),(6,101,32),(5,102,33),(6,102,36),(5,103,34),(6,103,34),(5,104,35),(6,104,35),(1,105,106),(1,106,107),(1,107,108),(1,108,109),(1,109,110); /*!40000 ALTER TABLE `TreeNodePermissionAssignments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeNodeTypes` -- DROP TABLE IF EXISTS `TreeNodeTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeNodeTypes` ( `treeNodeTypeID` int unsigned NOT NULL AUTO_INCREMENT, `treeNodeTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `pkgID` int unsigned DEFAULT '0', PRIMARY KEY (`treeNodeTypeID`), UNIQUE KEY `treeNodeTypeHandle` (`treeNodeTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeNodeTypes` -- LOCK TABLES `TreeNodeTypes` WRITE; /*!40000 ALTER TABLE `TreeNodeTypes` DISABLE KEYS */; INSERT INTO `TreeNodeTypes` VALUES (1,'group',0),(2,'category',0),(3,'express_entry_category',0),(4,'express_entry_results',0),(5,'topic',0),(6,'file',0),(7,'file_folder',0),(8,'search_preset',0); /*!40000 ALTER TABLE `TreeNodeTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeNodes` -- DROP TABLE IF EXISTS `TreeNodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeNodes` ( `treeNodeID` int unsigned NOT NULL AUTO_INCREMENT, `treeNodeTypeID` int unsigned DEFAULT '0', `treeID` int unsigned DEFAULT '0', `treeNodeParentID` int unsigned DEFAULT '0', `treeNodeDisplayOrder` int unsigned DEFAULT '0', `treeNodeName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `dateModified` datetime DEFAULT NULL, `dateCreated` datetime DEFAULT NULL, `treeNodeOverridePermissions` tinyint(1) DEFAULT '0', `inheritPermissionsFromTreeNodeID` int unsigned DEFAULT '0', PRIMARY KEY (`treeNodeID`), KEY `treeNodeParentID` (`treeNodeParentID`), KEY `treeNodeTypeID` (`treeNodeTypeID`), KEY `treeID` (`treeID`), KEY `inheritPermissionsFromTreeNodeID` (`inheritPermissionsFromTreeNodeID`,`treeNodeID`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeNodes` -- LOCK TABLES `TreeNodes` WRITE; /*!40000 ALTER TABLE `TreeNodes` DISABLE KEYS */; INSERT INTO `TreeNodes` VALUES (1,1,1,0,0,'','2020-05-22 13:42:01','2020-05-22 13:42:01',1,1),(2,1,1,1,0,'','2020-05-22 13:42:01','2020-05-22 13:42:01',0,1),(3,1,1,1,1,'','2020-05-22 13:42:01','2020-05-22 13:42:01',0,1),(4,1,1,1,2,'','2020-05-22 13:42:01','2020-05-22 13:42:01',0,1),(5,3,2,0,0,'','2020-05-22 13:54:04','2020-05-22 13:42:04',1,5),(6,3,2,5,0,'Forms','2020-05-22 13:43:34','2020-05-22 13:42:04',1,6),(7,7,3,0,0,'','2020-05-22 13:43:32','2020-05-22 13:43:30',1,7),(8,6,3,7,0,'','2020-05-22 13:43:30','2020-05-22 13:43:30',0,7),(9,6,3,7,1,'','2020-05-22 13:43:30','2020-05-22 13:43:30',0,7),(10,6,3,7,2,'','2020-05-22 13:43:30','2020-05-22 13:43:30',0,7),(11,6,3,7,3,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(12,6,3,7,4,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(13,6,3,7,5,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(14,6,3,7,6,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(15,6,3,7,7,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(16,6,3,7,8,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(17,6,3,7,9,'','2020-05-22 13:43:31','2020-05-22 13:43:31',0,7),(18,6,3,7,10,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(19,6,3,7,11,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(20,6,3,7,12,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(21,6,3,7,13,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(22,6,3,7,14,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(23,6,3,7,15,'','2020-05-22 13:43:32','2020-05-22 13:43:32',0,7),(24,2,4,0,0,'','2020-05-22 13:43:33','2020-05-22 13:43:33',1,24),(25,2,4,24,0,'Reviews','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(26,5,4,25,0,'Gadgets','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(27,5,4,25,1,'Movies','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(28,5,4,25,2,'Books','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(29,5,4,25,3,'Music','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(30,5,4,24,1,'Projects','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(31,5,4,24,2,'Sports','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(32,5,4,24,3,'Humor','2020-05-22 13:43:33','2020-05-22 13:43:33',0,24),(33,2,5,0,0,'','2020-05-22 13:43:33','2020-05-22 13:43:33',1,33),(34,5,5,33,0,'Crafts','2020-05-22 13:43:33','2020-05-22 13:43:33',0,33),(35,5,5,33,1,'Homework','2020-05-22 13:43:33','2020-05-22 13:43:33',0,33),(36,5,5,33,2,'Supplies','2020-05-22 13:43:33','2020-05-22 13:43:33',0,33),(37,5,5,33,3,'Activities','2020-05-22 13:43:33','2020-05-22 13:43:33',0,33),(38,2,6,0,0,'','2020-05-22 13:43:33','2020-05-22 13:43:33',1,38),(39,5,6,38,0,'Meetings','2020-05-22 13:43:33','2020-05-22 13:43:33',0,38),(40,5,6,38,1,'Activities','2020-05-22 13:43:33','2020-05-22 13:43:33',0,38),(41,5,6,38,2,'Sports','2020-05-22 13:43:33','2020-05-22 13:43:33',0,38),(42,5,6,38,3,'Holidays','2020-05-22 13:43:33','2020-05-22 13:43:33',0,38),(43,4,2,6,0,'Contact','2020-05-22 13:43:34','2020-05-22 13:43:34',0,6),(44,4,2,5,1,'Blog','2020-05-22 13:49:32','2020-05-22 13:49:32',0,5),(45,4,2,5,2,'Campaign','2020-05-22 13:54:04','2020-05-22 13:54:04',0,5); /*!40000 ALTER TABLE `TreeNodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeSearchQueryNodes` -- DROP TABLE IF EXISTS `TreeSearchQueryNodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeSearchQueryNodes` ( `treeNodeID` int unsigned NOT NULL AUTO_INCREMENT, `savedSearchID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`treeNodeID`), KEY `savedSearchID` (`savedSearchID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeSearchQueryNodes` -- LOCK TABLES `TreeSearchQueryNodes` WRITE; /*!40000 ALTER TABLE `TreeSearchQueryNodes` DISABLE KEYS */; /*!40000 ALTER TABLE `TreeSearchQueryNodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `TreeTypes` -- DROP TABLE IF EXISTS `TreeTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `TreeTypes` ( `treeTypeID` int unsigned NOT NULL AUTO_INCREMENT, `treeTypeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `pkgID` int unsigned DEFAULT '0', PRIMARY KEY (`treeTypeID`), UNIQUE KEY `treeTypeHandle` (`treeTypeHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `TreeTypes` -- LOCK TABLES `TreeTypes` WRITE; /*!40000 ALTER TABLE `TreeTypes` DISABLE KEYS */; INSERT INTO `TreeTypes` VALUES (1,'group',0),(2,'express_entry_results',0),(3,'topic',0),(4,'file_manager',0); /*!40000 ALTER TABLE `TreeTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Trees` -- DROP TABLE IF EXISTS `Trees`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Trees` ( `treeID` int unsigned NOT NULL AUTO_INCREMENT, `treeTypeID` int unsigned DEFAULT '0', `treeDateAdded` datetime DEFAULT NULL, `rootTreeNodeID` int unsigned DEFAULT '0', PRIMARY KEY (`treeID`), KEY `treeTypeID` (`treeTypeID`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Trees` -- LOCK TABLES `Trees` WRITE; /*!40000 ALTER TABLE `Trees` DISABLE KEYS */; INSERT INTO `Trees` VALUES (1,1,'2020-05-22 13:42:01',1),(2,2,'2020-05-22 13:42:04',5),(3,4,'2020-05-22 13:43:30',7),(4,3,'2020-05-22 13:43:33',24),(5,3,'2020-05-22 13:43:33',33),(6,3,'2020-05-22 13:43:33',38); /*!40000 ALTER TABLE `Trees` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UsedStringLog` -- DROP TABLE IF EXISTS `UsedStringLog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UsedStringLog` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `usedString` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` int NOT NULL, `date` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UNIQ_4E83837CF5E609AF` (`usedString`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UsedStringLog` -- LOCK TABLES `UsedStringLog` WRITE; /*!40000 ALTER TABLE `UsedStringLog` DISABLE KEYS */; /*!40000 ALTER TABLE `UsedStringLog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserAttributeKeys` -- DROP TABLE IF EXISTS `UserAttributeKeys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserAttributeKeys` ( `uakProfileDisplay` tinyint(1) NOT NULL, `uakProfileEdit` tinyint(1) NOT NULL, `uakProfileEditRequired` tinyint(1) NOT NULL, `uakRegisterEdit` tinyint(1) NOT NULL, `uakRegisterEditRequired` tinyint(1) NOT NULL, `uakMemberListDisplay` tinyint(1) NOT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_28970033B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserAttributeKeys` -- LOCK TABLES `UserAttributeKeys` WRITE; /*!40000 ALTER TABLE `UserAttributeKeys` DISABLE KEYS */; INSERT INTO `UserAttributeKeys` VALUES (0,1,0,1,0,0,14),(0,1,0,1,0,0,15),(0,0,0,0,0,0,18); /*!40000 ALTER TABLE `UserAttributeKeys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserAttributeValues` -- DROP TABLE IF EXISTS `UserAttributeValues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserAttributeValues` ( `uID` int unsigned NOT NULL, `akID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`uID`,`akID`), KEY `IDX_4DB68CA6FD71026C` (`uID`), KEY `<KEY>` (`akID`), KEY `IDX_4DB68CA6A2A82A5D` (`avID`), CONSTRAINT `FK_4DB68CA6A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`), CONSTRAINT `FK_4DB68CA6B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`), CONSTRAINT `FK_4DB68CA6FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserAttributeValues` -- LOCK TABLES `UserAttributeValues` WRITE; /*!40000 ALTER TABLE `UserAttributeValues` DISABLE KEYS */; /*!40000 ALTER TABLE `UserAttributeValues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserDeactivatedNotifications` -- DROP TABLE IF EXISTS `UserDeactivatedNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserDeactivatedNotifications` ( `userID` int unsigned NOT NULL, `actorID` int unsigned DEFAULT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), CONSTRAINT `FK_ED5A1F9FED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserDeactivatedNotifications` -- LOCK TABLES `UserDeactivatedNotifications` WRITE; /*!40000 ALTER TABLE `UserDeactivatedNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `UserDeactivatedNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserGroups` -- DROP TABLE IF EXISTS `UserGroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserGroups` ( `uID` int unsigned NOT NULL DEFAULT '0', `gID` int unsigned NOT NULL DEFAULT '0', `ugEntered` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', PRIMARY KEY (`uID`,`gID`), KEY `uID` (`uID`), KEY `gID` (`gID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserGroups` -- LOCK TABLES `UserGroups` WRITE; /*!40000 ALTER TABLE `UserGroups` DISABLE KEYS */; /*!40000 ALTER TABLE `UserGroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserLoginAttempts` -- DROP TABLE IF EXISTS `UserLoginAttempts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserLoginAttempts` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:guid)', `userId` int unsigned NOT NULL, `utcDate` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserLoginAttempts` -- LOCK TABLES `UserLoginAttempts` WRITE; /*!40000 ALTER TABLE `UserLoginAttempts` DISABLE KEYS */; /*!40000 ALTER TABLE `UserLoginAttempts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPermissionEditPropertyAccessList` -- DROP TABLE IF EXISTS `UserPermissionEditPropertyAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPermissionEditPropertyAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `uName` tinyint(1) DEFAULT '0', `uEmail` tinyint(1) DEFAULT '0', `uPassword` tinyint(1) DEFAULT '0', `uAvatar` tinyint(1) DEFAULT '0', `uTimezone` tinyint(1) DEFAULT '0', `uDefaultLanguage` tinyint(1) DEFAULT '0', `attributePermission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPermissionEditPropertyAccessList` -- LOCK TABLES `UserPermissionEditPropertyAccessList` WRITE; /*!40000 ALTER TABLE `UserPermissionEditPropertyAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPermissionEditPropertyAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPermissionEditPropertyAttributeAccessListCustom` -- DROP TABLE IF EXISTS `UserPermissionEditPropertyAttributeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPermissionEditPropertyAttributeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `akID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`akID`), KEY `peID` (`peID`), KEY `akID` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPermissionEditPropertyAttributeAccessListCustom` -- LOCK TABLES `UserPermissionEditPropertyAttributeAccessListCustom` WRITE; /*!40000 ALTER TABLE `UserPermissionEditPropertyAttributeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPermissionEditPropertyAttributeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPermissionViewAttributeAccessList` -- DROP TABLE IF EXISTS `UserPermissionViewAttributeAccessList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPermissionViewAttributeAccessList` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `permission` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', PRIMARY KEY (`paID`,`peID`), KEY `peID` (`peID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPermissionViewAttributeAccessList` -- LOCK TABLES `UserPermissionViewAttributeAccessList` WRITE; /*!40000 ALTER TABLE `UserPermissionViewAttributeAccessList` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPermissionViewAttributeAccessList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPermissionViewAttributeAccessListCustom` -- DROP TABLE IF EXISTS `UserPermissionViewAttributeAccessListCustom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPermissionViewAttributeAccessListCustom` ( `paID` int unsigned NOT NULL DEFAULT '0', `peID` int unsigned NOT NULL DEFAULT '0', `akID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`paID`,`peID`,`akID`), KEY `peID` (`peID`), KEY `akID` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPermissionViewAttributeAccessListCustom` -- LOCK TABLES `UserPermissionViewAttributeAccessListCustom` WRITE; /*!40000 ALTER TABLE `UserPermissionViewAttributeAccessListCustom` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPermissionViewAttributeAccessListCustom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPointActions` -- DROP TABLE IF EXISTS `UserPointActions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPointActions` ( `upaID` int NOT NULL AUTO_INCREMENT, `upaHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `upaName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `upaDefaultPoints` int NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', `upaHasCustomClass` tinyint(1) NOT NULL DEFAULT '0', `upaIsActive` tinyint(1) NOT NULL DEFAULT '1', `gBadgeID` int NOT NULL DEFAULT '0', PRIMARY KEY (`upaID`), UNIQUE KEY `upaHandle` (`upaHandle`), KEY `pkgID` (`pkgID`), KEY `gBBadgeID` (`gBadgeID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPointActions` -- LOCK TABLES `UserPointActions` WRITE; /*!40000 ALTER TABLE `UserPointActions` DISABLE KEYS */; INSERT INTO `UserPointActions` VALUES (1,'won_badge','Won a Badge',5,0,1,1,0); /*!40000 ALTER TABLE `UserPointActions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPointHistory` -- DROP TABLE IF EXISTS `UserPointHistory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPointHistory` ( `upID` int NOT NULL AUTO_INCREMENT, `upuID` int NOT NULL DEFAULT '0', `upaID` int DEFAULT '0', `upPoints` int DEFAULT '0', `object` longtext COLLATE utf8mb4_unicode_ci, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`upID`), KEY `upuID` (`upuID`), KEY `upaID` (`upaID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPointHistory` -- LOCK TABLES `UserPointHistory` WRITE; /*!40000 ALTER TABLE `UserPointHistory` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPointHistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPrivateMessages` -- DROP TABLE IF EXISTS `UserPrivateMessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPrivateMessages` ( `msgID` int unsigned NOT NULL AUTO_INCREMENT, `uAuthorID` int unsigned NOT NULL DEFAULT '0', `msgDateCreated` datetime NOT NULL, `msgSubject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `msgBody` text COLLATE utf8mb4_unicode_ci, `uToID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`msgID`), KEY `uAuthorID` (`uAuthorID`,`msgDateCreated`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPrivateMessages` -- LOCK TABLES `UserPrivateMessages` WRITE; /*!40000 ALTER TABLE `UserPrivateMessages` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPrivateMessages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserPrivateMessagesTo` -- DROP TABLE IF EXISTS `UserPrivateMessagesTo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserPrivateMessagesTo` ( `msgID` int unsigned NOT NULL DEFAULT '0', `uID` int unsigned NOT NULL DEFAULT '0', `uAuthorID` int unsigned NOT NULL DEFAULT '0', `msgMailboxID` int NOT NULL, `msgIsNew` tinyint(1) NOT NULL DEFAULT '0', `msgIsUnread` tinyint(1) NOT NULL DEFAULT '0', `msgIsReplied` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`msgID`,`uID`,`uAuthorID`,`msgMailboxID`), KEY `uID` (`uID`), KEY `uAuthorID` (`uAuthorID`), KEY `msgFolderID` (`msgMailboxID`), KEY `msgIsNew` (`msgIsNew`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserPrivateMessagesTo` -- LOCK TABLES `UserPrivateMessagesTo` WRITE; /*!40000 ALTER TABLE `UserPrivateMessagesTo` DISABLE KEYS */; /*!40000 ALTER TABLE `UserPrivateMessagesTo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserSearchIndexAttributes` -- DROP TABLE IF EXISTS `UserSearchIndexAttributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserSearchIndexAttributes` ( `uID` int unsigned NOT NULL, `ak_profile_private_messages_enabled` tinyint(1) DEFAULT '0', `ak_profile_private_messages_notification_enabled` tinyint(1) DEFAULT '0', PRIMARY KEY (`uID`), CONSTRAINT `FK_74798B07FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserSearchIndexAttributes` -- LOCK TABLES `UserSearchIndexAttributes` WRITE; /*!40000 ALTER TABLE `UserSearchIndexAttributes` DISABLE KEYS */; /*!40000 ALTER TABLE `UserSearchIndexAttributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserSignupNotifications` -- DROP TABLE IF EXISTS `UserSignupNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserSignupNotifications` ( `usID` int unsigned DEFAULT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), KEY `IDX_7FB1DF5B7B18287E` (`usID`), CONSTRAINT `FK_7FB1DF5B7B18287E` FOREIGN KEY (`usID`) REFERENCES `UserSignups` (`usID`), CONSTRAINT `FK_7FB1DF5BED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserSignupNotifications` -- LOCK TABLES `UserSignupNotifications` WRITE; /*!40000 ALTER TABLE `UserSignupNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `UserSignupNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserSignups` -- DROP TABLE IF EXISTS `UserSignups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserSignups` ( `usID` int unsigned NOT NULL AUTO_INCREMENT, `uID` int unsigned DEFAULT NULL, `createdBy` int unsigned DEFAULT NULL, PRIMARY KEY (`usID`), UNIQUE KEY `UNIQ_FEB5D909FD71026C` (`uID`), KEY `IDX_FEB5D909D3564642` (`createdBy`), CONSTRAINT `FK_FEB5D909D3564642` FOREIGN KEY (`createdBy`) REFERENCES `Users` (`uID`), CONSTRAINT `FK_FEB5D909FD71026C` FOREIGN KEY (`uID`) REFERENCES `Users` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserSignups` -- LOCK TABLES `UserSignups` WRITE; /*!40000 ALTER TABLE `UserSignups` DISABLE KEYS */; /*!40000 ALTER TABLE `UserSignups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserValidationHashes` -- DROP TABLE IF EXISTS `UserValidationHashes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserValidationHashes` ( `uvhID` int unsigned NOT NULL AUTO_INCREMENT, `uID` int unsigned DEFAULT NULL, `uHash` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `type` smallint unsigned NOT NULL DEFAULT '0', `uDateGenerated` int unsigned NOT NULL DEFAULT '0', `uDateRedeemed` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`uvhID`), KEY `uID` (`uID`,`type`), KEY `uHash` (`uHash`,`type`), KEY `uDateGenerated` (`uDateGenerated`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserValidationHashes` -- LOCK TABLES `UserValidationHashes` WRITE; /*!40000 ALTER TABLE `UserValidationHashes` DISABLE KEYS */; /*!40000 ALTER TABLE `UserValidationHashes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UserWorkflowProgress` -- DROP TABLE IF EXISTS `UserWorkflowProgress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `UserWorkflowProgress` ( `uID` int unsigned NOT NULL DEFAULT '0', `wpID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`uID`,`wpID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UserWorkflowProgress` -- LOCK TABLES `UserWorkflowProgress` WRITE; /*!40000 ALTER TABLE `UserWorkflowProgress` DISABLE KEYS */; /*!40000 ALTER TABLE `UserWorkflowProgress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Users` -- DROP TABLE IF EXISTS `Users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Users` ( `uID` int unsigned NOT NULL AUTO_INCREMENT, `uName` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `uEmail` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL, `uPassword` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `uIsActive` tinyint(1) NOT NULL, `uIsFullRecord` tinyint(1) NOT NULL, `uIsValidated` tinyint(1) NOT NULL DEFAULT '-1', `uDateAdded` datetime NOT NULL, `uLastPasswordChange` datetime NOT NULL, `uHasAvatar` tinyint(1) NOT NULL, `uLastOnline` int unsigned NOT NULL DEFAULT '0', `uLastLogin` int unsigned NOT NULL DEFAULT '0', `uPreviousLogin` int unsigned DEFAULT '0', `uNumLogins` int unsigned NOT NULL DEFAULT '0', `uLastAuthTypeID` int unsigned NOT NULL DEFAULT '0', `uLastIP` longtext COLLATE utf8mb4_unicode_ci, `uTimezone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uDefaultLanguage` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uIsPasswordReset` tinyint(1) NOT NULL, PRIMARY KEY (`uID`), UNIQUE KEY `UNIQ_D5428AED28459686` (`uName`), KEY `uEmail` (`uEmail`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Users` -- LOCK TABLES `Users` WRITE; /*!40000 ALTER TABLE `Users` DISABLE KEYS */; INSERT INTO `Users` VALUES (1,'admin','<EMAIL>','$2a$12$hNGRpu8S6WULevLWr0uru.XIrq.8SV1s0WZOHRo7OiMCimrO252V6',1,1,1,'2020-05-22 13:42:01','2020-05-22 13:42:01',0,1593334902,1593334745,1590380758,14,1,'7f000001',NULL,NULL,0); /*!40000 ALTER TABLE `Users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowProgress` -- DROP TABLE IF EXISTS `WorkflowProgress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowProgress` ( `wpID` int unsigned NOT NULL AUTO_INCREMENT, `wpCategoryID` int unsigned DEFAULT NULL, `wfID` int unsigned NOT NULL DEFAULT '0', `wpApproved` tinyint(1) NOT NULL DEFAULT '0', `wpDateAdded` datetime DEFAULT NULL, `wpDateLastAction` datetime DEFAULT NULL, `wpCurrentStatus` int NOT NULL DEFAULT '0', `wrID` int NOT NULL DEFAULT '0', `wpIsCompleted` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`wpID`), KEY `wpCategoryID` (`wpCategoryID`), KEY `wfID` (`wfID`), KEY `wrID` (`wrID`,`wpID`,`wpIsCompleted`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowProgress` -- LOCK TABLES `WorkflowProgress` WRITE; /*!40000 ALTER TABLE `WorkflowProgress` DISABLE KEYS */; /*!40000 ALTER TABLE `WorkflowProgress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowProgressCategories` -- DROP TABLE IF EXISTS `WorkflowProgressCategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowProgressCategories` ( `wpCategoryID` int unsigned NOT NULL AUTO_INCREMENT, `wpCategoryHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned DEFAULT NULL, PRIMARY KEY (`wpCategoryID`), UNIQUE KEY `wpCategoryHandle` (`wpCategoryHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowProgressCategories` -- LOCK TABLES `WorkflowProgressCategories` WRITE; /*!40000 ALTER TABLE `WorkflowProgressCategories` DISABLE KEYS */; INSERT INTO `WorkflowProgressCategories` VALUES (1,'page',NULL),(2,'file',NULL),(3,'user',NULL),(4,'calendar_event',NULL); /*!40000 ALTER TABLE `WorkflowProgressCategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowProgressHistory` -- DROP TABLE IF EXISTS `WorkflowProgressHistory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowProgressHistory` ( `wphID` int unsigned NOT NULL AUTO_INCREMENT, `wpID` int unsigned NOT NULL DEFAULT '0', `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `object` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`wphID`), KEY `wpID` (`wpID`,`timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowProgressHistory` -- LOCK TABLES `WorkflowProgressHistory` WRITE; /*!40000 ALTER TABLE `WorkflowProgressHistory` DISABLE KEYS */; INSERT INTO `WorkflowProgressHistory` VALUES (1,1,'2020-05-22 05:32:24','O:49:\"Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\":11:{s:14:\"\0*\0wrStatusNum\";i:30;s:62:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0isScheduled\";b:0;s:64:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0cvPublishDate\";N;s:67:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0cvPublishEndDate\";N;s:12:\"\0*\0currentWP\";N;s:6:\"\0*\0uID\";s:1:\"1\";s:7:\"\0*\0wrID\";s:1:\"1\";s:5:\"error\";s:0:\"\";s:4:\"pkID\";i:14;s:3:\"cID\";i:190;s:4:\"cvID\";s:1:\"2\";}'); /*!40000 ALTER TABLE `WorkflowProgressHistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowProgressNotifications` -- DROP TABLE IF EXISTS `WorkflowProgressNotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowProgressNotifications` ( `wpID` int unsigned NOT NULL, `nID` int unsigned NOT NULL, PRIMARY KEY (`nID`), CONSTRAINT `FK_EC39CA81ED024EFD` FOREIGN KEY (`nID`) REFERENCES `Notifications` (`nID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowProgressNotifications` -- LOCK TABLES `WorkflowProgressNotifications` WRITE; /*!40000 ALTER TABLE `WorkflowProgressNotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `WorkflowProgressNotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowRequestObjects` -- DROP TABLE IF EXISTS `WorkflowRequestObjects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowRequestObjects` ( `wrID` int unsigned NOT NULL AUTO_INCREMENT, `wrObject` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`wrID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowRequestObjects` -- LOCK TABLES `WorkflowRequestObjects` WRITE; /*!40000 ALTER TABLE `WorkflowRequestObjects` DISABLE KEYS */; INSERT INTO `WorkflowRequestObjects` VALUES (1,'O:49:\"Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\":11:{s:14:\"\0*\0wrStatusNum\";i:30;s:62:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0isScheduled\";b:0;s:64:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0cvPublishDate\";N;s:67:\"\0Concrete\\Core\\Workflow\\Request\\ApprovePageRequest\0cvPublishEndDate\";N;s:12:\"\0*\0currentWP\";N;s:6:\"\0*\0uID\";s:1:\"1\";s:7:\"\0*\0wrID\";s:1:\"1\";s:5:\"error\";s:0:\"\";s:4:\"pkID\";i:14;s:3:\"cID\";i:190;s:4:\"cvID\";s:1:\"2\";}'); /*!40000 ALTER TABLE `WorkflowRequestObjects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `WorkflowTypes` -- DROP TABLE IF EXISTS `WorkflowTypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `WorkflowTypes` ( `wftID` int unsigned NOT NULL AUTO_INCREMENT, `wftHandle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `wftName` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`wftID`), UNIQUE KEY `wftHandle` (`wftHandle`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `WorkflowTypes` -- LOCK TABLES `WorkflowTypes` WRITE; /*!40000 ALTER TABLE `WorkflowTypes` DISABLE KEYS */; INSERT INTO `WorkflowTypes` VALUES (1,'basic','Basic Workflow',0); /*!40000 ALTER TABLE `WorkflowTypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Workflows` -- DROP TABLE IF EXISTS `Workflows`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `Workflows` ( `wfID` int unsigned NOT NULL AUTO_INCREMENT, `wfName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wftID` int unsigned NOT NULL DEFAULT '0', `pkgID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`wfID`), UNIQUE KEY `wfName` (`wfName`), KEY `wftID` (`wftID`,`wfID`), KEY `pkgID` (`pkgID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Workflows` -- LOCK TABLES `Workflows` WRITE; /*!40000 ALTER TABLE `Workflows` DISABLE KEYS */; /*!40000 ALTER TABLE `Workflows` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atAddress` -- DROP TABLE IF EXISTS `atAddress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atAddress` ( `address1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state_province` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postal_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_DA949740A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atAddress` -- LOCK TABLES `atAddress` WRITE; /*!40000 ALTER TABLE `atAddress` DISABLE KEYS */; /*!40000 ALTER TABLE `atAddress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atAddressSettings` -- DROP TABLE IF EXISTS `atAddressSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atAddressSettings` ( `akDefaultCountry` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `akHasCustomCountries` tinyint(1) NOT NULL, `customCountries` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '(DC2Type:json_array)', `akGeolocateCountry` tinyint(1) NOT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_5A737B61B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atAddressSettings` -- LOCK TABLES `atAddressSettings` WRITE; /*!40000 ALTER TABLE `atAddressSettings` DISABLE KEYS */; /*!40000 ALTER TABLE `atAddressSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atBoolean` -- DROP TABLE IF EXISTS `atBoolean`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atBoolean` ( `value` tinyint(1) NOT NULL, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_5D5F70A9A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atBoolean` -- LOCK TABLES `atBoolean` WRITE; /*!40000 ALTER TABLE `atBoolean` DISABLE KEYS */; INSERT INTO `atBoolean` VALUES (1,9),(1,16),(1,18),(1,24),(1,25),(1,31),(1,32),(1,33),(1,34),(1,35),(1,36),(1,37),(1,38),(1,42),(1,43),(1,44),(1,45),(1,48),(1,49),(1,56),(1,67),(1,70),(1,71),(1,73),(1,74),(1,75),(1,76),(1,77),(1,78),(1,79),(1,80),(1,81),(1,82),(1,92),(0,104),(1,129),(1,139),(1,140),(1,142),(0,143),(1,149),(1,150),(1,183),(1,184),(1,185),(1,196),(1,202),(1,218),(0,223),(1,233),(0,235),(1,236),(0,241),(0,248); /*!40000 ALTER TABLE `atBoolean` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atBooleanSettings` -- DROP TABLE IF EXISTS `atBooleanSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atBooleanSettings` ( `akCheckedByDefault` tinyint(1) NOT NULL, `checkboxLabel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_78025F47B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atBooleanSettings` -- LOCK TABLES `atBooleanSettings` WRITE; /*!40000 ALTER TABLE `atBooleanSettings` DISABLE KEYS */; INSERT INTO `atBooleanSettings` VALUES (0,NULL,5),(0,'Exclude Page from Navigation',7),(0,'Exclude Page from Page List Blocks',8),(0,'Feature this Page',11),(0,NULL,12),(0,NULL,13),(1,NULL,14),(1,NULL,15),(1,NULL,22); /*!40000 ALTER TABLE `atBooleanSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atDateTime` -- DROP TABLE IF EXISTS `atDateTime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atDateTime` ( `value` datetime DEFAULT NULL, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_DF75412AA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atDateTime` -- LOCK TABLES `atDateTime` WRITE; /*!40000 ALTER TABLE `atDateTime` DISABLE KEYS */; /*!40000 ALTER TABLE `atDateTime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atDateTimeSettings` -- DROP TABLE IF EXISTS `atDateTimeSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atDateTimeSettings` ( `akUseNowIfEmpty` tinyint(1) NOT NULL DEFAULT '0', `akDateDisplayMode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `akTextCustomFormat` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Custom format for text inputs', `akTimeResolution` int unsigned NOT NULL DEFAULT '60' COMMENT 'Time resolution (in seconds)', `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_C6B3B63AB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atDateTimeSettings` -- LOCK TABLES `atDateTimeSettings` WRITE; /*!40000 ALTER TABLE `atDateTimeSettings` DISABLE KEYS */; INSERT INTO `atDateTimeSettings` VALUES (1,'date_time','',60,36),(1,'date_time','',60,40); /*!40000 ALTER TABLE `atDateTimeSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atDefault` -- DROP TABLE IF EXISTS `atDefault`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atDefault` ( `value` longtext COLLATE utf8mb4_unicode_ci, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_3484F81EA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atDefault` -- LOCK TABLES `atDefault` WRITE; /*!40000 ALTER TABLE `atDefault` DISABLE KEYS */; INSERT INTO `atDefault` VALUES ('fa fa-th-large',1),('pages, add page, delete page, copy, move, alias',2),('pages, add page, delete page, copy, move, alias',3),('pages, add page, delete page, copy, move, alias, bulk',4),('find page, search page, search, find, pages, sitemap',5),('add file, delete file, copy, move, alias, resize, crop, rename, images, title, attribute',6),('file, file attributes, title, attribute, description, rename',7),('files, category, categories',8),('new file set',10),('users, groups, people, find, delete user, remove user, change password, password',11),('find, search, people, delete user, remove user, change password, password',12),('user, group, people, permissions, expire, badges',13),('user attributes, user data, gather data, registration data',14),('new user, create',15),('new user group, new group, group, create',17),('group set',19),('community, points, karma',20),('action, community actions',21),('forms, log, error, email, mysql, exception, survey',22),('forms, questions, response, data',23),('questions, quiz, response',26),('forms, log, error, email, mysql, exception, survey, history',27),('changes, csv, report',28),('new theme, theme, active theme, change theme, template, css',29),('page types',30),('page attributes, custom',39),('single, page, custom, application',40),('atom, rss, feed, syndication',41),('icon-bullhorn',46),('stacks, global areas, reusable content, scrapbook, copy, paste, paste block, copy block, site name, logo',47),('edit stacks, view stacks, all stacks',50),('block, refresh, custom',51),('add-on, addon, add on, package, app, ecommerce, discussions, forums, themes, templates, blocks',52),('add-on, addon, ecommerce, install, discussions, forums, themes, templates, blocks',53),('update, upgrade',54),('concrete5.org, my account, marketplace',55),('buy theme, new theme, marketplace, template',57),('buy addon, buy add on, buy add-on, purchase addon, purchase add on, purchase add-on, find addon, new addon, marketplace',58),('dashboard, configuration',59),('website name, title',60),('accessibility, easy mode',61),('sharing, facebook, twitter',62),('logo, favicon, iphone, icon, bookmark',63),('tinymce, content block, fonts, editor, content, overlay',64),('translate, translation, internationalization, multilingual',65),('languages, update, gettext, translation, translate',66),('timezone, profile, locale',68),('site attributes',69),('checkin, check-in, check, force',72),('multilingual, localization, internationalization, i18n',83),('vanity, pretty url, redirection, hostname, canonical, seo, pageview, view',84),('bulk, seo, change keywords, engine, optimization, search',85),('traffic, statistics, google analytics, quant, pageviews, hits',86),('pretty, slug',87),('configure search, site search, search option',88),('security, files, media, extension, manager, upload',89),('file options, file manager, upload, modify',90),('images, picture, responsive, retina',91),('thumbnail, format, png, jpg, jpeg, quality, compression, gd, imagick, imagemagick, transparency',93),('uploading, upload, images, image, resizing, manager, exif, rotation, rotate, quality, compression, png, jpg, jpeg',94),('security, alternate storage, hide files',95),('files, export, csv, bom, encoding',96),('cache option, change cache, override, turn on cache, turn off cache, no cache, page cache, caching',97),('cache option, turn off cache, no cache, page cache, caching',98),('index search, reindex search, build sitemap, sitemap.xml, clear old versions, page versions, remove old',99),('queries, database, mysql',100),('editors, hide site, offline, private, public, access',101),('security, actions, administrator, admin, package, marketplace, search',102),('security, lock ip, lock out, block ip, address, restrict, access',103),('security, registration',105),('antispam, block spam, security',106),('lock site, under construction, hide, hidden',107),('trusted, proxy, proxies, ip, header, cloudflare',108),('signup, new user, community, public registration, public, registration',109),('profile, login, redirect, specific, dashboard, administrators',110),('member profile, member page, community, forums, social, avatar',111),('auth, authentication, types, oauth, facebook, login, registration',112),('global, password, reset, change password, force, sign out',113),('login, logout, user, agent, ip, change, security, session, invalidation, invalid',114),('password, requirements, code, key, login, registration, security, nist',115),('smtp, mail settings',116),('email server, mail settings, mail configuration, external, internal',117),('test smtp, test mail',118),('email server, mail settings, mail configuration, private message, message system, import, email, message',119),('mail settings, mail configuration, email, sender',120),('conversations',121),('conversations',122),('conversations ratings, ratings, community, community points',123),('conversations bad words, banned words, banned, bad words, bad, words, list',124),('attribute configuration',125),('attributes, types',126),('attributes, sets',127),('topics, tags, taxonomy',128),('overrides, system info, debug, support, help',130),('errors, exceptions, develop, support, help',131),('email, logging, logs, smtp, pop, errors, mysql, log',132),('network, proxy server',133),('database, entities, doctrine, orm',134),('database, character set, charset, collation, utf8',135),('geolocation, ip, address, country, nation, place, locate',136),('upgrade, new version, update',137),('API, programming, public, app',138),('fa fa-th',144),('fa fa-trash-o',145),('fa fa-briefcase',146),('fa fa-edit',147),('Test Client',188),('Test Client',193),('Test Client 2',199),('Test Client 2',205),('Test Client 2',210),('Test Client 2',215),('',219),('',220),('',221),('',222),('',230),('',231),('',232),('',234),('',237),('',238),('',239),('',240),('\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla massa lacus, vehicula eu interdum convallis, laoreet id lectus. Nunc turpis elit, aliquam sit amet aliquam tincidunt, dapibus vel tellus. ',243),('',244),('',245),('',246),('',247),('\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla massa lacus, vehicula eu interdum convallis, laoreet id lectus. Nunc turpis elit, aliquam sit amet aliquam tincidunt, dapibus vel tellus. ',250); /*!40000 ALTER TABLE `atDefault` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atEmptySettings` -- DROP TABLE IF EXISTS `atEmptySettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atEmptySettings` ( `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_ED1BF189B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atEmptySettings` -- LOCK TABLES `atEmptySettings` WRITE; /*!40000 ALTER TABLE `atEmptySettings` DISABLE KEYS */; INSERT INTO `atEmptySettings` VALUES (4),(16),(17),(18),(19); /*!40000 ALTER TABLE `atEmptySettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atExpress` -- DROP TABLE IF EXISTS `atExpress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atExpress` ( `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_CFAF40F1A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atExpress` -- LOCK TABLES `atExpress` WRITE; /*!40000 ALTER TABLE `atExpress` DISABLE KEYS */; /*!40000 ALTER TABLE `atExpress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atExpressSelectedEntries` -- DROP TABLE IF EXISTS `atExpressSelectedEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atExpressSelectedEntries` ( `avID` int unsigned NOT NULL, `exEntryID` int NOT NULL, PRIMARY KEY (`avID`,`exEntryID`), KEY `IDX_C9D404BBA2A82A5D` (`avID`), KEY `IDX_C9D404BB6DCB6296` (`exEntryID`), CONSTRAINT `FK_C9D404BB6DCB6296` FOREIGN KEY (`exEntryID`) REFERENCES `ExpressEntityEntries` (`exEntryID`), CONSTRAINT `FK_C9D404BBA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `atExpress` (`avID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atExpressSelectedEntries` -- LOCK TABLES `atExpressSelectedEntries` WRITE; /*!40000 ALTER TABLE `atExpressSelectedEntries` DISABLE KEYS */; /*!40000 ALTER TABLE `atExpressSelectedEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atExpressSettings` -- DROP TABLE IF EXISTS `atExpressSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atExpressSettings` ( `exEntityID` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), KEY `IDX_E8F67F0FCE2D7284` (`exEntityID`), CONSTRAINT `FK_E8F67F0FB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`), CONSTRAINT `FK_E8F67F0FCE2D7284` FOREIGN KEY (`exEntityID`) REFERENCES `ExpressEntities` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atExpressSettings` -- LOCK TABLES `atExpressSettings` WRITE; /*!40000 ALTER TABLE `atExpressSettings` DISABLE KEYS */; /*!40000 ALTER TABLE `atExpressSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atFile` -- DROP TABLE IF EXISTS `atFile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atFile` ( `fID` int unsigned DEFAULT NULL, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), KEY `IDX_73D17D61E3111F45` (`fID`), CONSTRAINT `FK_73D17D61A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE, CONSTRAINT `FK_73D17D61E3111F45` FOREIGN KEY (`fID`) REFERENCES `Files` (`fID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atFile` -- LOCK TABLES `atFile` WRITE; /*!40000 ALTER TABLE `atFile` DISABLE KEYS */; INSERT INTO `atFile` VALUES (2,208),(4,213),(5,191),(7,203),(8,197),(10,186),(11,226),(15,228),(16,224); /*!40000 ALTER TABLE `atFile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atFileSettings` -- DROP TABLE IF EXISTS `atFileSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atFileSettings` ( `akFileManagerMode` int NOT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_EADD86C8B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atFileSettings` -- LOCK TABLES `atFileSettings` WRITE; /*!40000 ALTER TABLE `atFileSettings` DISABLE KEYS */; INSERT INTO `atFileSettings` VALUES (0,23); /*!40000 ALTER TABLE `atFileSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atNumber` -- DROP TABLE IF EXISTS `atNumber`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atNumber` ( `value` decimal(14,4) DEFAULT NULL, `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_41BA30B5A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atNumber` -- LOCK TABLES `atNumber` WRITE; /*!40000 ALTER TABLE `atNumber` DISABLE KEYS */; INSERT INTO `atNumber` VALUES (2.0000,141),(1.0000,148),(250.0000,151),(252.0000,152),(1600.0000,153),(1067.0000,154),(1100.0000,155),(263.0000,156),(1600.0000,157),(1067.0000,158),(1499.0000,159),(1067.0000,160),(1100.0000,161),(368.0000,162),(1600.0000,163),(1067.0000,164),(1600.0000,165),(953.0000,166),(592.0000,167),(397.0000,168),(1600.0000,169),(1067.0000,170),(200.0000,171),(200.0000,172),(460.0000,173),(460.0000,174),(1100.0000,175),(368.0000,176),(200.0000,177),(200.0000,178),(1600.0000,179),(1066.0000,180),(500.0000,181),(500.0000,182); /*!40000 ALTER TABLE `atNumber` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelect` -- DROP TABLE IF EXISTS `atSelect`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelect` ( `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_9CD8C521A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelect` -- LOCK TABLES `atSelect` WRITE; /*!40000 ALTER TABLE `atSelect` DISABLE KEYS */; INSERT INTO `atSelect` VALUES (189),(190),(194),(195),(200),(201),(206),(207),(211),(212),(216),(217),(242),(249); /*!40000 ALTER TABLE `atSelect` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectOptionLists` -- DROP TABLE IF EXISTS `atSelectOptionLists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectOptionLists` ( `avSelectOptionListID` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`avSelectOptionListID`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectOptionLists` -- LOCK TABLES `atSelectOptionLists` WRITE; /*!40000 ALTER TABLE `atSelectOptionLists` DISABLE KEYS */; INSERT INTO `atSelectOptionLists` VALUES (1),(2),(3),(4),(5); /*!40000 ALTER TABLE `atSelectOptionLists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectOptions` -- DROP TABLE IF EXISTS `atSelectOptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectOptions` ( `avSelectOptionID` int unsigned NOT NULL AUTO_INCREMENT, `isEndUserAdded` tinyint(1) NOT NULL, `isDeleted` tinyint(1) NOT NULL DEFAULT '0', `displayOrder` int NOT NULL, `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `avSelectOptionListID` int unsigned DEFAULT NULL, PRIMARY KEY (`avSelectOptionID`), KEY `IDX_797414B0CB59257C` (`avSelectOptionListID`), CONSTRAINT `FK_797414B0CB59257C` FOREIGN KEY (`avSelectOptionListID`) REFERENCES `atSelectOptionLists` (`avSelectOptionListID`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectOptions` -- LOCK TABLES `atSelectOptions` WRITE; /*!40000 ALTER TABLE `atSelectOptions` DISABLE KEYS */; INSERT INTO `atSelectOptions` VALUES (1,1,0,0,'Finance',2),(2,1,0,1,'Marketing and Sales',2),(3,1,0,2,'Human Resources',2),(4,1,0,3,'Technical and Operations',2),(5,1,0,4,'Management',2),(6,1,0,0,'Architecture',3),(7,1,0,1,'Multimedia',3),(8,1,0,2,'Design',3),(9,1,0,3,'Production',3),(10,1,0,4,'Development',3),(11,1,0,5,'Quality Assurance',3),(12,1,0,0,'HTML',4),(13,1,0,1,'JavaScript',4),(14,1,0,2,'PHP',4),(15,1,0,3,'Database',4),(16,1,0,4,'CSS',4),(17,1,0,5,'Ruby',4),(18,1,0,6,'Java',4),(19,1,0,7,'iOS/Android/App Development',4),(20,1,0,8,'Photoshop',4),(21,1,0,9,'Python',4),(22,1,0,10,'Writing',4),(23,1,0,0,'I love your work',5),(24,1,0,1,'Great website',5),(25,1,0,2,'Check out this cool thing I found',5),(26,1,0,3,'Other',5); /*!40000 ALTER TABLE `atSelectOptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectOptionsSelected` -- DROP TABLE IF EXISTS `atSelectOptionsSelected`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectOptionsSelected` ( `avID` int unsigned NOT NULL, `avSelectOptionID` int unsigned NOT NULL, PRIMARY KEY (`avID`,`avSelectOptionID`), KEY `IDX_40C97EC3A2A82A5D` (`avID`), KEY `IDX_40C97EC3E584C274` (`avSelectOptionID`), CONSTRAINT `FK_40C97EC3A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `atSelect` (`avID`), CONSTRAINT `FK_40C97EC3E584C274` FOREIGN KEY (`avSelectOptionID`) REFERENCES `atSelectOptions` (`avSelectOptionID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectOptionsSelected` -- LOCK TABLES `atSelectOptionsSelected` WRITE; /*!40000 ALTER TABLE `atSelectOptionsSelected` DISABLE KEYS */; INSERT INTO `atSelectOptionsSelected` VALUES (189,6),(189,8),(189,9),(190,12),(190,13),(190,14),(194,6),(195,14),(200,7),(200,9),(200,10),(201,12),(201,13),(201,14),(201,16),(206,8),(207,20),(211,8),(212,20),(216,8),(217,20),(242,4),(249,2); /*!40000 ALTER TABLE `atSelectOptionsSelected` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectSettings` -- DROP TABLE IF EXISTS `atSelectSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectSettings` ( `akSelectAllowMultipleValues` tinyint(1) NOT NULL, `akSelectAllowOtherValues` tinyint(1) NOT NULL, `akHideNoneOption` tinyint(1) NOT NULL, `akSelectOptionDisplayOrder` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `akDisplayMultipleValuesOnSelect` tinyint(1) NOT NULL, `avSelectOptionListID` int unsigned DEFAULT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), UNIQUE KEY `UNIQ_5D514424CB59257C` (`avSelectOptionListID`), CONSTRAINT `FK_5D514424B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`), CONSTRAINT `FK_5D514424CB59257C` FOREIGN KEY (`avSelectOptionListID`) REFERENCES `atSelectOptionLists` (`avSelectOptionListID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectSettings` -- LOCK TABLES `atSelectSettings` WRITE; /*!40000 ALTER TABLE `atSelectSettings` DISABLE KEYS */; INSERT INTO `atSelectSettings` VALUES (1,1,0,'display_asc',0,1,10),(0,0,0,'display_asc',0,2,20),(1,0,0,'display_asc',0,3,28),(1,0,0,'display_asc',0,4,29),(0,0,0,'display_asc',1,5,33); /*!40000 ALTER TABLE `atSelectSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectedSocialLinks` -- DROP TABLE IF EXISTS `atSelectedSocialLinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectedSocialLinks` ( `avsID` int unsigned NOT NULL AUTO_INCREMENT, `service` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `serviceInfo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`avsID`), KEY `IDX_10743709A2A82A5D` (`avID`), CONSTRAINT `FK_10743709A2A82A5D` FOREIGN KEY (`avID`) REFERENCES `atSocialLinks` (`avID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectedSocialLinks` -- LOCK TABLES `atSelectedSocialLinks` WRITE; /*!40000 ALTER TABLE `atSelectedSocialLinks` DISABLE KEYS */; /*!40000 ALTER TABLE `atSelectedSocialLinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSelectedTopics` -- DROP TABLE IF EXISTS `atSelectedTopics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSelectedTopics` ( `avTreeTopicNodeID` int unsigned NOT NULL AUTO_INCREMENT, `treeNodeID` int unsigned NOT NULL, `avID` int unsigned DEFAULT NULL, PRIMARY KEY (`avTreeTopicNodeID`), KEY `IDX_E42A7D5BA2A82A5D` (`avID`), CONSTRAINT `FK_E42A7D5BA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `atTopic` (`avID`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSelectedTopics` -- LOCK TABLES `atSelectedTopics` WRITE; /*!40000 ALTER TABLE `atSelectedTopics` DISABLE KEYS */; INSERT INTO `atSelectedTopics` VALUES (1,35,187),(2,37,192),(3,35,198),(4,35,204),(5,35,209),(6,35,214),(7,30,225),(8,32,227),(9,30,229); /*!40000 ALTER TABLE `atSelectedTopics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atSocialLinks` -- DROP TABLE IF EXISTS `atSocialLinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atSocialLinks` ( `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_1431EC8AA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atSocialLinks` -- LOCK TABLES `atSocialLinks` WRITE; /*!40000 ALTER TABLE `atSocialLinks` DISABLE KEYS */; /*!40000 ALTER TABLE `atSocialLinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atTextSettings` -- DROP TABLE IF EXISTS `atTextSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atTextSettings` ( `akTextPlaceholder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_951A10CCB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atTextSettings` -- LOCK TABLES `atTextSettings` WRITE; /*!40000 ALTER TABLE `atTextSettings` DISABLE KEYS */; INSERT INTO `atTextSettings` VALUES ('',1),('',27),('',30),('',31),('',32),('Title For your Blog',35),('',37),('Campaign Title',39); /*!40000 ALTER TABLE `atTextSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atTextareaSettings` -- DROP TABLE IF EXISTS `atTextareaSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atTextareaSettings` ( `akTextareaDisplayMode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_A6EA10D6B6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atTextareaSettings` -- LOCK TABLES `atTextareaSettings` WRITE; /*!40000 ALTER TABLE `atTextareaSettings` DISABLE KEYS */; INSERT INTO `atTextareaSettings` VALUES ('',2),('',3),('',6),('',9),('text',21),('text',34),('text',38),('text',41); /*!40000 ALTER TABLE `atTextareaSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atTopic` -- DROP TABLE IF EXISTS `atTopic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atTopic` ( `avID` int unsigned NOT NULL, PRIMARY KEY (`avID`), CONSTRAINT `FK_BABDD1FAA2A82A5D` FOREIGN KEY (`avID`) REFERENCES `AttributeValues` (`avID`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atTopic` -- LOCK TABLES `atTopic` WRITE; /*!40000 ALTER TABLE `atTopic` DISABLE KEYS */; INSERT INTO `atTopic` VALUES (187),(192),(198),(204),(209),(214),(225),(227),(229); /*!40000 ALTER TABLE `atTopic` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `atTopicSettings` -- DROP TABLE IF EXISTS `atTopicSettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `atTopicSettings` ( `akTopicParentNodeID` int NOT NULL, `akTopicTreeID` int NOT NULL, `akTopicAllowMultipleValues` tinyint(1) NOT NULL DEFAULT '1', `akID` int unsigned NOT NULL, PRIMARY KEY (`akID`), CONSTRAINT `FK_830FD2FEB6561A7E` FOREIGN KEY (`akID`) REFERENCES `AttributeKeys` (`akID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `atTopicSettings` -- LOCK TABLES `atTopicSettings` WRITE; /*!40000 ALTER TABLE `atTopicSettings` DISABLE KEYS */; INSERT INTO `atTopicSettings` VALUES (24,4,0,24),(33,5,0,25),(38,6,0,26); /*!40000 ALTER TABLE `atTopicSettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `authTypeConcreteCookieMap` -- DROP TABLE IF EXISTS `authTypeConcreteCookieMap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `authTypeConcreteCookieMap` ( `ID` int unsigned NOT NULL AUTO_INCREMENT, `token` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uID` int DEFAULT NULL, `validThrough` int DEFAULT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `token` (`token`), KEY `uID` (`uID`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `authTypeConcreteCookieMap` -- LOCK TABLES `authTypeConcreteCookieMap` WRITE; /*!40000 ALTER TABLE `authTypeConcreteCookieMap` DISABLE KEYS */; INSERT INTO `authTypeConcreteCookieMap` VALUES (2,'$2a$12$XCTJKTO85jf7y4YJN7NQS.GbKOG6iERmSUtWqyKPuoYOLmTDDBbPa',1,1591590358); /*!40000 ALTER TABLE `authTypeConcreteCookieMap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCalendar` -- DROP TABLE IF EXISTS `btCalendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCalendar` ( `bID` int unsigned NOT NULL, `caID` int unsigned NOT NULL DEFAULT '0', `calendarAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filterByTopicAttributeKeyID` int unsigned NOT NULL DEFAULT '0', `filterByTopicID` int unsigned NOT NULL DEFAULT '0', `viewTypes` longtext COLLATE utf8mb4_unicode_ci, `viewTypesOrder` longtext COLLATE utf8mb4_unicode_ci, `defaultView` longtext COLLATE utf8mb4_unicode_ci, `navLinks` int DEFAULT NULL, `eventLimit` int DEFAULT NULL, `lightboxProperties` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCalendar` -- LOCK TABLES `btCalendar` WRITE; /*!40000 ALTER TABLE `btCalendar` DISABLE KEYS */; /*!40000 ALTER TABLE `btCalendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCalendarEvent` -- DROP TABLE IF EXISTS `btCalendarEvent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCalendarEvent` ( `bID` int unsigned NOT NULL, `mode` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'S' COMMENT 'S = Specify, P = Page, R = Request', `calendarEventAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `calendarID` int unsigned NOT NULL DEFAULT '0', `eventID` int unsigned NOT NULL DEFAULT '0', `displayEventAttributes` longtext COLLATE utf8mb4_unicode_ci, `enableLinkToPage` tinyint(1) DEFAULT '0', `displayEventName` tinyint(1) DEFAULT '0', `displayEventDate` tinyint(1) DEFAULT '0', `displayEventDescription` tinyint(1) DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCalendarEvent` -- LOCK TABLES `btCalendarEvent` WRITE; /*!40000 ALTER TABLE `btCalendarEvent` DISABLE KEYS */; /*!40000 ALTER TABLE `btCalendarEvent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btContentFile` -- DROP TABLE IF EXISTS `btContentFile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btContentFile` ( `bID` int unsigned NOT NULL, `fID` int unsigned DEFAULT NULL, `fileLinkText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filePassword` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `forceDownload` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`bID`), KEY `fID` (`fID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btContentFile` -- LOCK TABLES `btContentFile` WRITE; /*!40000 ALTER TABLE `btContentFile` DISABLE KEYS */; /*!40000 ALTER TABLE `btContentFile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btContentImage` -- DROP TABLE IF EXISTS `btContentImage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btContentImage` ( `bID` int unsigned NOT NULL, `fID` int unsigned DEFAULT '0', `fOnstateID` int unsigned DEFAULT '0', `cropImage` int unsigned DEFAULT '0', `maxWidth` int unsigned DEFAULT '0', `maxHeight` int unsigned DEFAULT '0', `externalLink` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `internalLinkCID` int unsigned DEFAULT '0', `fileLinkID` int unsigned DEFAULT '0', `openLinkInNewWindow` tinyint(1) NOT NULL DEFAULT '0', `altText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`), KEY `fID` (`fID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btContentImage` -- LOCK TABLES `btContentImage` WRITE; /*!40000 ALTER TABLE `btContentImage` DISABLE KEYS */; INSERT INTO `btContentImage` VALUES (123,1,0,0,0,0,'',0,0,0,'Blank Image','Blank Image'),(138,11,0,0,0,0,'',0,0,0,'',NULL),(145,9,0,0,0,0,'',0,0,0,'',NULL),(152,9,0,0,0,0,'',0,0,0,'',NULL),(156,1,0,0,0,0,'',0,0,0,'',NULL),(159,3,0,0,0,0,'',0,0,0,'',NULL); /*!40000 ALTER TABLE `btContentImage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btContentLocal` -- DROP TABLE IF EXISTS `btContentLocal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btContentLocal` ( `bID` int unsigned NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btContentLocal` -- LOCK TABLES `btContentLocal` WRITE; /*!40000 ALTER TABLE `btContentLocal` DISABLE KEYS */; INSERT INTO `btContentLocal` VALUES (32,'\n <p><a href=\"{CCM:CID_209}\" style=\"background-color: rgb(255, 255, 255);\"><i class=\"fa fa-arrow-left\"></i> Back to Careers</a></p>'),(33,'<h3>Department</h3>'),(35,'<h3>Location</h3>'),(37,'<h3>Job Information</h3>'),(39,'\n <br/><br/>'),(56,'\n <p>1234 SE StreetView</p><p>Suite 301</p><p>Portland, OR 98101</p><p><a href=\"{CCM:CID_195}\">View on Google Maps</a></p>'),(57,'\n <p>© 2018 Elemental Theme</p>'),(58,'\n \n <p><a href=\"{CCM:CID_210}\">FAQ / Help</a></p>\n <p><a href=\"{CCM:CID_190}\">Case Studies</a></p>\n <p><a href=\"{CCM:CID_193}\">Blog</a></p>\n <p><a href=\"{CCM:CID_1}\">Another Link</a></p>\n '),(59,'\n <a href=\"{CCM:CID_1}\" id=\"footer-site-title\">Elemental</a>'),(63,'\n <a href=\"{CCM:CID_1}\" id=\"header-site-title\">Elemental</a>'),(70,'\n <p style=\"text-align: center\"><span class=\"title-caps-bold\">Presenting your Business has never been so easy</span></p><p style=\"text-align: center;\">Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing.</p><p style=\"text-align: center;\">Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. </p>'),(74,'<h5>Latest Blog Post</h5>'),(75,'<h5>Now Open For Business</h5>'),(79,'\n <p> <span class=\"title-thin\">We specialize in making your concepts a reality.</span> </p> <p> Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet. Mauris sed scelerisque nisl. Ut auctor ipsum tellus, vel viverra massa elementum sit amet. </p> <p> Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida.<br> </p> <br/> <p> <a href=\"{CCM:CID_195}\"><span class=\"btn btn-success\">Contact Us Today</span></a> </p>'),(80,'\n <p style=\"text-align: center\"><span class=\"title-caps\">Customizable footer area with accent class.</span></p>'),(89,'\n <h3>Awesome Features</h3><p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. </p><h3>Guide Books</h3><p>Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. </p><h3>Admin Accounts</h3><p>Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. </p>'),(90,'\n <h3>Support</h3><p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. </p><h3>Additional Options</h3><p>Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. </p><p>Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p>'),(91,'\n <p style=\"text-align: center\"><span class=\"title-caps\">What Clients Are Saying About Us</span></p>'),(98,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(100,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(102,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(104,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(106,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(108,'\n <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nibh a laoreet cursus. Phasellus malesuada vulputate bibendum. Ut vitae justo nisi. Sed consectetur vestibulum tortor, in bibendum diam lacinia vitae. Nullam volutpat risus quis orci consectetur adipiscing. In commodo vulputate arcu sit amet ornare. Vivamus ut iaculis velit.</blockquote><p>Pellentesque euismod lacus sed accumsan luctus. Suspendisse urna felis, lacinia vel tempor id, ultricies rutrum nisl. Nunc ultrices nulla et bibendum molestie. Phasellus porttitor sit amet libero vel fermentum. Sed sapien risus, eleifend vel hendrerit eu, porta vel tellus. Duis faucibus odio et magna varius, quis accumsan tellus vestibulum. Nam nunc nulla, convallis at elementum pharetra, adipiscing quis enim. Donec feugiat porttitor dolor, nec porttitor mi auctor eget. Fusce iaculis varius diam non dictum. Fusce elementum a nunc vel tincidunt. Morbi nec est elementum, vehicula odio nec, lobortis lacus. Nulla ultricies vitae nunc ut lacinia. Proin mattis felis sem, eu consectetur arcu varius et. Duis at lectus eu lorem elementum aliquet nec in elit. Vestibulum non metus ac risus adipiscing pellentesque sed sit amet lorem. Donec viverra, metus in varius pulvinar, augue nunc accumsan eros, a pulvinar est elit vitae nulla.</p><p>Duis non leo in enim laoreet pretium. Nullam vitae neque nec libero pharetra tempor at faucibus lectus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed imperdiet convallis arcu. Nam sollicitudin sollicitudin lacus non dictum. Aliquam erat volutpat. Nulla sapien quam, consequat non dui ut, eleifend sodales orci. Praesent quis lorem accumsan, volutpat lectus a, sollicitudin erat. Donec faucibus mi in sapien volutpat, ac auctor lorem mollis. Proin eget turpis non lacus bibendum porta non ac justo. Aliquam aliquam viverra lorem ac rutrum. In et sapien sit amet diam vestibulum cursus ut tristique tellus.</p><p>Ut in purus mi. Etiam ac aliquet ipsum. Pellentesque faucibus diam dui. Morbi a semper orci. Ut nec malesuada urna. Vestibulum aliquet ante ac lacus dictum, sit amet pulvinar leo laoreet. Maecenas ut est commodo, commodo quam nec, dignissim est. Quisque rutrum molestie nunc, sed mollis nulla volutpat et. Donec dignissim ornare augue eu aliquam. Aliquam in tincidunt velit. In at fermentum mauris, ut accumsan nisl. Interdum et malesuada fames ac ante ipsum primis in faucibus.</p><p>Integer ac nulla at nisi sodales ullamcorper id in justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam pharetra elit odio, ac mattis turpis consequat ac. Pellentesque tincidunt sed enim nec auctor. Quisque varius, felis a hendrerit faucibus, nunc lorem varius nibh, vel dignissim velit dolor ut elit. Mauris ut vulputate neque. Donec at est vitae massa egestas fringilla. Praesent a tristique nibh. Nunc blandit dui risus, quis rhoncus nisi consectetur vel.</p>'),(124,'\n <p class=\"title-thin\">Get in Touch</p><p>Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet.<br><br></p><p><a class=\"btn btn-success\" href=\"{CCM:CID_195}\">Contact Us</a></p>'),(126,'\n <blockquote>Fusce volutpat sodales mauris quis dapibus. Maecenas convallis, libero eu ultrices interdum, leo mauris commodo diam, sed cursus sapien ligula nec leo.</blockquote><p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p><p><a href=\"{CCM:FID_DL_16}\" data-concrete5-link-lightbox=\"image\"><concrete-picture fid=\"16\" /></a></p><h2>Heading 2</h2><p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p><h3>Heading 3</h3><p>Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor.</p><h3>Heading 3</h3><p>Donec blandit lectus nec neque ullamcorper rhoncus. Sed adipiscing tempus sem eu molestie. Aenean laoreet pretium ante vitae ultrices. Aenean eu gravida magna, vel aliquet magna. In auctor convallis gravida. Phasellus est erat, adipiscing nec lobortis quis, eleifend at sem. Curabitur fringilla viverra dolor, in rutrum ipsum rutrum sit amet. Vestibulum feugiat porttitor ipsum vel condimentum. Suspendisse at tempus libero. Sed eu tempor enim. Etiam convallis eleifend rutrum. Donec porta diam quis tellus feugiat dignissim. Cras posuere, massa eget laoreet laoreet, urna libero lobortis dolor, sed consequat elit urna eget massa. Donec aliquet pellentesque consectetur.</p>'),(128,'\n <p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p><p><span class=\"title-thin\">CMS To the Rescue!</span></p><p>Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p><p><a href=\"http://www.concrete5.org\">Learn more at concrete5.org </a><br></p>'),(130,'\n <p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p><p><span class=\"title-caps-bold\">Heading 3</span></p><p>Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor.</p><p><a href=\"{CCM:FID_DL_15}\" data-concrete5-link-lightbox=\"image\"><concrete-picture fid=\"15\" /></a></p><p><span class=\"image-caption\">Look at my beautiful image. Don\'t you to look more?</span></p><p>Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor.</p>'),(135,'\n <h5>Headquarters</h5><p>1234 SE Street View<br>Suite 301<br>Portland, OR 98101</p><h5>HOURS</h5><p> <strong>M-F</strong>: 10 AM - 7 PM<br><strong>Sat</strong>: Noon - Midnight<br><strong>Sun</strong>: Closed</p>'),(139,'\n <h2>Choosing Us</h2><p>Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Quisque dignissim neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend. In interdum gravida ligula, at venenatis odio fermentum at. Donec dapibus enim lectus, quis venenatis tellus volutpat in. Nullam in velit tortor.</p>'),(140,'<h5>We would love to hear from you!</h5>'),(142,'<p>This is my empty content block on my blank page.</p>'),(146,'\n <blockquote>Fusce volutpat sodales mauris quis dapibus. Maecenas convallis, libero eu ultrices interdum.</blockquote>'),(147,'\n <p>Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. </p><p><a href=\"http://www.yahoo.com\">Quisque dignissim</a> neque a ipsum sodales, mattis aliquam ante dictum. Vestibulum elementum pellentesque tortor ac congue. Mauris vel nibh id metus tincidunt eleifend.</p>'),(150,'\n <h1>Heading 1</h1><h2>Heading 2</h2><h3>Heading 3</h3><h4>Heading 4</h4><h5>Heading 5</h5><h6>Heading 6</h6>'),(151,'\n <p>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.<br><br><br></p>'),(153,'\n <p><br><br>Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus. Sed consequat eleifend metus, vitae malesuada eros elementum sed. Fusce risus felis, viverra et dignissim at, lobortis non est. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sit amet consectetur lacus. Vestibulum neque lectus, egestas non cursus vitae, aliquam at magna. Etiam aliquam, justo et varius eleifend, dui lectus egestas nunc, vel malesuada nisl purus nec metus. In gravida turpis a pharetra commodo. Donec non turpis vulputate, faucibus metus a, consectetur nunc. Morbi tortor nisi, hendrerit sed laoreet eget, fermentum et justo. Suspendisse potenti.</p>'),(157,'\n <p class=\"title-thin\">Get in Touch</p><p>Sed cursus facilisis dignissim. Aliquam rhoncus enim et pellentesque varius. Nulla sodales nibh lorem, sit amet imperdiet arcu commodo sit amet.<br><br></p><p><a class=\"btn btn-success\" href=\"{CCM:CID_195}\">Contact Us</a></p>'),(160,'<div style=\"height: 50px\"></div>'),(170,'\n <div class=\"title-thin\">Open Positions</div>'),(172,'\n <p>Quisque accumsan leo sit amet neque pretium consectetur. Sed blandit nulla at justo volutpat rhoncus. Sed risus orci, luctus sit amet fringilla faucibus, congue nec dui. Phasellus mattis lobortis magna sed dapibus. Donec sagittis nunc sed accumsan eleifend. Ut porttitor sapien eu nisl volutpat, vitae interdum est mollis. Sed laoreet sit amet elit in eleifend. Sed a tincidunt velit, nec posuere urna. In eget metus non est varius viverra. Quisque accumsan odio sem, in consequat nunc lobortis ac.</p><p>Cras dignissim nulla ut euismod adipiscing. Mauris non eros sem. Cras at lacinia nulla. Maecenas nec magna arcu. Aenean iaculis, augue sed pretium semper, odio tellus volutpat risus, quis consectetur nibh mauris ut odio. Integer convallis, augue a accumsan condimentum, sem nisl congue lorem, consectetur lacinia neque tortor eu neque. Aenean convallis arcu vitae enim dignissim vestibulum. Phasellus tincidunt dolor id enim gravida ullamcorper. Nullam ut lorem auctor, congue quam non, auctor arcu. Morbi ac aliquam ipsum, at aliquet ligula.</p><p>Cras adipiscing tellus non nulla suscipit congue. Pellentesque id neque euismod, elementum augue vel, volutpat turpis. Pellentesque sit amet tortor non lorem hendrerit pellentesque ac in nisi. Sed aliquet tincidunt arcu, eu lacinia lorem fringilla id. Integer ut ornare orci. Donec scelerisque vulputate est a condimentum. Morbi tellus sapien, vehicula vel ipsum non, luctus ullamcorper mi. Phasellus felis tortor, egestas quis felis sit amet, malesuada auctor nibh. Sed mollis mi sit amet tristique scelerisque. Cras elementum mauris urna, ullamcorper consectetur orci vehicula ut.</p>'),(173,'\n <p>Quisque accumsan leo sit amet neque pretium consectetur. Sed blandit nulla at justo volutpat rhoncus. Sed risus orci, luctus sit amet fringilla faucibus, congue nec dui. Phasellus mattis lobortis magna sed dapibus. Donec sagittis nunc sed accumsan eleifend. Ut porttitor sapien eu nisl volutpat, vitae interdum est mollis. Sed laoreet sit amet elit in eleifend. Sed a tincidunt velit, nec posuere urna. In eget metus non est varius viverra. Quisque accumsan odio sem, in consequat nunc lobortis ac.</p><p>Cras dignissim nulla ut euismod adipiscing. Mauris non eros sem. Cras at lacinia nulla. Maecenas nec magna arcu. Aenean iaculis, augue sed pretium semper, odio tellus volutpat risus, quis consectetur nibh mauris ut odio. Integer convallis, augue a accumsan condimentum, sem nisl congue lorem, consectetur lacinia neque tortor eu neque. Aenean convallis arcu vitae enim dignissim vestibulum. Phasellus tincidunt dolor id enim gravida ullamcorper. Nullam ut lorem auctor, congue quam non, auctor arcu. Morbi ac aliquam ipsum, at aliquet ligula.</p><p>Cras adipiscing tellus non nulla suscipit congue. Pellentesque id neque euismod, elementum augue vel, volutpat turpis. Pellentesque sit amet tortor non lorem hendrerit pellentesque ac in nisi. Sed aliquet tincidunt arcu, eu lacinia lorem fringilla id. Integer ut ornare orci. Donec scelerisque vulputate est a condimentum. Morbi tellus sapien, vehicula vel ipsum non, luctus ullamcorper mi. Phasellus felis tortor, egestas quis felis sit amet, malesuada auctor nibh. Sed mollis mi sit amet tristique scelerisque. Cras elementum mauris urna, ullamcorper consectetur orci vehicula ut.</p>'),(176,'\n <p>© 2018 Elemental Theme</p>'),(177,'\n <p>© 2018 Elemental Theme</p>'),(178,'\n <p>© 2018 Elemental Theme</p>'); /*!40000 ALTER TABLE `btContentLocal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCoreAreaLayout` -- DROP TABLE IF EXISTS `btCoreAreaLayout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCoreAreaLayout` ( `bID` int unsigned NOT NULL DEFAULT '0', `arLayoutID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`bID`), KEY `arLayoutID` (`arLayoutID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCoreAreaLayout` -- LOCK TABLES `btCoreAreaLayout` WRITE; /*!40000 ALTER TABLE `btCoreAreaLayout` DISABLE KEYS */; INSERT INTO `btCoreAreaLayout` VALUES (2,1),(6,2),(9,3),(14,4),(16,5),(18,6),(20,7),(49,8),(65,9),(73,10),(76,11),(82,12),(88,13),(92,14),(110,15),(114,16),(122,17),(133,18),(137,19),(144,20),(149,21),(155,22),(161,23),(169,24),(179,25); /*!40000 ALTER TABLE `btCoreAreaLayout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCoreConversation` -- DROP TABLE IF EXISTS `btCoreConversation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCoreConversation` ( `bID` int unsigned NOT NULL, `cnvID` int DEFAULT NULL, `enablePosting` int DEFAULT '1', `paginate` tinyint(1) NOT NULL DEFAULT '1', `itemsPerPage` smallint unsigned NOT NULL DEFAULT '50', `displayMode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'threaded', `orderBy` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'date_desc', `enableOrdering` tinyint(1) NOT NULL DEFAULT '1', `enableCommentRating` tinyint(1) NOT NULL DEFAULT '1', `enableTopCommentReviews` tinyint(1) NOT NULL DEFAULT '0', `displaySocialLinks` tinyint(1) NOT NULL DEFAULT '1', `reviewAggregateAttributeKey` int DEFAULT NULL, `displayPostingForm` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'top', `addMessageLabel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `dateFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'default', `customDateFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`), KEY `cnvID` (`cnvID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCoreConversation` -- LOCK TABLES `btCoreConversation` WRITE; /*!40000 ALTER TABLE `btCoreConversation` DISABLE KEYS */; INSERT INTO `btCoreConversation` VALUES (29,1,1,1,50,'threaded','date_asc',0,1,0,0,NULL,'top','Add Message','default',''),(125,2,1,1,50,'threaded','date_asc',0,1,0,0,NULL,'top','Add Message','default',''),(127,3,1,1,50,'threaded','date_asc',0,1,0,0,NULL,'top','Add Message','default',''),(129,4,1,1,50,'threaded','date_asc',0,1,0,0,NULL,'top','Add Message','default',''); /*!40000 ALTER TABLE `btCoreConversation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCorePageTypeComposerControlOutput` -- DROP TABLE IF EXISTS `btCorePageTypeComposerControlOutput`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCorePageTypeComposerControlOutput` ( `bID` int unsigned NOT NULL, `ptComposerOutputControlID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`bID`), KEY `ptComposerOutputControlID` (`ptComposerOutputControlID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCorePageTypeComposerControlOutput` -- LOCK TABLES `btCorePageTypeComposerControlOutput` WRITE; /*!40000 ALTER TABLE `btCorePageTypeComposerControlOutput` DISABLE KEYS */; INSERT INTO `btCorePageTypeComposerControlOutput` VALUES (23,1),(38,2),(41,3),(45,4); /*!40000 ALTER TABLE `btCorePageTypeComposerControlOutput` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCoreScrapbookDisplay` -- DROP TABLE IF EXISTS `btCoreScrapbookDisplay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCoreScrapbookDisplay` ( `bID` int unsigned NOT NULL, `bOriginalID` int unsigned NOT NULL, PRIMARY KEY (`bID`), KEY `bOriginalID` (`bOriginalID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCoreScrapbookDisplay` -- LOCK TABLES `btCoreScrapbookDisplay` WRITE; /*!40000 ALTER TABLE `btCoreScrapbookDisplay` DISABLE KEYS */; /*!40000 ALTER TABLE `btCoreScrapbookDisplay` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btCoreStackDisplay` -- DROP TABLE IF EXISTS `btCoreStackDisplay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btCoreStackDisplay` ( `bID` int unsigned NOT NULL, `stID` int unsigned NOT NULL, PRIMARY KEY (`bID`), KEY `stID` (`stID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btCoreStackDisplay` -- LOCK TABLES `btCoreStackDisplay` WRITE; /*!40000 ALTER TABLE `btCoreStackDisplay` DISABLE KEYS */; /*!40000 ALTER TABLE `btCoreStackDisplay` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btDateNavigation` -- DROP TABLE IF EXISTS `btDateNavigation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btDateNavigation` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `filterByParent` tinyint(1) DEFAULT '0', `redirectToResults` tinyint(1) DEFAULT '0', `cParentID` int unsigned NOT NULL DEFAULT '0', `cTargetID` int unsigned NOT NULL DEFAULT '0' COMMENT 'this field is where the links will direct you', `ptID` smallint unsigned DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btDateNavigation` -- LOCK TABLES `btDateNavigation` WRITE; /*!40000 ALTER TABLE `btDateNavigation` DISABLE KEYS */; INSERT INTO `btDateNavigation` VALUES (52,'Archives',1,0,193,0,6); /*!40000 ALTER TABLE `btDateNavigation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btDesktopDraftList` -- DROP TABLE IF EXISTS `btDesktopDraftList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btDesktopDraftList` ( `bID` int unsigned NOT NULL, `draftsPerPage` int DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btDesktopDraftList` -- LOCK TABLES `btDesktopDraftList` WRITE; /*!40000 ALTER TABLE `btDesktopDraftList` DISABLE KEYS */; INSERT INTO `btDesktopDraftList` VALUES (17,10),(21,10); /*!40000 ALTER TABLE `btDesktopDraftList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btDesktopNewsflowLatest` -- DROP TABLE IF EXISTS `btDesktopNewsflowLatest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btDesktopNewsflowLatest` ( `bID` int unsigned NOT NULL, `slot` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btDesktopNewsflowLatest` -- LOCK TABLES `btDesktopNewsflowLatest` WRITE; /*!40000 ALTER TABLE `btDesktopNewsflowLatest` DISABLE KEYS */; INSERT INTO `btDesktopNewsflowLatest` VALUES (10,'A'),(11,'B'),(12,'C'); /*!40000 ALTER TABLE `btDesktopNewsflowLatest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btDesktopSiteActivity` -- DROP TABLE IF EXISTS `btDesktopSiteActivity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btDesktopSiteActivity` ( `bID` int unsigned NOT NULL, `types` longtext COLLATE utf8mb4_unicode_ci COMMENT '(DC2Type:json_array)', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btDesktopSiteActivity` -- LOCK TABLES `btDesktopSiteActivity` WRITE; /*!40000 ALTER TABLE `btDesktopSiteActivity` DISABLE KEYS */; INSERT INTO `btDesktopSiteActivity` VALUES (5,'[\"form_submissions\",\"survey_results\",\"signups\",\"conversation_messages\",\"workflow\"]'); /*!40000 ALTER TABLE `btDesktopSiteActivity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btDocumentLibrary` -- DROP TABLE IF EXISTS `btDocumentLibrary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btDocumentLibrary` ( `bID` int unsigned NOT NULL, `setIds` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `folderID` int NOT NULL DEFAULT '0', `setMode` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `onlyCurrentUser` int DEFAULT '0', `tags` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `viewProperties` longtext COLLATE utf8mb4_unicode_ci, `expandableProperties` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `searchProperties` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `orderBy` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'title', `displayLimit` int DEFAULT '20', `displayOrderDesc` tinyint(1) NOT NULL DEFAULT '0', `addFilesToSetID` int unsigned NOT NULL DEFAULT '0', `maxThumbWidth` int DEFAULT '100', `maxThumbHeight` int DEFAULT '150', `enableSearch` int DEFAULT '0', `heightMode` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT 'auto', `downloadFileMethod` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT 'force', `fixedHeightSize` int DEFAULT '0', `headerBackgroundColor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `headerBackgroundColorActiveSort` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `headerTextColor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `allowFileUploading` int DEFAULT '0', `allowInPageFileManagement` int DEFAULT '0', `tableName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `tableDescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `tableStriped` tinyint(1) DEFAULT '0', `rowBackgroundColorAlternate` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btDocumentLibrary` -- LOCK TABLES `btDocumentLibrary` WRITE; /*!40000 ALTER TABLE `btDocumentLibrary` DISABLE KEYS */; /*!40000 ALTER TABLE `btDocumentLibrary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btEventList` -- DROP TABLE IF EXISTS `btEventList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btEventList` ( `bID` int unsigned NOT NULL, `caID` text COLLATE utf8mb4_unicode_ci NOT NULL, `calendarAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `totalToRetrieve` smallint unsigned NOT NULL DEFAULT '10', `totalPerPage` smallint unsigned NOT NULL DEFAULT '10', `filterByTopicAttributeKeyID` int unsigned NOT NULL DEFAULT '0', `filterByTopicID` int unsigned NOT NULL DEFAULT '0', `filterByPageTopicAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filterByFeatured` tinyint(1) NOT NULL DEFAULT '0', `eventListTitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `linkToPage` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btEventList` -- LOCK TABLES `btEventList` WRITE; /*!40000 ALTER TABLE `btEventList` DISABLE KEYS */; /*!40000 ALTER TABLE `btEventList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btExpressEntryDetail` -- DROP TABLE IF EXISTS `btExpressEntryDetail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btExpressEntryDetail` ( `bID` int unsigned NOT NULL, `exEntityID` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `exSpecificEntryID` int unsigned DEFAULT NULL, `exEntryAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exFormID` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `entryMode` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT 'S', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btExpressEntryDetail` -- LOCK TABLES `btExpressEntryDetail` WRITE; /*!40000 ALTER TABLE `btExpressEntryDetail` DISABLE KEYS */; /*!40000 ALTER TABLE `btExpressEntryDetail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btExpressEntryList` -- DROP TABLE IF EXISTS `btExpressEntryList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btExpressEntryList` ( `bID` int unsigned NOT NULL, `exEntityID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `detailPage` int unsigned NOT NULL DEFAULT '0', `linkedProperties` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `searchProperties` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `searchAssociations` longtext COLLATE utf8mb4_unicode_ci, `columns` longtext COLLATE utf8mb4_unicode_ci, `filterFields` longtext COLLATE utf8mb4_unicode_ci, `displayLimit` int DEFAULT '20', `enableSearch` int DEFAULT '0', `enableKeywordSearch` int DEFAULT '0', `headerBackgroundColor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `headerBackgroundColorActiveSort` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `headerTextColor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', `tableName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `tableDescription` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `tableStriped` tinyint(1) DEFAULT '0', `rowBackgroundColorAlternate` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btExpressEntryList` -- LOCK TABLES `btExpressEntryList` WRITE; /*!40000 ALTER TABLE `btExpressEntryList` DISABLE KEYS */; /*!40000 ALTER TABLE `btExpressEntryList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btExpressForm` -- DROP TABLE IF EXISTS `btExpressForm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btExpressForm` ( `bID` int unsigned NOT NULL, `exFormID` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '(DC2Type:guid)', `submitLabel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'Submit', `thankyouMsg` text COLLATE utf8mb4_unicode_ci, `notifyMeOnSubmission` tinyint(1) NOT NULL DEFAULT '0', `recipientEmail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayCaptcha` int DEFAULT '1', `storeFormSubmission` tinyint(1) DEFAULT '1', `redirectCID` int DEFAULT '0', `replyToEmailControlID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `addFilesToSet` int DEFAULT '0', `addFilesToFolder` int DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btExpressForm` -- LOCK TABLES `btExpressForm` WRITE; /*!40000 ALTER TABLE `btExpressForm` DISABLE KEYS */; INSERT INTO `btExpressForm` VALUES (141,'881b6bde-220f-4482-b8f9-ace40b5d169b','Submit','Thanks!',0,'',0,1,0,'02181ae2-634d-11e6-a245-62e65b165d8e\n ',0,0); /*!40000 ALTER TABLE `btExpressForm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btExternalForm` -- DROP TABLE IF EXISTS `btExternalForm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btExternalForm` ( `bID` int unsigned NOT NULL, `filename` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btExternalForm` -- LOCK TABLES `btExternalForm` WRITE; /*!40000 ALTER TABLE `btExternalForm` DISABLE KEYS */; /*!40000 ALTER TABLE `btExternalForm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFaq` -- DROP TABLE IF EXISTS `btFaq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFaq` ( `bID` int unsigned NOT NULL, `blockTitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFaq` -- LOCK TABLES `btFaq` WRITE; /*!40000 ALTER TABLE `btFaq` DISABLE KEYS */; INSERT INTO `btFaq` VALUES (175,''); /*!40000 ALTER TABLE `btFaq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFaqEntries` -- DROP TABLE IF EXISTS `btFaqEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFaqEntries` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `bID` int unsigned DEFAULT NULL, `linkTitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sortOrder` int DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `bID` (`bID`,`sortOrder`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFaqEntries` -- LOCK TABLES `btFaqEntries` WRITE; /*!40000 ALTER TABLE `btFaqEntries` DISABLE KEYS */; INSERT INTO `btFaqEntries` VALUES (4,175,'What are page versions?','What are page versions?',0,'\n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. '),(5,175,'How do I add more people as editors in my website?','How do I add more people as editors in my website?',1,'\n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna. '); /*!40000 ALTER TABLE `btFaqEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFeature` -- DROP TABLE IF EXISTS `btFeature`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFeature` ( `bID` int unsigned NOT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paragraph` text COLLATE utf8mb4_unicode_ci, `externalLink` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `internalLinkCID` int unsigned DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFeature` -- LOCK TABLES `btFeature` WRITE; /*!40000 ALTER TABLE `btFeature` DISABLE KEYS */; INSERT INTO `btFeature` VALUES (66,'pencil','Easy to Edit','\n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna.','',0),(67,'eye','Pixel Perfect','\n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna.','',0),(68,'youtube-play','Media Rich','\n Pellentesque ultricies ligula vel neque dictum, eu mollis tortor adipiscing. Etiam congue, est vel tincidunt vestibulum, nunc nunc porta nulla, at adipiscing neque tellus quis urna.','',0),(83,'star','Quality','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet.','',0),(84,'tint','Design','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet.','',0),(85,'cog','Development','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet.','',0),(86,'lock','Security','\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sodales non leo id aliquet.','',0),(162,'home','Welcome Home','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0),(163,'user','Great Workers','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0),(164,'flag','Amazing Location','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0),(165,'clock-o','Paid Time Off','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0),(166,'star','No Meetings','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0),(167,'beer','Free Drinks','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan.','',0); /*!40000 ALTER TABLE `btFeature` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btForm` -- DROP TABLE IF EXISTS `btForm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btForm` ( `bID` int unsigned NOT NULL, `questionSetId` int unsigned DEFAULT '0', `surveyName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `submitText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'Submit', `thankyouMsg` text COLLATE utf8mb4_unicode_ci, `notifyMeOnSubmission` tinyint(1) NOT NULL DEFAULT '0', `recipientEmail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayCaptcha` int DEFAULT '1', `redirectCID` int DEFAULT '0', `addFilesToSet` int DEFAULT '0', PRIMARY KEY (`bID`), KEY `questionSetIdForeign` (`questionSetId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btForm` -- LOCK TABLES `btForm` WRITE; /*!40000 ALTER TABLE `btForm` DISABLE KEYS */; /*!40000 ALTER TABLE `btForm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFormAnswerSet` -- DROP TABLE IF EXISTS `btFormAnswerSet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFormAnswerSet` ( `asID` int unsigned NOT NULL AUTO_INCREMENT, `questionSetId` int unsigned DEFAULT '0', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `uID` int unsigned DEFAULT '0', PRIMARY KEY (`asID`), KEY `questionSetId` (`questionSetId`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFormAnswerSet` -- LOCK TABLES `btFormAnswerSet` WRITE; /*!40000 ALTER TABLE `btFormAnswerSet` DISABLE KEYS */; /*!40000 ALTER TABLE `btFormAnswerSet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFormAnswers` -- DROP TABLE IF EXISTS `btFormAnswers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFormAnswers` ( `aID` int unsigned NOT NULL AUTO_INCREMENT, `asID` int unsigned DEFAULT '0', `msqID` int unsigned DEFAULT '0', `answer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answerLong` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`aID`), KEY `asID` (`asID`), KEY `msqID` (`msqID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFormAnswers` -- LOCK TABLES `btFormAnswers` WRITE; /*!40000 ALTER TABLE `btFormAnswers` DISABLE KEYS */; /*!40000 ALTER TABLE `btFormAnswers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btFormQuestions` -- DROP TABLE IF EXISTS `btFormQuestions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btFormQuestions` ( `qID` int unsigned NOT NULL AUTO_INCREMENT, `msqID` int unsigned DEFAULT '0', `bID` int unsigned DEFAULT '0', `questionSetId` int unsigned DEFAULT '0', `question` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `inputType` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `options` text COLLATE utf8mb4_unicode_ci, `position` int unsigned DEFAULT '1000', `width` int unsigned DEFAULT '50', `height` int unsigned DEFAULT '3', `defaultDate` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `required` int DEFAULT '0', PRIMARY KEY (`qID`), KEY `questionSetId` (`questionSetId`), KEY `msqID` (`msqID`), KEY `bID` (`bID`,`questionSetId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btFormQuestions` -- LOCK TABLES `btFormQuestions` WRITE; /*!40000 ALTER TABLE `btFormQuestions` DISABLE KEYS */; /*!40000 ALTER TABLE `btFormQuestions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btGoogleMap` -- DROP TABLE IF EXISTS `btGoogleMap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btGoogleMap` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` double DEFAULT NULL, `longitude` double DEFAULT NULL, `zoom` smallint DEFAULT NULL, `width` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT '100%', `height` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT '400px', `scrollwheel` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btGoogleMap` -- LOCK TABLES `btGoogleMap` WRITE; /*!40000 ALTER TABLE `btGoogleMap` DISABLE KEYS */; INSERT INTO `btGoogleMap` VALUES (134,'','1200 NW Naito Pkwy, Portland, OR, United States',45.5313254,-122.6763493,14,'100%','400px',0); /*!40000 ALTER TABLE `btGoogleMap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btImageSlider` -- DROP TABLE IF EXISTS `btImageSlider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btImageSlider` ( `bID` int unsigned NOT NULL, `navigationType` int unsigned DEFAULT '0', `timeout` int unsigned DEFAULT NULL, `speed` int unsigned DEFAULT NULL, `noAnimate` int unsigned DEFAULT NULL, `pause` int unsigned DEFAULT NULL, `maxWidth` int unsigned DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btImageSlider` -- LOCK TABLES `btImageSlider` WRITE; /*!40000 ALTER TABLE `btImageSlider` DISABLE KEYS */; INSERT INTO `btImageSlider` VALUES (64,1,4000,500,0,0,0),(97,0,4000,500,0,0,0),(99,0,4000,500,0,0,0),(101,0,4000,500,0,0,0),(103,0,4000,500,0,0,0),(105,0,4000,500,0,0,0),(107,0,4000,500,0,0,0); /*!40000 ALTER TABLE `btImageSlider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btImageSliderEntries` -- DROP TABLE IF EXISTS `btImageSliderEntries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btImageSliderEntries` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `bID` int unsigned DEFAULT NULL, `cID` int unsigned DEFAULT '0', `fID` int unsigned DEFAULT '0', `linkURL` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `internalLinkCID` int unsigned DEFAULT '0', `title` longtext COLLATE utf8mb4_unicode_ci, `description` longtext COLLATE utf8mb4_unicode_ci, `sortOrder` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btImageSliderEntries` -- LOCK TABLES `btImageSliderEntries` WRITE; /*!40000 ALTER TABLE `btImageSliderEntries` DISABLE KEYS */; INSERT INTO `btImageSliderEntries` VALUES (1,64,0,6,'',0,'Stand Out on the Web','\n <p>Share your business with an impressive, yet minimal presentation. Let your customers understand your web presence through elegance and clarity.</p>',0),(2,64,0,13,'',0,'A Simple Image Slider','\n <p>This image slider can have any content that you want in it.</p>',1),(3,97,0,8,'',0,'','',0),(4,97,0,7,'',0,'','',1),(5,97,0,2,'',0,'','',2),(6,99,0,8,'',0,'','',0),(7,99,0,7,'',0,'','',1),(8,99,0,2,'',0,'','',2),(9,101,0,8,'',0,'','',0),(10,101,0,7,'',0,'','',1),(11,101,0,2,'',0,'','',2),(12,103,0,8,'',0,'','',0),(13,103,0,7,'',0,'','',1),(14,103,0,2,'',0,'','',2),(15,105,0,8,'',0,'','',0),(16,105,0,7,'',0,'','',1),(17,105,0,2,'',0,'','',2),(18,107,0,8,'',0,'','',0),(19,107,0,7,'',0,'','',1),(20,107,0,2,'',0,'','',2); /*!40000 ALTER TABLE `btImageSliderEntries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btNavigation` -- DROP TABLE IF EXISTS `btNavigation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btNavigation` ( `bID` int unsigned NOT NULL, `orderBy` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'alpha_asc', `displayPages` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'top' COMMENT 'was enum(''top'',''current'',''above'',''below'',''custom'')', `displayPagesCID` int unsigned NOT NULL DEFAULT '1', `displayPagesIncludeSelf` tinyint(1) NOT NULL DEFAULT '0', `displaySubPages` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'none' COMMENT 'was enum(''none'',''all'',''relevant'',''relevant_breadcrumb'')', `displaySubPageLevels` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'none' COMMENT 'was enum(''all'',''none'',''enough'',''enough_plus1'',''custom'')', `displaySubPageLevelsNum` smallint unsigned NOT NULL DEFAULT '0', `displayUnavailablePages` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btNavigation` -- LOCK TABLES `btNavigation` WRITE; /*!40000 ALTER TABLE `btNavigation` DISABLE KEYS */; INSERT INTO `btNavigation` VALUES (61,'display_asc','top',0,0,'all','custom',1,0); /*!40000 ALTER TABLE `btNavigation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btNextPrevious` -- DROP TABLE IF EXISTS `btNextPrevious`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btNextPrevious` ( `bID` int unsigned NOT NULL, `nextLabel` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `previousLabel` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parentLabel` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `loopSequence` int DEFAULT '1', `orderBy` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT 'display_asc', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btNextPrevious` -- LOCK TABLES `btNextPrevious` WRITE; /*!40000 ALTER TABLE `btNextPrevious` DISABLE KEYS */; INSERT INTO `btNextPrevious` VALUES (24,'Next Post','Last Post','',0,'chrono_desc'); /*!40000 ALTER TABLE `btNextPrevious` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btPageAttributeDisplay` -- DROP TABLE IF EXISTS `btPageAttributeDisplay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btPageAttributeDisplay` ( `bID` int unsigned NOT NULL, `attributeHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attributeTitleText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayTag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dateFormat` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'div', `thumbnailHeight` int unsigned DEFAULT NULL, `thumbnailWidth` int unsigned DEFAULT NULL, `delimiter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btPageAttributeDisplay` -- LOCK TABLES `btPageAttributeDisplay` WRITE; /*!40000 ALTER TABLE `btPageAttributeDisplay` DISABLE KEYS */; INSERT INTO `btPageAttributeDisplay` VALUES (34,'job_posting_department','','p','m/d/y h:i:a',250,250,NULL),(36,'job_location','','p','m/d/y h:i:a',250,250,NULL),(42,'project_client','Client:','div','m/d/y h:i:a',250,250,NULL),(43,'project_tasks','Task:','div','m/d/y h:i:a',250,250,NULL),(44,'project_skills','Skills:','div','m/d/y h:i:a',250,250,NULL); /*!40000 ALTER TABLE `btPageAttributeDisplay` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btPageList` -- DROP TABLE IF EXISTS `btPageList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btPageList` ( `bID` int unsigned NOT NULL, `num` smallint unsigned NOT NULL, `orderBy` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Was enum, display_asc'',''display_desc'',''chrono_asc'',''chrono_desc'',''alpha_asc'',''alpha_desc'',''score_asc'',''score_desc''', `cParentID` int unsigned NOT NULL DEFAULT '1', `cThis` tinyint(1) NOT NULL DEFAULT '0', `cThisParent` tinyint(1) NOT NULL DEFAULT '0', `useButtonForLink` tinyint(1) NOT NULL DEFAULT '0', `buttonLinkText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pageListTitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filterByRelated` tinyint(1) NOT NULL DEFAULT '0', `filterByCustomTopic` tinyint(1) NOT NULL DEFAULT '0', `filterDateOption` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT 'all' COMMENT '(''all'',''today'',''past'',''future'',''between'')', `filterDateDays` int unsigned NOT NULL DEFAULT '0', `filterDateStart` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filterDateEnd` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `relatedTopicAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customTopicAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customTopicTreeNodeID` int unsigned NOT NULL DEFAULT '0', `includeName` tinyint(1) NOT NULL DEFAULT '1', `includeDescription` tinyint(1) NOT NULL DEFAULT '1', `includeDate` tinyint(1) NOT NULL DEFAULT '0', `includeAllDescendents` tinyint(1) NOT NULL DEFAULT '0', `paginate` tinyint(1) NOT NULL DEFAULT '0', `displayAliases` tinyint(1) NOT NULL DEFAULT '1', `ignorePermissions` tinyint(1) NOT NULL DEFAULT '0', `enableExternalFiltering` tinyint(1) NOT NULL DEFAULT '0', `ptID` smallint unsigned DEFAULT NULL, `pfID` int DEFAULT '0', `truncateSummaries` int DEFAULT '0', `displayFeaturedOnly` tinyint(1) DEFAULT '0', `noResultsMessage` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayThumbnail` tinyint(1) DEFAULT '0', `truncateChars` int DEFAULT '128', PRIMARY KEY (`bID`), KEY `ptID` (`ptID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btPageList` -- LOCK TABLES `btPageList` WRITE; /*!40000 ALTER TABLE `btPageList` DISABLE KEYS */; INSERT INTO `btPageList` VALUES (27,3,'random',193,0,0,0,NULL,'Related Posts',0,0,'',0,NULL,NULL,'','',0,1,0,0,0,0,0,0,0,6,0,0,0,NULL,0,0),(31,0,'chrono_desc',209,0,0,0,NULL,'Open Positions',0,0,'',0,NULL,NULL,'','',0,1,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0),(47,3,'random',0,0,0,0,NULL,'Related Projects',0,0,'',0,NULL,NULL,'','',0,1,0,0,0,0,0,0,0,8,0,0,0,'\n No related projects found.',0,0),(50,10,'chrono_desc',0,0,1,0,'',NULL,0,0,'',0,NULL,NULL,'','',0,1,1,1,1,1,0,0,1,6,1,0,0,'\n No posts to this blog.',0,0),(55,0,'chrono_desc',0,0,0,0,'',NULL,0,0,'',0,NULL,NULL,'','',0,1,0,0,0,1,0,0,1,8,0,0,0,'No projects found.',1,0),(71,3,'chrono_desc',0,0,0,1,'View Project',NULL,0,0,'',0,NULL,NULL,'','',0,1,1,0,0,0,0,0,0,8,0,0,1,'',1,0),(77,1,'chrono_desc',0,0,0,0,'',NULL,0,0,'',0,NULL,NULL,'','',0,0,0,0,0,0,0,0,0,6,0,0,0,'',1,0),(78,1,'chrono_desc',0,0,0,0,'',NULL,0,0,'',0,NULL,NULL,'','',0,1,1,0,0,0,0,0,0,6,0,0,0,'',0,0),(171,0,'chrono_desc',209,1,0,1,'Apply Now',NULL,0,0,'',0,NULL,NULL,'','',0,1,1,0,0,0,0,0,0,7,0,0,0,NULL,0,0); /*!40000 ALTER TABLE `btPageList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btPageTitle` -- DROP TABLE IF EXISTS `btPageTitle`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btPageTitle` ( `bID` int unsigned NOT NULL, `useCustomTitle` int unsigned DEFAULT '0', `useFilterTitle` int unsigned DEFAULT '0', `useFilterTopic` int unsigned DEFAULT '0', `useFilterTag` int unsigned DEFAULT '0', `useFilterDate` int unsigned DEFAULT '0', `topicTextFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tagTextFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dateTextFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `filterDateFormat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `titleText` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `formatting` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btPageTitle` -- LOCK TABLES `btPageTitle` WRITE; /*!40000 ALTER TABLE `btPageTitle` DISABLE KEYS */; INSERT INTO `btPageTitle` VALUES (22,0,0,0,0,0,NULL,NULL,NULL,NULL,'[Page Title]',NULL),(30,0,0,0,0,0,NULL,NULL,NULL,NULL,'[Page Title]',NULL),(40,0,0,0,0,0,NULL,NULL,NULL,NULL,'[Page Title]',NULL),(48,0,0,0,0,0,NULL,NULL,NULL,NULL,'[Page Title]',NULL),(53,0,0,0,0,0,NULL,NULL,NULL,NULL,'[Page Title]',NULL),(81,1,0,0,0,0,NULL,NULL,NULL,NULL,'Our Expertise',NULL),(109,0,0,0,0,0,NULL,NULL,NULL,NULL,'',NULL),(132,0,0,0,0,0,NULL,NULL,NULL,NULL,'',NULL),(143,0,0,0,0,0,NULL,NULL,NULL,NULL,'',NULL),(158,1,0,0,0,0,NULL,NULL,NULL,NULL,'Work with Us',NULL),(174,0,0,0,0,0,NULL,NULL,NULL,NULL,'Frequently Asked Questions',NULL); /*!40000 ALTER TABLE `btPageTitle` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btRssDisplay` -- DROP TABLE IF EXISTS `btRssDisplay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btRssDisplay` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dateFormat` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `itemsToDisplay` int unsigned DEFAULT '5', `showSummary` tinyint(1) NOT NULL DEFAULT '1', `launchInNewWindow` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btRssDisplay` -- LOCK TABLES `btRssDisplay` WRITE; /*!40000 ALTER TABLE `btRssDisplay` DISABLE KEYS */; INSERT INTO `btRssDisplay` VALUES (7,'Tutorials','http://documentation.concrete5.org/rss/tutorials','',1,1,1),(13,'News from concrete5.org','http://www.concrete5.org/rss/blog','',3,1,1); /*!40000 ALTER TABLE `btRssDisplay` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSearch` -- DROP TABLE IF EXISTS `btSearch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSearch` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `buttonText` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `baseSearchPath` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postTo_cID` int unsigned DEFAULT NULL, `resultsURL` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSearch` -- LOCK TABLES `btSearch` WRITE; /*!40000 ALTER TABLE `btSearch` DISABLE KEYS */; INSERT INTO `btSearch` VALUES (62,'','','',194,''),(131,'Search','Search','',NULL,''); /*!40000 ALTER TABLE `btSearch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btShareThisPage` -- DROP TABLE IF EXISTS `btShareThisPage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btShareThisPage` ( `btShareThisPageID` int unsigned NOT NULL AUTO_INCREMENT, `bID` int unsigned DEFAULT '0', `service` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayOrder` int unsigned DEFAULT '0', PRIMARY KEY (`btShareThisPageID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btShareThisPage` -- LOCK TABLES `btShareThisPage` WRITE; /*!40000 ALTER TABLE `btShareThisPage` DISABLE KEYS */; INSERT INTO `btShareThisPage` VALUES (1,25,'facebook',0),(2,25,'twitter',1),(3,25,'linkedin',2),(4,25,'email',3); /*!40000 ALTER TABLE `btShareThisPage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSocialLinks` -- DROP TABLE IF EXISTS `btSocialLinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSocialLinks` ( `btSocialLinkID` int unsigned NOT NULL AUTO_INCREMENT, `bID` int unsigned DEFAULT '0', `slID` int unsigned DEFAULT '0', `displayOrder` int unsigned DEFAULT '0', PRIMARY KEY (`btSocialLinkID`), KEY `bID` (`bID`,`displayOrder`), KEY `slID` (`slID`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSocialLinks` -- LOCK TABLES `btSocialLinks` WRITE; /*!40000 ALTER TABLE `btSocialLinks` DISABLE KEYS */; INSERT INTO `btSocialLinks` VALUES (1,60,3,0),(2,60,2,1),(3,60,1,2); /*!40000 ALTER TABLE `btSocialLinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSurvey` -- DROP TABLE IF EXISTS `btSurvey`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSurvey` ( `bID` int unsigned NOT NULL, `question` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `requiresRegistration` int DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSurvey` -- LOCK TABLES `btSurvey` WRITE; /*!40000 ALTER TABLE `btSurvey` DISABLE KEYS */; /*!40000 ALTER TABLE `btSurvey` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSurveyOptions` -- DROP TABLE IF EXISTS `btSurveyOptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSurveyOptions` ( `optionID` int unsigned NOT NULL AUTO_INCREMENT, `bID` int DEFAULT NULL, `optionName` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `displayOrder` int DEFAULT '0', PRIMARY KEY (`optionID`), KEY `bID` (`bID`,`displayOrder`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSurveyOptions` -- LOCK TABLES `btSurveyOptions` WRITE; /*!40000 ALTER TABLE `btSurveyOptions` DISABLE KEYS */; /*!40000 ALTER TABLE `btSurveyOptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSurveyResults` -- DROP TABLE IF EXISTS `btSurveyResults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSurveyResults` ( `resultID` int unsigned NOT NULL AUTO_INCREMENT, `optionID` int unsigned DEFAULT '0', `uID` int unsigned DEFAULT '0', `bID` int DEFAULT NULL, `cID` int DEFAULT NULL, `ipAddress` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`resultID`), KEY `optionID` (`optionID`), KEY `cID` (`cID`,`optionID`,`bID`), KEY `bID` (`bID`,`cID`,`uID`), KEY `uID` (`uID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSurveyResults` -- LOCK TABLES `btSurveyResults` WRITE; /*!40000 ALTER TABLE `btSurveyResults` DISABLE KEYS */; /*!40000 ALTER TABLE `btSurveyResults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btSwitchLanguage` -- DROP TABLE IF EXISTS `btSwitchLanguage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btSwitchLanguage` ( `bID` int unsigned NOT NULL, `label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btSwitchLanguage` -- LOCK TABLES `btSwitchLanguage` WRITE; /*!40000 ALTER TABLE `btSwitchLanguage` DISABLE KEYS */; /*!40000 ALTER TABLE `btSwitchLanguage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btTags` -- DROP TABLE IF EXISTS `btTags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btTags` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `targetCID` int DEFAULT NULL, `displayMode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT 'page', `cloudCount` int DEFAULT '10', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btTags` -- LOCK TABLES `btTags` WRITE; /*!40000 ALTER TABLE `btTags` DISABLE KEYS */; /*!40000 ALTER TABLE `btTags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btTestimonial` -- DROP TABLE IF EXISTS `btTestimonial`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btTestimonial` ( `bID` int unsigned NOT NULL, `fID` int unsigned DEFAULT '0', `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `companyURL` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paragraph` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btTestimonial` -- LOCK TABLES `btTestimonial` WRITE; /*!40000 ALTER TABLE `btTestimonial` DISABLE KEYS */; INSERT INTO `btTestimonial` VALUES (93,14,'<NAME>','CEO & Founder','concrete5','http://concrete5.org','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus.'),(94,14,'<NAME>','Marketing Directory','CompanyCo','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus.'),(95,14,'<NAME>','CTO & Founder','concrete5','http://concrete5.org','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus.'),(96,14,'<NAME>','IT Manager','CompanyCo','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis. Morbi at suscipit risus.'),(111,12,'<NAME>','Co-Founder / CEO','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(112,12,'<NAME>','Co-Founder / CTO','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(115,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(116,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(117,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(118,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(119,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'),(120,12,'<NAME>','Art Director','','','\n Curabitur sagittis elementum felis at sodales. Nullam fermentum at urna quis accumsan. Nam bibendum leo nisi, lacinia molestie arcu consequat quis.'); /*!40000 ALTER TABLE `btTestimonial` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btTopicList` -- DROP TABLE IF EXISTS `btTopicList`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btTopicList` ( `bID` int unsigned NOT NULL, `mode` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'S' COMMENT 'S = Search, P = Page', `topicAttributeKeyHandle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `topicTreeID` int unsigned NOT NULL DEFAULT '0', `cParentID` int unsigned NOT NULL DEFAULT '0', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btTopicList` -- LOCK TABLES `btTopicList` WRITE; /*!40000 ALTER TABLE `btTopicList` DISABLE KEYS */; INSERT INTO `btTopicList` VALUES (26,'P','blog_entry_topics',4,193,'Topics'),(51,'S','',4,0,'Topics'),(54,'S','',5,0,''); /*!40000 ALTER TABLE `btTopicList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btVideo` -- DROP TABLE IF EXISTS `btVideo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btVideo` ( `bID` int unsigned NOT NULL, `webmfID` int unsigned DEFAULT '0', `oggfID` int unsigned DEFAULT '0', `posterfID` int unsigned DEFAULT '0', `mp4fID` int unsigned DEFAULT '0', `videoSize` int unsigned DEFAULT '0', `width` int unsigned DEFAULT NULL, PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btVideo` -- LOCK TABLES `btVideo` WRITE; /*!40000 ALTER TABLE `btVideo` DISABLE KEYS */; /*!40000 ALTER TABLE `btVideo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `btYouTube` -- DROP TABLE IF EXISTS `btYouTube`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `btYouTube` ( `bID` int unsigned NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `videoURL` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vHeight` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vWidth` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sizing` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `startTimeEnabled` tinyint(1) DEFAULT NULL, `startTime` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `noCookie` tinyint(1) DEFAULT NULL, `autoplay` tinyint(1) NOT NULL DEFAULT '0', `color` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `controls` int unsigned DEFAULT NULL, `iv_load_policy` int unsigned DEFAULT NULL, `loopEnd` tinyint(1) NOT NULL DEFAULT '0', `modestbranding` tinyint(1) NOT NULL DEFAULT '0', `rel` tinyint(1) NOT NULL DEFAULT '0', `showinfo` tinyint(1) NOT NULL DEFAULT '0', `showCaptions` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`bID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `btYouTube` -- LOCK TABLES `btYouTube` WRITE; /*!40000 ALTER TABLE `btYouTube` DISABLE KEYS */; /*!40000 ALTER TABLE `btYouTube` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gaPage` -- DROP TABLE IF EXISTS `gaPage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `gaPage` ( `gaiID` int unsigned NOT NULL, `cID` int unsigned DEFAULT NULL, PRIMARY KEY (`gaiID`), KEY `cID` (`cID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gaPage` -- LOCK TABLES `gaPage` WRITE; /*!40000 ALTER TABLE `gaPage` DISABLE KEYS */; /*!40000 ALTER TABLE `gaPage` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2020-06-28 19:09:38
-- MySQL dump 10.13 Distrib 5.5.62, for Win64 (AMD64) -- -- Host: 172.16.31.10 Database: test3 -- ------------------------------------------------------ -- Server version 5.5.5-10.7.3-MariaDB-1:10.7.3+maria~focal /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!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' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `t_msg` -- DROP TABLE IF EXISTS `t_msg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `t_msg` ( `id` int(11) NOT NULL AUTO_INCREMENT, `msg` varchar(256) NOT NULL DEFAULT '' COMMENT '消息内容,可以是json格式的数据', `msg_order_id` bigint(20) NOT NULL DEFAULT 0 COMMENT '消息订单id', `status` smallint(6) NOT NULL DEFAULT 0 COMMENT '消息状态,0:待投递,1:已发送,2:取消发送', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='消息表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `t_msg` -- LOCK TABLES `t_msg` WRITE; /*!40000 ALTER TABLE `t_msg` DISABLE KEYS */; INSERT INTO `t_msg` VALUES (1,'消息1',1,0),(2,'[user_id:1,user_name:张三]',2,0),(3,'[user_id:2,user_name:李四]',3,0); /*!40000 ALTER TABLE `t_msg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `t_msg_order` -- DROP TABLE IF EXISTS `t_msg_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `t_msg_order` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ref_type` bigint(20) NOT NULL DEFAULT 0 COMMENT '关联业务类型', `ref_id` varchar(256) NOT NULL DEFAULT '' COMMENT '关联业务id(ref_type & ref_id 唯一)', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='消息订单表,放在业务库中'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `t_msg_order` -- LOCK TABLES `t_msg_order` WRITE; /*!40000 ALTER TABLE `t_msg_order` DISABLE KEYS */; INSERT INTO `t_msg_order` VALUES (2,1,'1'); /*!40000 ALTER TABLE `t_msg_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `t_user` -- DROP TABLE IF EXISTS `t_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `t_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '' COMMENT '姓名', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='用户表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `t_user` -- LOCK TABLES `t_user` WRITE; /*!40000 ALTER TABLE `t_user` DISABLE KEYS */; INSERT INTO `t_user` VALUES (1,'张三'); /*!40000 ALTER TABLE `t_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'test3' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2022-03-31 17:28:08
-------------------------------------------------------- -- DDL for Table GRANTUTIL_MYOBJECTS -------------------------------------------------------- CREATE TABLE "GROUNDFISH"."GRANTUTIL_MYOBJECTS" ( "OBJECT_NAME" VARCHAR2(30 BYTE) ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 65536 NEXT 65536 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "MFD_GROUNDFISH" ; GRANT SELECT ON "GROUNDFISH"."GRANTUTIL_MYOBJECTS" TO "HUBLEYB"; GRANT SELECT ON "GROUNDFISH"."GRANTUTIL_MYOBJECTS" TO "GREYSONP";
INSERT INTO event_subject (id, name, abbr) VALUES (1, 'Животные', 'animals'); INSERT INTO event_subject (id, name, abbr) VALUES (2, 'Благотворительность', 'charity'); INSERT INTO event_subject (id, name, abbr) VALUES (3, 'Образование', 'education'); INSERT INTO event_subject (id, name, abbr) VALUES (4, 'Здоровье', 'healthy'); INSERT INTO event_subject (id, name, abbr) VALUES (5, 'Культура', 'culture');
/* FUNCTIONS */ select sign(-1), sing(5) from dual; RESULTS: -1, 1 select round(4.756), trunc(4.756) from dual; RESULTS 5, 4 SELECT SOUNDEX('Worthingtion'), SOUNDEX('Worthen') FROM DUAL; RESULTS: W635, W635 SELECT ROUND(12.355143,2), ROUND(259.99,-1) FROM DUAL RESULTS 12.36, 260 SELECT TRUNC(12.355143,2), TRUNC(259.99,-1) FROM DUAL RESULTS 12.35, 250 /* TRUNCATING, ROUNDING TO THE NEAREST TENS IF i IS NEGATIVE */ SELECT REMAINDER(9,3), REMAINDER(10,3), REMAINDER(11,3) FROM DUAL; RESULTS 0, 1, -1 SELECT MOD(9,3), MOD(10,3), MOD(11,3) FROM DUAL; RESULTS 0, 1, 2 SELECT STATE, DECODE(STATE, 'CA', 'California', 'IL', 'Illinois', 'Other') AS DECODE_STATE FROM ADDRESSES; RESULTS: STATE DECODED_STATE NULL OTHER CA California TX OTHER IL Illinois QC OTHER SELECT NULLIF(1,2), NULLIF(1,1) FROM DUAL; RESULTS: 1, NULL SELECT NULLIF(NULL,NULL) FROM DUAL; RESULTS: Syntax Error - NULLIF is doing Expression1 = Expression2, NULL = NULL is not a valid comparison SELECT TO_CHAR(SYSDATE, 'DD-MON-RRRR HH:MM:SS') "Today's Date And Time" FROM DUAL; Above query is syntactically correcy but format for mintues should be MI currently for minutes it will show MONTHS SELECT TO_DSINTERVAL('40 08:30:00.03225') EVENT_TIME FROM DUAL; RESULTS: 40 8:30:0.032250000 SELECT TO_YMINTERVAL('04-06') EVENT_TIME FROM DUAL; RESULTS: 4-6 /* LIST OF AVAILABLE TIME ZONES IN DATABASE */ SELECT TZABBREV, TZNAME FROM V$TIMEZONE_NAMES ORDER BY TZABBREV, TZNAME; /* FROM_TZ */ SELECT FROM_TZ(TIMESTAMP '2014-01-13 01:45:30','+07:30') FROM DUAL; RESULTS: 13-JAN-14 01.45.30.000000000 AM +07:30 /* TO_TIMESTAMP_TZ */ SELECT TO_TIMESTAMP_TZ('01-01-2014 01:01:01','DD-MM-RRRR HH24:MI:SS') "Time" FROM DUAL; RESULTS: 01-JAN-14 01.01.01.000000000 PM AMERICA/NEW_YORK /* EXTRACT */ SELECT EXTRACT(MINUTE FROM TO_TIMESTAMP('2009-10-11 12:13:14','RRRR-MM-DD HH24:MI:SS')) "Minute" FROM DUAL; RESULTS: 13 /* SYS_EXTRACT_UTC */ SELECT SYS)EXTRACT_UTC(TIMESTAMP '2014-03-25 09:55:00 -04:00') "HQ" FROM DUAL; RESULTS: 25-MAR-14 01.55.00.00000000 PM
create table m_develop_type ( id int auto_increment primary key, name varchar(100) null, code varchar(20) null, sort int null, remark varchar(255) null, available int default 1 null, create_by varchar(20) null, create_time datetime default CURRENT_TIMESTAMP null, update_by varchar(20) null, update_time datetime default CURRENT_TIMESTAMP null ); INSERT INTO drs.m_develop_type (id, name, code, sort, remark, available, create_by, create_time, update_by, update_time) VALUES (1, '1222', '222', 22, '', 1, 'admin', '2022-02-21 13:15:27', 'admin', '2022-02-21 13:15:27'); INSERT INTO drs.m_develop_type (id, name, code, sort, remark, available, create_by, create_time, update_by, update_time) VALUES (3, '无效类型', '12321', 3, '', 0, 'admin', '2022-03-01 15:00:13', 'admin', '2022-03-01 15:30:43'); INSERT INTO drs.m_develop_type (id, name, code, sort, remark, available, create_by, create_time, update_by, update_time) VALUES (4, '运维类型1', '9239', 32, '', 1, 'admin', '2022-03-01 15:01:38', 'admin', '2022-03-01 15:01:38'); INSERT INTO drs.m_develop_type (id, name, code, sort, remark, available, create_by, create_time, update_by, update_time) VALUES (5, '类型10', '1999', 1, '1', 1, 'admin', '2022-03-01 15:16:08', 'admin', '2022-03-01 15:16:08');
SELECT to_char(p.date, 'Mon dd') AS most_common_purchase_date FROM purchases p INNER JOIN wines w ON p.wine_id = w.id WHERE p.date IS NOT NULL AND w.user_id = $1 GROUP BY to_char(p.date, 'Mon dd') ORDER BY sum(p.quantity) DESC LIMIT 1;
<filename>5.2.3/Database/Indexes/AFW_20_DEPLM_PK.sql SET DEFINE OFF; CREATE UNIQUE INDEX AFW_20_DEPLM_PK ON AFW_20_DEPLM (SEQNC) LOGGING /
IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'clientId') BEGIN EXEC('ALTER TABLE service ADD clientId varchar(50) NULL') EXEC('UPDATE [service] SET clientId = id') EXEC('ALTER TABLE service ALTER COLUMN clientId varchar(50) NOT NULL') EXEC('ALTER TABLE service ADD CONSTRAINT [UQ_service_clientid] UNIQUE(clientId)') END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'clientSecret') BEGIN EXEC('ALTER TABLE service ADD clientSecret varchar(255) NULL') EXEC('UPDATE [service] SET clientSecret = '''' ') EXEC('ALTER TABLE service ALTER COLUMN clientSecret varchar(255) NOT NULL') END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'apiSecret') BEGIN ALTER TABLE service ADD apiSecret varchar(255) NULL END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'tokenEndpointAuthMethod') BEGIN ALTER TABLE service ADD tokenEndpointAuthMethod varchar(50) NULL END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'serviceHome') BEGIN ALTER TABLE service ADD serviceHome varchar(1024) NULL END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'service' AND TABLE_SCHEMA = 'dbo' AND COLUMN_NAME = 'postResetUrl') BEGIN ALTER TABLE service ADD postResetUrl varchar(1024) NULL END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'serviceRedirectUris' AND TABLE_SCHEMA = 'dbo') BEGIN CREATE TABLE serviceRedirectUris ( serviceId uniqueidentifier NOT NULL, redirectUrl varchar(1024) NOT NULL, CONSTRAINT UQ_serviceRedirectUris_serviceurl UNIQUE (serviceId, redirectUrl), CONSTRAINT FK_serviceRedirectUris_service FOREIGN KEY (serviceId) REFERENCES [service](id), ) CREATE CLUSTERED INDEX IX_serviceRedirectUris_serviceId ON serviceRedirectUris(serviceId) END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'servicePostLogoutRedirectUris' AND TABLE_SCHEMA = 'dbo') BEGIN CREATE TABLE servicePostLogoutRedirectUris ( serviceId uniqueidentifier NOT NULL, redirectUrl varchar(1024) NOT NULL, CONSTRAINT UQ_servicePostLogoutRedirectUris_serviceurl UNIQUE (serviceId, redirectUrl), CONSTRAINT FK_servicePostLogoutRedirectUris_service FOREIGN KEY (serviceId) REFERENCES [service](id), ) CREATE CLUSTERED INDEX IX_servicePostLogoutRedirectUris_serviceId ON servicePostLogoutRedirectUris(serviceId) END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'serviceGrantTypes' AND TABLE_SCHEMA = 'dbo') BEGIN CREATE TABLE serviceGrantTypes ( serviceId uniqueidentifier NOT NULL, grantType varchar(255) NOT NULL, CONSTRAINT UQ_serviceGrantTypes_servicegrant UNIQUE (serviceId, grantType), CONSTRAINT FK_serviceGrantTypes_service FOREIGN KEY (serviceId) REFERENCES [service](id), ) CREATE CLUSTERED INDEX IX_serviceGrantTypes_serviceId ON serviceGrantTypes(serviceId) END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'serviceResponseTypes' AND TABLE_SCHEMA = 'dbo') BEGIN CREATE TABLE serviceResponseTypes ( serviceId uniqueidentifier NOT NULL, responseType varchar(255) NOT NULL, CONSTRAINT UQ_serviceResponseTypes_serviceresponse UNIQUE (serviceId, responseType), CONSTRAINT FK_serviceResponseTypes_service FOREIGN KEY (serviceId) REFERENCES [service](id), ) CREATE CLUSTERED INDEX IX_serviceResponseTypes_serviceId ON serviceResponseTypes(serviceId) END GO IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'serviceParams' AND TABLE_SCHEMA = 'dbo') BEGIN CREATE TABLE serviceParams ( serviceId uniqueidentifier NOT NULL, paramName varchar(255) NOT NULL, paramValue varchar(max) NOT NULL, CONSTRAINT PK_serviceParams PRIMARY KEY (serviceId, paramName) ) END GO
CREATE PROCEDURE usp_EmployeesBySalaryLevel (@salaryLevel VARCHAR(8)) AS BEGIN SELECT FirstName,LastName FROM Employees WHERE @salaryLevel = dbo.ufn_GetSalaryLevel(Salary); END GO EXEC dbo.usp_EmployeesBySalaryLevel 'High'
<reponame>Foxpips/LayeredArchitecture<filename>Miscellaneous/StoredProcedures/Backup_2015 March 24/h3giInsuranceGetPolicyDetails.sql -- =================================================================== -- Author: <NAME> -- Create date: 10/07/2013 -- Description: Returns insurance policy details for a given policyId -- =================================================================== CREATE PROCEDURE [dbo].[h3giInsuranceGetPolicyDetails] @policyId INT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; SELECT PeopleSoftId FROM h3giInsurancePolicyDevice WHERE InsurancePolicyId = @policyId SELECT Name AS policyName, AnnualPrice AS annualCost, MonthlyPrice AS monthlyCost, Description AS description FROM h3giInsurancePolicy WHERE Id = @policyId END GRANT EXECUTE ON h3giInsuranceGetPolicyDetails TO b4nuser GO
<gh_stars>10-100 drop table bdot_buildings_old; drop table bdot_buildings_all_old;
SELECT tmc.case_barcode, tumor_barcode_a, tumor_barcode_b, aliquot_analysis_type, case_source, idh_codel_subtype, received_alk, hypermutator_status, tq1.length AS p_len, tq2.length AS r_len, tqn.length AS n_len, tq1.length / tq2.length AS pr_len_ratio, a1.prop_aneuploidy AS aneuploidy_a, a2.prop_aneuploidy AS aneuploidy_b, a1.aneuploidy_amp_score::integer AS aneuploidy_amp_score_a, a2.aneuploidy_amp_score::integer AS aneuploidy_amp_score_b, a1.aneuploidy_del_score::integer AS aneuploidy_del_score_a, a2.aneuploidy_del_score::integer AS aneuploidy_del_score_b, a1.aneuploidy_score::integer AS aneuploidy_score_a, a2.aneuploidy_score::integer AS aneuploidy_score_b FROM analysis.tumor_mut_comparison_anno tmc LEFT JOIN analysis.gatk_aneuploidy a1 ON a1.aliquot_barcode = tmc.tumor_barcode_a LEFT JOIN analysis.gatk_aneuploidy a2 ON a2.aliquot_barcode = tmc.tumor_barcode_b LEFT JOIN analysis.pairs pa1 ON pa1.tumor_barcode = tmc.tumor_barcode_a LEFT JOIN biospecimen.aliquots al1 ON al1.aliquot_barcode = tmc.tumor_barcode_a LEFT JOIN biospecimen.samples sa1 ON sa1.sample_barcode = al1.sample_barcode LEFT JOIN clinical.cases ca1 ON ca1.case_barcode = sa1.case_barcode LEFT JOIN analysis.telseq tqn ON tqn.aliquot_barcode = pa1.normal_barcode LEFT JOIN analysis.telseq tq1 ON tq1.aliquot_barcode = tmc.tumor_barcode_a LEFT JOIN analysis.telseq tq2 ON tq2.aliquot_barcode = tmc.tumor_barcode_b
<filename>dist/upload.tmpl.sql set serveroutput on declare v_application_id apex_applications.application_id%type; v_workspace_id apex_applications.workspace_id%type; v_b64 clob; gc_red varchar2(7) := chr(27) || '[31m'; gc_green varchar2(7) := chr(27) || '[32m'; gc_yellow varchar2(7) := chr(27) || '[33m'; gc_blue varchar2(7) := chr(27) || '[34m'; gc_cyan varchar2(7) := chr(27) || '[36m'; gc_reset varchar2(7) := chr(27) || '[0m'; function get_file_mime_type(p_file_name in varchar2) return varchar2 is l_mime_type varchar2(2000) := 'application/octet-stream'; begin select mime_type into l_mime_type from xmltable (xmlnamespaces (default 'http://xmlns.oracle.com/xdb/xdbconfig.xsd'), '//mime-mappings/mime-mapping' passing xdb.dbms_xdb.cfg_get() columns extension varchar2(50) path 'extension', mime_type varchar2(100) path 'mime-type') where lower(extension) = lower(substr(p_file_name, instr(p_file_name, '.', -1) + 1)) and rownum = 1; return l_mime_type; exception when no_data_found then return l_mime_type; end; begin -- determine target app and workspace select application_id, workspace_id into v_application_id, v_workspace_id from apex_applications where to_char(application_id) = '{{inAppID}}' or upper(alias) = upper('{{inAppID}}'); apex_util.set_security_group_id (p_security_group_id => v_workspace_id); execute immediate 'alter session set current_schema=' || apex_application.g_flow_schema_owner; {{#each files}} ----------------------------------------------------------------------------------- -- now load {{inFileName}} dbms_lob.createtemporary(v_b64, true, dbms_lob.session); {{#each this.inFileContent}} dbms_lob.append(v_b64, '{{{this}}}'); {{/each}} -- wwv_flow_api.create_app_static_file (p_flow_id => v_application_id, p_file_name => '{{inFileName}}', p_mime_type => get_file_mime_type(p_file_name => '{{inFileName}}'), p_file_charset => 'utf-8', p_file_content => apex_web_service.clobbase642blob(v_b64)); dbms_lob.freetemporary(v_b64); dbms_output.put_line(gc_green||' ... File uploaded as: {{inFileName}}' || gc_reset); ----------------------------------------------------------------------------------- {{/each}} commit; exception when others then dbms_output.put_line(gc_red||sqlerrm || gc_reset); end; /
<gh_stars>0 SELECT /*%expand*/* FROM items WHERE uid = /* arg0 */'hoge' AND item_id = /* arg1 */'hoge'
<reponame>iiiiron/intelligente /* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80025 Source Host : localhost Source Database : mooc Target Server Type : MySQL Target Server Version : 80025 File Encoding : utf-8 Date: 08/12/2021 16:34:21 PM */ SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `course` -- ---------------------------- DROP TABLE IF EXISTS `course`; CREATE TABLE `course` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(200) DEFAULT NULL, `context` varchar(500) DEFAULT NULL, `type` varchar(50) DEFAULT NULL, `price` varchar(50) DEFAULT NULL, `label` varchar(100) DEFAULT NULL, `hour` char(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `course` -- ---------------------------- BEGIN; INSERT INTO `course` VALUES ('1', 'Python', 'Python', '1', '1', '一般', '20'), ('2', 'Python入门', 'Python入门', '0', '0', '还行', '10'), ('3', '1024设计', '1024设计', '1', '0', '还行', '5'), ('4', 'Python爬虫', 'Python爬虫技巧', '0', '0', '还行', '12'), ('5', 'java', 'java基础入门', '1', '0', '一般', '14'), ('6', 'Python爬虫2', 'Python爬虫2', '0', '0', '一般', '15'); COMMIT; -- ---------------------------- -- Table structure for `ipset` -- ---------------------------- DROP TABLE IF EXISTS `ipset`; CREATE TABLE `ipset` ( `ip` varchar(255) NOT NULL DEFAULT '', `type` varchar(255) DEFAULT NULL, `mark` varchar(255) DEFAULT NULL, `firsttime` datetime DEFAULT NULL, `bantime` datetime DEFAULT NULL, `totime` datetime DEFAULT NULL, PRIMARY KEY (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `ipset` -- ---------------------------- BEGIN; INSERT INTO `ipset` VALUES ('0:0:0:0:0:0:0:1', null, null, '2018-10-27 20:00:34', null, '2021-08-12 16:05:30'), ('127.0.0.1', '0', '恶意登陆管理员账号!', '2018-10-16 11:57:36', '2117-10-16 19:16:14', '2018-10-29 16:09:50'), ('172.16.31.10', '0', '多次测试未知账户!', '2018-10-16 18:34:05', '2018-10-16 18:39:14', '2018-10-16 18:34:05'), ('172.16.17.32', '0', '恶意登陆管理员账号!', '2018-10-16 14:11:35', '2117-10-16 19:00:29', '2018-10-16 19:05:29'), ('172.16.58.3', '1', '多次测试未知账户!', '2018-10-16 12:00:48', '2018-10-17 19:21:21', '2018-10-16 19:20:43'), ('192.168.3.11', '0', '多次测试未知账户!', '2018-10-16 14:09:01', '2018-10-17 18:57:18', '2018-10-17 19:22:21'), ('192.168.3.11', '0', '多次测试未知账户!', '2018-10-16 12:00:30', '2018-10-16 19:24:00', '2018-10-16 14:04:47'), ('172.16.31.10', '1', '多次测试未知账户!', '2018-10-16 15:09:06', '2018-10-16 19:26:04', '2018-10-16 19:19:24'), ('172.16.58.3', '1', '多次测试未知账户!', '2018-10-16 19:08:26', '2018-10-16 19:25:58', '2018-10-16 19:09:36'); COMMIT; -- ---------------------------- -- Table structure for `log` -- ---------------------------- DROP TABLE IF EXISTS `log`; CREATE TABLE `log` ( `id` int NOT NULL AUTO_INCREMENT, `userid` varchar(255) DEFAULT NULL, `username` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `ip` varchar(255) DEFAULT NULL, `time` datetime DEFAULT NULL, `executor` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `log` -- ---------------------------- BEGIN; INSERT INTO `log` VALUES ('1', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2018-10-15 15:13:46', null), ('2', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2018-10-15 15:15:57', 'admin'), ('3', '20151612204', 'admin', '充值500元', '0:0:0:0:0:0:0:1', '2018-10-15 15:16:53', 'admin'), ('4', '201808231058301205', '1823544517', '充值10000元', '0:0:0:0:0:0:0:1', '2018-10-15 15:18:02', 'admin'), ('5', '201808231058301205', '1823544517', '屏蔽用户登录', '0:0:0:0:0:0:0:1', '2018-10-15 15:18:12', 'admin'), ('6', '201808231058301205', '1823544517', '恢复用户登录', '0:0:0:0:0:0:0:1', '2018-10-15 15:19:10', 'admin'), ('7', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-15 15:19:15', null), ('8', '201808231058301205', '1823544517', '订阅课程:1024设计', '127.0.0.1', '2018-10-15 15:19:20', null), ('9', '201808231058301205', '1823544517', '购买会员:一年', '127.0.0.1', '2018-10-15 15:31:58', null), ('10', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-15 16:12:09', null), ('11', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2018-10-15 21:45:02', 'admin'), ('12', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-15 21:49:02', null), ('13', null, null, '下架课程:Python', '0:0:0:0:0:0:0:1', '2018-10-15 21:49:27', 'admin'), ('14', null, null, '上架课程:Python', '0:0:0:0:0:0:0:1', '2018-10-15 21:49:37', 'admin'), ('15', null, null, '下架课程:Python', '0:0:0:0:0:0:0:1', '2018-10-15 21:49:44', 'admin'), ('16', null, null, '尝试登录账号:asdawdasdwqweqwrqwe,密码错误', '127.0.0.1', '2018-10-16 10:08:03', null), ('17', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 10:08:48', 'admin'), ('18', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-16 10:10:17', null), ('19', '201810161045371069', 'abc', '普通注册', '172.16.31.10', '2018-10-16 10:37:45', null), ('20', '201810161045371069', 'abc', '登录', '172.16.31.10', '2018-10-16 10:38:12', null), ('21', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:38:27', null), ('22', '201810161045371069', 'abc', '订阅课程:1024设计', '172.16.31.10', '2018-10-16 10:39:07', null), ('23', '201810161045371069', 'abc', '个人信息更改', '172.16.31.10', '2018-10-16 10:40:49', null), ('24', '201810161045371069', 'abc', '个人信息更改', '172.16.31.10', '2018-10-16 10:40:57', null), ('25', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-16 10:41:17', null), ('26', '201810161045371069', 'abc', '取消课程:1024设计', '172.16.31.10', '2018-10-16 10:41:32', null), ('27', '201810161045371069', 'abc', '个人信息更改', '172.16.31.10', '2018-10-16 10:43:15', null), ('28', '201810161045371069', 'abc', '充值10000元', '127.0.0.1', '2018-10-16 10:44:50', 'admin'), ('29', '201810161045371069', 'abc', '购买会员:一年', '172.16.31.10', '2018-10-16 10:45:04', null), ('30', '201810161045371069', 'abc', '购买会员:半年', '172.16.31.10', '2018-10-16 10:45:07', null), ('31', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:45:11', null), ('32', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:45:13', null), ('33', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:45:15', null), ('34', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:45:16', null), ('35', '201810161045371069', 'abc', '购买会员:半年', '172.16.31.10', '2018-10-16 10:46:02', null), ('36', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:46:05', null), ('37', '201810161045371069', 'abc', '购买会员:一个月', '172.16.31.10', '2018-10-16 10:46:07', null), ('38', '201810161045371069', 'abc', '注销', '172.16.31.10', '2018-10-16 10:46:24', null), ('39', null, null, '尝试登录账号:admin,密码错误', '172.16.31.10', '2018-10-16 10:46:52', null), ('40', '20151612204', 'admin', '注销', '127.0.0.1', '2018-10-16 10:47:40', 'admin'), ('41', null, null, '尝试登录账号:admin,密码错误', '127.0.0.1', '2018-10-16 10:47:50', null), ('42', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 10:48:09', 'admin'), ('43', '201808231058301205', '1823544517', '登录', '192.168.3.11', '2018-10-16 14:09:19', null), ('44', '201808231058301205', '1823544517', '订阅课程:Python爬虫', '192.168.3.11', '2018-10-16 14:09:32', null), ('45', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 14:34:55', 'admin'), ('46', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 14:47:31', 'admin'), ('47', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 15:02:14', 'admin'), ('48', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 15:06:45', 'admin'), ('49', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 15:07:24', 'admin'), ('50', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-16 15:22:23', null), ('51', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 15:27:01', 'admin'), ('52', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-16 15:27:30', null), ('53', '201808231058301205', '1823544517', '发表评论,在\'null\'', '127.0.0.1', '2018-10-16 15:27:45', null), ('54', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 15:29:20', 'admin'), ('55', '201808231058301205', '1823544517', '登录', '127.0.0.1', '2018-10-16 15:30:13', null), ('56', '201808231058301205', '1823544517', '发表评论,在\'Python爬虫\'', '127.0.0.1', '2018-10-16 15:30:22', null), ('57', '201810161045371069', 'abc', '登录', '172.16.31.10', '2018-10-16 15:34:59', null), ('58', '201810161045371069', 'abc', '订阅课程:1024设计', '172.16.31.10', '2018-10-16 15:35:05', null), ('59', '201810161045371069', 'abc', '发表评论,在\'1024设计\'', '172.16.31.10', '2018-10-16 15:35:30', null), ('60', '201810161045371069', 'abc', '取消课程:1024设计', '172.16.31.10', '2018-10-16 15:36:28', null), ('61', '201810161045371069', 'abc', '屏蔽用户登录', '127.0.0.1', '2018-10-16 15:36:47', 'admin'), ('62', '201810161045371069', 'abc', '订阅课程:Python入门', '172.16.31.10', '2018-10-16 15:37:03', null), ('63', '201810161045371069', 'abc', '注销', '172.16.31.10', '2018-10-16 15:37:11', null), ('64', '201810161045371069', 'abc', '恢复用户登录', '127.0.0.1', '2018-10-16 15:37:22', 'admin'), ('65', '201810161045371069', 'abc', '登录', '172.16.31.10', '2018-10-16 15:37:27', null), ('66', '201808231058301205', '1823544517', '注销', '127.0.0.1', '2018-10-16 15:42:47', null), ('67', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:11:30', 'admin'), ('68', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:12:28', 'admin'), ('69', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:27:45', 'admin'), ('70', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:28:48', 'admin'), ('71', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:29:32', 'admin'), ('72', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:31:06', 'admin'), ('73', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:40:19', 'admin'), ('74', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:44:57', 'admin'), ('75', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:47:35', 'admin'), ('76', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 17:48:23', 'admin'), ('77', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 18:18:24', 'admin'), ('78', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 18:21:29', 'admin'), ('79', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 18:27:53', 'admin'), ('80', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 18:53:35', 'admin'), ('81', null, null, '尝试登录账号:96321,密码错误', '172.16.17.32', '2018-10-16 19:01:02', null), ('82', null, null, '尝试登录账号:96321,密码错误', '172.16.17.32', '2018-10-16 19:01:24', null), ('83', '201810161901381601', '96321', '普通注册', '172.16.17.32', '2018-10-16 19:01:38', null), ('84', '201810161901381601', '96321', '屏蔽用户登录', '127.0.0.1', '2018-10-16 19:01:50', 'admin'), ('85', '201810161901381601', '96321', '恢复用户登录', '127.0.0.1', '2018-10-16 19:01:55', 'admin'), ('86', '201810161901381601', '96321', '登录', '172.16.17.32', '2018-10-16 19:02:03', null), ('87', '201810161901381601', '96321', '个人信息更改', '172.16.17.32', '2018-10-16 19:02:33', null), ('88', '201810161901381601', '96321', '订阅课程:Python入门', '172.16.17.32', '2018-10-16 19:02:41', null), ('89', '201810161901381601', '96321', '发表评论,在\'Python入门\'', '172.16.17.32', '2018-10-16 19:02:56', null), ('90', '201810161901381601', '96321', '取消课程:Python入门', '172.16.17.32', '2018-10-16 19:03:08', null), ('91', '201810161901381601', '96321', '购买会员:一个月', '172.16.17.32', '2018-10-16 19:03:40', null), ('92', '201810161901381601', '96321', '订阅课程:Python爬虫2', '172.16.17.32', '2018-10-16 19:03:46', null), ('93', '201810161901381601', '96321', '发表评论,在\'Python爬虫2\'', '172.16.17.32', '2018-10-16 19:03:55', null), ('94', '201810161901381601', '96321', '个人信息更改', '172.16.17.32', '2018-10-16 19:04:36', null), ('95', '201810161901381601', '96321', '注销', '172.16.17.32', '2018-10-16 19:05:29', null), ('96', '20151612204', 'admin', '登录', '172.16.31.10', '2018-10-16 19:15:49', 'admin'), ('97', '20151612204', 'admin', '登录', '172.16.31.10', '2018-10-16 19:18:37', 'admin'), ('98', '20151612204', 'admin', '登录', '172.16.31.10', '2018-10-16 19:19:04', 'admin'), ('99', '20151612204', 'admin', '登录', '172.16.58.3', '2018-10-16 19:20:27', 'admin'), ('100', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-16 19:20:55', 'admin'), ('101', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-17 15:50:41', null), ('102', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-17 15:51:46', 'admin'), ('103', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-17 15:52:31', null), ('104', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-17 18:55:21', 'admin'), ('105', null, null, '尝试登录账号:admin,密码错误', '0:0:0:0:0:0:0:1', '2018-10-27 20:01:49', null), ('106', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2018-10-27 20:01:57', 'admin'), ('107', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 10:30:06', 'admin'), ('108', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 10:46:37', 'admin'), ('109', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 14:30:47', 'admin'), ('110', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 14:35:21', 'admin'), ('111', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 14:48:57', 'admin'), ('112', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 14:51:52', 'admin'), ('113', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 14:52:54', 'admin'), ('114', null, null, '删除课程:张三', '127.0.0.1', '2018-10-29 14:53:07', 'admin'), ('115', null, null, '删除课程:张三', '127.0.0.1', '2018-10-29 14:53:16', 'admin'), ('116', null, null, '删除课程:张三', '127.0.0.1', '2018-10-29 14:53:22', 'admin'), ('117', null, null, '删除课程:张三', '127.0.0.1', '2018-10-29 14:53:29', 'admin'), ('118', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 15:22:11', 'admin'), ('119', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 15:23:42', 'admin'), ('120', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 15:24:57', 'admin'), ('121', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 15:51:24', 'admin'), ('122', '20151612204', 'admin', '登录', '127.0.0.1', '2018-10-29 15:53:23', 'admin'), ('123', null, null, '上架课程:123123', '127.0.0.1', '2018-10-29 15:54:04', 'admin'), ('124', null, null, '下架课程:123123', '127.0.0.1', '2018-10-29 15:54:17', 'admin'), ('125', null, null, '删除课程:123123', '127.0.0.1', '2018-10-29 15:54:34', 'admin'), ('126', '20151612204', 'admin', '发表评论,在\'Python入门\'', '127.0.0.1', '2018-10-29 16:09:50', null), ('127', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-08 15:42:15', 'admin'), ('128', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-09 08:58:15', null), ('129', '20151612204', 'admin', '取消课程:Python', '0:0:0:0:0:0:0:1', '2021-08-09 08:58:29', null), ('130', '20151612204', 'admin', '取消课程:Python入门', '0:0:0:0:0:0:0:1', '2021-08-09 08:58:40', null), ('131', '20151612204', 'admin', '订阅课程:Python入门', '0:0:0:0:0:0:0:1', '2021-08-09 08:58:47', null), ('132', '20151612204', 'admin', '取消课程:Python入门', '0:0:0:0:0:0:0:1', '2021-08-09 08:58:50', null), ('133', '20151612204', 'admin', '取消课程:java', '0:0:0:0:0:0:0:1', '2021-08-09 08:59:02', null), ('134', '20151612204', 'admin', '订阅课程:java', '0:0:0:0:0:0:0:1', '2021-08-09 08:59:04', null), ('135', '20151612204', 'admin', '取消课程:java', '0:0:0:0:0:0:0:1', '2021-08-09 09:00:04', null), ('136', '20151612204', 'admin', '订阅课程:java', '0:0:0:0:0:0:0:1', '2021-08-09 09:00:05', null), ('137', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-09 09:16:32', null), ('138', '20151612204', 'admin', '发表评论,在\'java\'', '0:0:0:0:0:0:0:1', '2021-08-09 09:18:06', null), ('139', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-12 15:44:44', null), ('140', '20151612204', 'admin', '注销', '0:0:0:0:0:0:0:1', '2021-08-12 15:48:25', null), ('141', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-12 15:55:08', null), ('142', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-12 15:55:31', 'admin'), ('143', '20151612204', 'admin', '登录', '0:0:0:0:0:0:0:1', '2021-08-12 15:57:51', 'admin'), ('144', '20151612204', 'admin', '订阅课程:1024设计', '0:0:0:0:0:0:0:1', '2021-08-12 15:59:21', null); COMMIT; -- ---------------------------- -- Table structure for `message` -- ---------------------------- DROP TABLE IF EXISTS `message`; CREATE TABLE `message` ( `courseid` int NOT NULL DEFAULT '0', `userid` varchar(100) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `message` -- ---------------------------- BEGIN; INSERT INTO `message` VALUES ('3', '201808240857431128'), ('6', '201808231058301205'), ('4', '20151612204'), ('2', '201809030750151429'), ('2', '201809061049051592'), ('2', '201808240857431128'), ('6', '201808240857431128'), ('4', '201809030750151429'), ('5', '201808240857431128'), ('1', '201809061049051592'), ('3', '201808231058301205'), ('4', '201808231058301205'), ('2', '201810161045371069'), ('6', '201810161901381601'), ('5', '20151612204'), ('3', '20151612204'); COMMIT; -- ---------------------------- -- Table structure for `review` -- ---------------------------- DROP TABLE IF EXISTS `review`; CREATE TABLE `review` ( `reviewid` char(255) NOT NULL, `context` char(255) DEFAULT NULL, `courseid` int DEFAULT NULL, `username` char(255) DEFAULT NULL, `time` datetime DEFAULT NULL, `lable` char(255) DEFAULT NULL, `sex` char(50) DEFAULT NULL, `vip` int DEFAULT NULL, PRIMARY KEY (`reviewid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `review` -- ---------------------------- BEGIN; INSERT INTO `review` VALUES ('201809060327341776', 'fgfdgdsgg', '2', 'zzz', '2018-09-06 15:34:27', '4', 'Female', '1'), ('201809060414381493', '钱花的有点多', '1', '雷宇锋', '2018-09-06 16:38:14', '0', null, '1'), ('201809060423031483', '这课不错', '4', 'admin', '2018-09-06 16:03:23', '2', 'Male', '1'), ('201809060444041617', '刷好评', '4', 'adm', '2018-09-06 16:04:44', '4', null, '0'), ('201809060450041302', '刷好评', '4', 'adm', '2018-09-06 16:04:50', '4', null, '0'), ('201809060452031217', '这还不错', '4', 'adm', '2018-09-06 16:03:52', '3', null, '0'), ('201809060457021559', '这课不错', '5', 'admin', '2018-09-06 16:02:57', '2', 'Male', '1'), ('201810151532321876', '测试测试!!!', '6', '1823544517', '2018-10-15 15:32:32', '3', 'Male', '1'), ('201810151554191404', 'en ?', '3', '1823544517', '2018-10-15 15:19:54', '2', 'Male', '1'), ('201810161036391342', '美太太', '3', 'abc', '2018-10-16 10:39:36', '4', 'Female', '1'), ('201810161522301059', '测试', '4', '1823544517', '2018-10-16 15:30:22', '4', 'Male', '1'), ('201810161530351701', 'en 很不错', '3', 'abc', '2018-10-16 15:35:30', '0', 'Female', '1'), ('201810161545271907', '测试测试', '4', '1823544517', '2018-10-16 15:27:45', '4', 'Male', '1'), ('201810161902561206', '', '2', '96321', '2018-10-16 19:02:56', '4', 'Male', '1'), ('201810161903551373', '6666', '6', '96321', '2018-10-16 19:03:55', '4', 'Male', '1'), ('201810291609501589', '还行', '2', 'admin', '2018-10-29 16:09:50', '4', 'Male', '1'), ('202108090918061689', '', '5', 'admin', '2021-08-09 09:18:06', '1', 'Male', '1'); COMMIT; -- ---------------------------- -- Table structure for `user` -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` varchar(100) NOT NULL DEFAULT '', `sex` varchar(50) DEFAULT NULL, `phone` varchar(200) DEFAULT NULL, `mail` varchar(200) DEFAULT NULL, `vx` varchar(200) DEFAULT NULL, `nickname` varchar(200) DEFAULT NULL, `username` varchar(200) DEFAULT NULL, `password` varchar(200) DEFAULT NULL, `mission` varchar(500) DEFAULT NULL, `buycase` varchar(200) DEFAULT NULL, `mycase` varchar(200) DEFAULT NULL, `collect` varchar(200) DEFAULT NULL, `education` varchar(200) DEFAULT NULL, `vip` datetime DEFAULT NULL, `fristtime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; -- ---------------------------- -- Records of `user` -- ---------------------------- BEGIN; INSERT INTO `user` VALUES ('20151612204', 'Male', '18235447109', '<EMAIL>', '1111', '杨式人', 'admin', 'admin', 'admin', null, null, '458500', '高中/中专', '2033-10-01 19:57:53', null), ('201808100710171565', 'Female', '18235447109', '<EMAIL>', null, null, 'admin1', 'admin', null, null, null, '500', null, null, '2018-08-10 19:17:10'), ('201808100930501831', 'Male', '18235447109', '<EMAIL>', '1111111111111111111', '张三', 'zhangsan', 'asdasd', null, null, null, '0', '本科/大专', '2019-09-01 20:41:04', '2018-08-10 09:50:30'), ('201808101154331492', 'Female', '1111111111111', '<EMAIL>', null, null, 'zhazhabi', 'zxcvbnm', null, null, null, '500', null, null, '2018-08-10 11:33:54'), ('201808230425131682', null, '123456789', '125486', '15846', 'bad', 'bb', '123456', null, null, null, '500', '研究生以上', null, '2018-08-23 16:13:25'), ('201808230439101712', null, null, null, null, null, '18235445172', '1111', null, null, null, '500', null, null, '2018-08-23 16:10:39'), ('201808231058301205', 'Male', '12345689', '<EMAIL>', '784554asdd', '雷', '1823544517', '123654', null, '0', null, '7000', '本科/大专', '2019-10-15 15:31:58', '2018-08-23 10:30:58'), ('201808240857431128', 'Female', '12345678907assa', '<EMAIL>', '4dgde', 'zzzgf', 'zzz', '12345', null, null, null, '0', '研究生以上', '2023-01-06 15:33:03', '2018-08-24 08:43:57'), ('201808241105291520', null, null, null, null, null, '1823544517111111111111', '123456', null, null, null, '500', null, null, '2018-08-24 11:29:05'), ('201808241117291016', null, null, null, null, null, '182354451722222222222', '123456', null, null, null, '500', null, null, '2018-08-24 11:29:17'), ('201808241149281125', null, null, null, null, null, '18235445171111', '123456', null, null, null, '500', null, null, '2018-08-24 11:28:49'), ('201809030750151429', null, null, null, null, null, 'adm', '123', null, null, null, '500', null, null, '2018-09-03 19:15:50'), ('201809061018111546', 'Male', '110', '<EMAIL>', 'js666', 'js', 'js', 'js666', null, null, null, '10000', '研究生以上', '2020-03-06 10:15:16', '2018-09-06 10:11:18'), ('201809061049051592', null, null, null, null, null, '雷宇锋', '110', null, null, null, '0', null, '2018-12-06 16:37:39', '2018-09-06 10:05:49'), ('201809061051011416', null, null, null, null, null, 'sdsd', '123', null, null, null, '500', null, null, '2018-09-06 10:01:51'), ('201809061055001264', null, null, null, null, null, 'aaa', '123', null, null, null, '500', null, null, '2018-09-06 10:00:55'), ('201809061108071033', 'Female', '12123', '<EMAIL>', null, null, '111', 'qweqwe', null, null, null, '500', null, null, '2018-09-06 11:07:08'), ('201810161045371069', 'Female', '13096613748', '872486471', '1223', '去玩儿', 'abc', '123456', null, '0', null, '0', '研究生以上', '2021-05-16 10:38:27', '2018-10-16 10:37:45'), ('201810161901381601', 'Male', '96321', '96321', '96321', '96321', '96321', '96321', null, '0', null, '0', '研究生以上', '2018-11-16 19:03:40', '2018-10-16 19:01:38'); COMMIT; SET FOREIGN_KEY_CHECKS = 1;