sql stringlengths 6 1.05M |
|---|
<reponame>FelixMundial/filehub
CREATE DATABASE IF NOT EXISTS `filehub`;
CREATE TABLE IF NOT EXISTS `filehub`.`library`
(
`library_id` INT AUTO_INCREMENT
PRIMARY KEY,
`library_name` VARCHAR(32) NOT NULL COMMENT '可重复',
`library_desc` VARCHAR(256) NULL,
`owner_uid` INT NOT NULL,
`followers_count` INT DEFAULT 0 NOT NULL,
`library_url` VARCHAR(128) NOT NULL,
`privacy_type` TINYINT(1) DEFAULT 0 NOT NULL COMMENT 'is_private',
`library_creation_time` DATETIME NOT NULL,
`library_creation_uid` INT NOT NULL,
`library_last_update_time` DATETIME NOT NULL,
`library_last_update_uid` INT NOT NULL
)
COMMENT '文档库';
INSERT INTO `filehub`.`library` (`library_id`, `library_name`, `library_desc`, `owner_uid`, `followers_count`,
`library_url`, `privacy_type`, `library_creation_time`, `library_creation_uid`,
`library_last_update_time`, `library_last_update_uid`)
VALUES (1, 'tiny_spring', 'Tiny Spring', 2, 10, '/sammy/tiny_spring', 0, '2018-09-15 16:47:33', 2,
'2019-04-15 16:47:37', 2);
INSERT INTO `filehub`.`library` (`library_id`, `library_name`, `library_desc`, `owner_uid`, `followers_count`,
`library_url`, `privacy_type`, `library_creation_time`, `library_creation_uid`,
`library_last_update_time`, `library_last_update_uid`)
VALUES (2, 'leetcode-animations', 'Leetcode in Animations', 3, 899, '/123456/leetcode_animations', 0,
'2016-10-15 16:49:13', 3, '2020-02-15 05:49:19', 3);
INSERT INTO `filehub`.`library` (`library_id`, `library_name`, `library_desc`, `owner_uid`, `followers_count`,
`library_url`, `privacy_type`, `library_creation_time`, `library_creation_uid`,
`library_last_update_time`, `library_last_update_uid`)
VALUES (3, 'test123', 'Test123', 2, 0, '/sammy/test123', 1, '2020-02-21 16:51:15', 2, '2020-03-23 11:51:31', 2);
CREATE TABLE IF NOT EXISTS `filehub`.`file`
(
`file_id` INT AUTO_INCREMENT
PRIMARY KEY,
`file_real_name` VARCHAR(128) NOT NULL,
`file_display_name` VARCHAR(32) NOT NULL,
`file_desc` VARCHAR(256) NULL,
`download_count` INT DEFAULT 0 NOT NULL,
`file_url` VARCHAR(128) NOT NULL,
`privacy_type` TINYINT(1) DEFAULT 0 NOT NULL COMMENT 'is_private',
`file_type` VARCHAR(16) NOT NULL,
`storage_type` TINYINT(1) NOT NULL,
`sync_type` TINYINT(1) NOT NULL,
`file_size` INT NULL COMMENT '文件大小(字节)',
`file_creation_time` DATETIME NOT NULL,
`file_creation_uid` INT NOT NULL,
`file_last_update_time` DATETIME NOT NULL,
`file_last_update_uid` INT NOT NULL
)
COMMENT '文件';
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (13, 'c7c0fa77-f569-4b9c-a1be-417e38fe99d4_gone with the wind.txt', 'Gone with the Wind.txt', '', 6,
'/file/c7c0fa77-f569-4b9c-a1be-417e38fe99d4_gone with the wind.txt', 0, 'text', 1, 1, NULL,
'2020-04-16 08:14:32', 3, '2020-04-16 08:14:32', 3);
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (14, '7ac806e5-b730-4ed2-9cf8-a820df41559c_pom.xml', 'pom.xml', '', 6,
'/file/7ac806e5-b730-4ed2-9cf8-a820df41559c_pom.xml', 0, 'xml', 1, 1, NULL, '2020-04-16 08:15:23', 2,
'2020-04-16 08:15:23', 2);
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (15, '0fa5c91c-1bcf-4e91-9bc5-20d82257bb59_init.lua', 'init.lua', '', 6,
'/file/0fa5c91c-1bcf-4e91-9bc5-20d82257bb59_init.lua', 0, 'lua', 1, 1, NULL, '2020-04-16 08:15:31', 2,
'2020-04-16 08:15:31', 2);
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (16, 'a35ec799-ccf9-41ff-9bed-47c0796344f5_gone with the wind.txt', 'application.yml', '', 9,
'/file/a35ec799-ccf9-41ff-9bed-47c0796344f5_gone with the wind.txt', 0, 'yaml', 1, 1, NULL,
'2020-04-30 09:28:42', 3, '2020-04-30 09:28:42', 3);
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (17, 'f007d1ea-fd05-40b8-92f7-d0e49f42e0c7_pom.xml', '__init__.py', '', 8,
'/file/f007d1ea-fd05-40b8-92f7-d0e49f42e0c7_pom.xml', 0, 'python', 1, 1, NULL, '2020-04-30 09:28:42', 2,
'2020-04-30 09:28:42', 2);
INSERT INTO `filehub`.`file` (`file_id`, `file_real_name`, `file_display_name`, `file_desc`, `download_count`,
`file_url`, `privacy_type`, `file_type`, `storage_type`, `sync_type`, `file_size`,
`file_creation_time`, `file_creation_uid`, `file_last_update_time`,
`file_last_update_uid`)
VALUES (18, 'e4714001-661d-4da8-9fd4-809435851b53_init.lua', 'main.js', '', 2,
'/file/e4714001-661d-4da8-9fd4-809435851b53_init.lua', 0, 'javascript', 1, 1, NULL, '2020-04-30 09:28:42', 2,
'2020-04-30 09:28:42', 2);
CREATE TABLE IF NOT EXISTS `filehub`.`library_collaborator`
(
`id` INT AUTO_INCREMENT
PRIMARY KEY,
`library_id` INT NOT NULL,
`uid` INT NOT NULL,
CONSTRAINT `library_collaborator_library_id_uindex`
UNIQUE (`library_id`)
)
COMMENT '文档库协作者关联表';
CREATE INDEX `library_collaborator_uid_index`
ON `library_collaborator` (`uid`);
INSERT INTO `filehub`.`library_collaborator` (`id`, `library_id`, `uid`)
VALUES (1, 1, 2);
INSERT INTO `filehub`.`library_collaborator` (`id`, `library_id`, `uid`)
VALUES (2, 2, 3);
INSERT INTO `filehub`.`library_collaborator` (`id`, `library_id`, `uid`)
VALUES (3, 3, 2);
CREATE TABLE IF NOT EXISTS `filehub`.`library_file`
(
`id` INT AUTO_INCREMENT
PRIMARY KEY,
`library_id` INT NOT NULL,
`file_id` INT NOT NULL,
CONSTRAINT `library_file_file_id_uindex`
UNIQUE (`file_id`)
)
COMMENT '文档库文件关联表';
INSERT INTO `filehub`.`library_file` (`id`, `library_id`, `file_id`)
VALUES (1, 3, 13);
INSERT INTO `filehub`.`library_file` (`id`, `library_id`, `file_id`)
VALUES (2, 2, 14);
INSERT INTO `filehub`.`library_file` (id, library_id, file_id) VALUES (3, 3, 15);
INSERT INTO filehub.library_file (id, library_id, file_id) VALUES (4, 3, 16);
INSERT INTO filehub.library_file (id, library_id, file_id) VALUES (5, 2, 17);
INSERT INTO filehub.library_file (id, library_id, file_id) VALUES (6, 3, 18); |
CREATE TABLE "table1" (
"uri" character varying(100) NOT NULL,
"val" character varying(100),
"code" integer,
"role" character varying(100),
);
INSERT INTO "table1" VALUES ('uri1', 'A', '1', 'P');
INSERT INTO "table1" VALUES ('uri2', 'B', '2', 'P');
INSERT INTO "table1" VALUES ('uri3', 'A', '2', 'Q');
INSERT INTO "table1" VALUES ('uri4', 'B', '2', 'Q');
ALTER TABLE "table1"
ADD CONSTRAINT "table1_pkey" PRIMARY KEY ("uri");
|
SET REFERENTIAL_INTEGRITY FALSE;
drop table if exists e_user;
SET REFERENTIAL_INTEGRITY TRUE;
|
#standardSQL
# Adoption of top CDNs
SELECT
client,
cdn,
COUNT(0) AS freq,
total,
COUNT(0) / total AS pct
FROM (
SELECT
_TABLE_SUFFIX AS client,
COUNT(0) AS total,
ARRAY_CONCAT_AGG(SPLIT(cdn, ', ')) AS cdn_list
FROM
`httparchive.summary_pages.2021_07_01_*`
GROUP BY
client),
UNNEST(cdn_list) AS cdn
GROUP BY
client,
cdn,
total
ORDER BY
pct DESC
|
<gh_stars>1-10
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 08, 2015 at 04:32 PM
-- Server version: 10.0.15-MariaDB-1~trusty-log
-- PHP Version: 5.5.9-1ubuntu4.5
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: `numingle`
--
-- --------------------------------------------------------
--
-- Table structure for table `bans`
--
CREATE TABLE IF NOT EXISTS `bans` (
`banned` tinyint(1) NOT NULL COMMENT 'boolean if ban is active',
`ip` varchar(40) NOT NULL COMMENT 'IP address',
`time` int(32) NOT NULL COMMENT 'UNIX timestamp when ban created',
`license_key` varchar(64) NOT NULL COMMENT 'license key banned (optional)',
`unique_device_id` varchar(64) NOT NULL COMMENT 'unique device ID (optional)',
`unique_global_device_id` varchar(64) NOT NULL COMMENT 'unique global device ID (optional)',
`reason` text COMMENT 'reason for ban'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `conversations`
--
CREATE TABLE IF NOT EXISTS `conversations` (
`id` varchar(32) NOT NULL COMMENT 'numingle conversation ID',
`omegle_id` varchar(128) NOT NULL COMMENT 'omegle session ID',
`session_type` varchar(32) NOT NULL COMMENT 'string session type',
`server` varchar(64) NOT NULL COMMENT 'numingle server',
`omegle_server` varchar(64) NOT NULL COMMENT 'omegle server',
`ip` varchar(40) NOT NULL COMMENT 'device IP address',
`unique_device_id` varchar(64) NOT NULL COMMENT 'unique device ID',
`unique_global_device_id` varchar(64) NOT NULL COMMENT 'unique global device ID',
`found_stranger` tinyint(1) NOT NULL COMMENT 'true if stranger found',
`start_time` int(20) NOT NULL COMMENT 'time conversation started',
`found_time` int(20) NOT NULL COMMENT 'time stranger was found',
`end_time` int(20) NOT NULL COMMENT 'time conversation ended',
`question` text COMMENT 'question asked/answered',
`messages_sent` int(10) NOT NULL COMMENT 'messages sent',
`messages_received` int(10) NOT NULL COMMENT 'messages received',
`client_duration` int(10) NOT NULL COMMENT 'client-determined duration',
`server_duration` int(10) NOT NULL COMMENT 'server-determined duration',
`fate` tinyint(1) NOT NULL COMMENT 'fate of conversation; 0 = user disconnected, 1 = stranger disconnected'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `convo_events`
--
CREATE TABLE IF NOT EXISTS `convo_events` (
`id` varchar(32) NOT NULL COMMENT 'numingle conversation ID',
`event` varchar(64) NOT NULL COMMENT 'the event name',
`value` text COMMENT 'an optional value',
`source` varchar(32) NOT NULL COMMENT 'how this conversation was obtained'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Conversation contents';
-- --------------------------------------------------------
--
-- Table structure for table `convo_interests`
--
CREATE TABLE IF NOT EXISTS `convo_interests` (
`id` varchar(32) NOT NULL COMMENT 'numingle conversation ID',
`group_supplied` varchar(32) NOT NULL COMMENT 'group name supplied',
`interest_supplied` varchar(32) NOT NULL COMMENT 'standalone interest supplied',
`interest_matched` varchar(32) NOT NULL COMMENT 'interest matched with stranger'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Interests and groups of conversations';
-- --------------------------------------------------------
--
-- Table structure for table `groups`
--
CREATE TABLE IF NOT EXISTS `groups` (
`name` varchar(32) NOT NULL COMMENT 'name of group',
`popularity` int(10) NOT NULL COMMENT 'popularity number',
`display_title` varchar(32) NOT NULL COMMENT 'display title',
`display_subtitle` varchar(64) NOT NULL COMMENT 'display subtitle',
`style_border_color` varchar(32) NOT NULL COMMENT 'box border color',
`style_background_color` varchar(32) NOT NULL COMMENT 'box background color',
`style_background_image` varchar(128) NOT NULL COMMENT 'box background image URL',
`style_font_size` tinyint(4) NOT NULL COMMENT 'display title font size',
`style_text_color` varchar(24) NOT NULL COMMENT 'display title and subtitle text color',
`style_shadow_opacity` float NOT NULL COMMENT 'opacity of text shadows',
`style_shadow_radius` float NOT NULL COMMENT 'radius of text shadow',
`style_shadow_offset_x` int(3) NOT NULL COMMENT 'x offset of text shadow',
`style_shadow_offset_y` int(3) NOT NULL COMMENT 'y offset of text shadow',
`create_time` int(32) NOT NULL COMMENT 'UNIX timestamp at which the group was created'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Trend group information';
-- --------------------------------------------------------
--
-- Table structure for table `group_relations`
--
CREATE TABLE IF NOT EXISTS `group_relations` (
`group1` varchar(32) NOT NULL COMMENT 'first group',
`group2` varchar(32) NOT NULL COMMENT 'second group',
`interest` varchar(32) NOT NULL COMMENT 'interest',
`time` int(10) NOT NULL COMMENT 'relation create time'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Group interest relations';
-- --------------------------------------------------------
--
-- Table structure for table `interests`
--
CREATE TABLE IF NOT EXISTS `interests` (
`group` varchar(32) NOT NULL COMMENT 'name of group',
`interest` varchar(64) NOT NULL COMMENT 'interest name (no hashtag)',
`time` int(32) NOT NULL COMMENT 'time at which interest was added to group'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Interests in trend groups';
-- --------------------------------------------------------
--
-- Table structure for table `logs`
--
CREATE TABLE IF NOT EXISTS `logs` (
`id` varchar(32) NOT NULL COMMENT 'numingle conversation ID',
`server` varchar(64) NOT NULL COMMENT 'numingle server',
`ip` varchar(40) NOT NULL COMMENT 'log device IP address',
`unique_device_id` varchar(64) NOT NULL COMMENT 'unique device ID',
`unique_global_device_id` varchar(64) NOT NULL COMMENT 'unique global device ID',
`time` int(20) NOT NULL COMMENT 'time log submitted'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='conversation log submissions';
-- --------------------------------------------------------
--
-- Table structure for table `registry`
--
CREATE TABLE IF NOT EXISTS `registry` (
`license_key` varchar(32) NOT NULL COMMENT 'current license key of device',
`registration_key` varchar(64) NOT NULL COMMENT 'key generated to register device',
`unique_device_id` varchar(64) NOT NULL COMMENT 'unique device ID',
`unique_global_device_id` varchar(64) NOT NULL COMMENT 'unique global device ID',
`ip` varchar(40) NOT NULL COMMENT 'IP addresses at which device was registered',
`server` varchar(64) NOT NULL COMMENT 'server on which the device was registered',
`model` varchar(64) NOT NULL COMMENT 'device model identifier',
`common_name` varchar(64) NOT NULL COMMENT 'device common name',
`short_version` varchar(24) NOT NULL COMMENT 'app bundle short version',
`bundle_version_key` varchar(24) NOT NULL COMMENT 'app bundle version key',
`time` int(32) NOT NULL COMMENT 'time at which device was registered',
UNIQUE KEY `unique_global_device_id` (`unique_global_device_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Device license keys';
-- --------------------------------------------------------
--
-- Table structure for table `reports`
--
CREATE TABLE IF NOT EXISTS `reports` (
`id` varchar(32) NOT NULL COMMENT 'numingle conversation ID',
`server` varchar(64) NOT NULL COMMENT 'numingle server',
`ip` varchar(40) NOT NULL COMMENT 'reporter IP address',
`unique_device_id` varchar(64) NOT NULL COMMENT 'unique device ID',
`unique_global_device_id` varchar(64) NOT NULL COMMENT 'unique global device ID',
`reason` text COMMENT 'report comments',
`time` int(20) NOT NULL COMMENT 'time reported'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Inappropriate conversation reports';
-- --------------------------------------------------------
--
-- Table structure for table `servers`
--
CREATE TABLE IF NOT EXISTS `servers` (
`name` varchar(50) NOT NULL,
`index` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL COMMENT 'server enabled',
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Client server list';
-- --------------------------------------------------------
--
-- Table structure for table `stats_peak`
--
CREATE TABLE IF NOT EXISTS `stats_peak` (
`count` int(32) NOT NULL COMMENT 'peak number of users online',
`time` int(32) NOT NULL COMMENT 'time at which peak user count was submitted',
`num` int(10) NOT NULL COMMENT 'peak user count record identifier number',
UNIQUE KEY `num` (`num`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Peak user count statistic';
-- --------------------------------------------------------
--
-- Table structure for table `templates`
--
CREATE TABLE IF NOT EXISTS `templates` (
`name` varchar(32) NOT NULL COMMENT 'template name',
`content` text COMMENT 'template content source',
`time_added` int(20) NOT NULL COMMENT 'time added'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='HTML templates';
-- --------------------------------------------------------
--
-- Table structure for table `welcome`
--
CREATE TABLE IF NOT EXISTS `welcome` (
`message` varchar(32) NOT NULL COMMENT 'welcome message',
`time` int(32) NOT NULL COMMENT 'time added'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='welcome messages';
/*!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.6.6deb5ubuntu0.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Mar 07, 2022 at 11:08 AM
-- Server version: 5.7.37-0ubuntu0.18.04.1
-- PHP Version: 7.4.28
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 utf8mb4 */;
--
-- Database: `blog`
--
-- --------------------------------------------------------
--
-- Table structure for table `articles`
--
CREATE TABLE `articles` (
`id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`content` longtext NOT NULL,
`summary` longtext NOT NULL,
`image` varchar(255) DEFAULT NULL,
`authorId` int(11) NOT NULL,
`created` datetime NOT NULL,
`updated` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `articles`
--
INSERT INTO `articles` (`id`, `title`, `content`, `summary`, `image`, `authorId`, `created`, `updated`) VALUES
(95, 'Article 1', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', '1.jpg', 76, '2022-03-06 13:08:22', '2022-03-06 13:08:22'),
(99, 'Article 2', 'Where does it come from?\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.', 'Where does it come from?\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. ', '', 76, '2022-03-06 20:53:03', '2022-03-06 20:53:03'),
(101, 'Article 3', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable.', '', 76, '2022-03-06 20:55:10', '2022-03-06 20:55:10'),
(103, 'Article Test', 'What is Lorem Ipsum?\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n', 'What is Lorem Ipsum?\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. ', 'Skanderborg-4.jpg', 76, '2022-03-06 20:58:09', '2022-03-06 23:39:52'),
(108, 'Article 7', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable.', NULL, 76, '2022-03-06 23:07:20', '2022-03-06 23:07:20'),
(111, 'My article 1', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', 'Where can I get some?\r\n\r\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable.', 'perceptual-standard.jpg', 82, '2022-03-07 11:05:19', '2022-03-07 11:05:19'),
(113, 'My article 2', 'Where does it come from?\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.', 'Where does it come from?\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.', '500px_blog_licensing_commercial_appeal.jpg', 82, '2022-03-07 11:06:04', '2022-03-07 11:06:04');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`FullName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `email`, `password`, `FullName`, `updated`, `created`) VALUES
(76, '<EMAIL>', <PASSWORD>', '<PASSWORD>', '2022-03-05 22:33:33', '2022-03-05 22:33:33'),
(82, '<EMAIL>', <PASSWORD>', 'Igna <PASSWORD>mova', '2022-03-07 09:24:39', '2022-03-07 09:24:39');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `articles`
--
ALTER TABLE `articles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `id` (`id`),
ADD UNIQUE KEY `created` (`created`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `articles`
--
ALTER TABLE `articles`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=115;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83;
/*!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 */;
|
UPDATE `menu` SET menu.name = 'System' WHERE name = 'Settings'; |
<reponame>Michal3456/4bti
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Czas generowania: 09 Gru 2021, 16:39
-- Wersja serwera: 10.4.21-MariaDB
-- Wersja PHP: 8.0.12
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 */;
--
-- Baza danych: `fotobudka`
--
-- --------------------------------------------------------
--
-- Struktura tabeli dla tabeli `photos`
--
CREATE TABLE `photos` (
`id` int(10) UNSIGNED NOT NULL,
`name` text COLLATE utf8_polish_ci NOT NULL,
`link` text COLLATE utf8_polish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci;
--
-- Indeksy dla zrzutów tabel
--
--
-- Indeksy dla tabeli `photos`
--
ALTER TABLE `images`
ADD UNIQUE KEY `id_image` (`id`) USING BTREE;
--
-- AUTO_INCREMENT dla zrzuconych tabel
--
--
-- AUTO_INCREMENT dla tabeli `photos`
--
ALTER TABLE `photos`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
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>sftlk.sql
-- Хост: 127.0.0.1:3306
-- Время создания: Май 28 2018 г., 15:35
-- Версия сервера: 5.5.50-log
-- Версия PHP: 7.0.8
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 utf8mb4 */;
--
-- База данных: `sft-lk`
--
-- --------------------------------------------------------
--
-- Структура таблицы `admins`
--
CREATE TABLE IF NOT EXISTS `admins` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `applications`
--
CREATE TABLE IF NOT EXISTS `applications` (
`id` int(10) unsigned NOT NULL,
`applicator_id` int(10) unsigned NOT NULL,
`consigneer_id` int(10) unsigned NOT NULL,
`number` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`period` date NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
`provider_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `applications`
--
INSERT INTO `applications` (`id`, `applicator_id`, `consigneer_id`, `number`, `period`, `status`, `provider_id`, `created_at`, `updated_at`) VALUES
(1, 2, 1, '01/106-152', '2018-06-30', 'new', 1, '2018-05-28 04:35:30', '2018-05-28 04:35:30'),
(2, 2, 1, '01/122-166', '2018-06-30', 'new', 1, '2018-05-28 04:55:25', '2018-05-28 04:55:25'),
(3, 2, 1, '01/105-128', '2018-06-30', 'new', 1, '2018-05-28 04:59:37', '2018-05-28 04:59:37'),
(4, 6, 1, '01/156-142', '2018-06-30', 'new', 1, '2018-05-28 05:07:05', '2018-05-28 05:07:05'),
(5, 2, 1, '01/147-103', '2018-06-30', 'new', 1, '2018-05-28 05:20:11', '2018-05-28 05:20:11'),
(6, 2, 1, '01/106-171', '2018-06-30', 'new', 1, '2018-05-28 05:44:28', '2018-05-28 05:44:28'),
(7, 2, 1, '01/135-172', '2018-06-30', 'new', 1, '2018-05-28 05:56:08', '2018-05-28 05:56:08'),
(8, 2, 1, '01/163-152', '2018-06-30', 'new', 1, '2018-05-28 06:03:44', '2018-05-28 06:03:44'),
(9, 2, 1, '01/102-187', '2018-06-30', 'new', 1, '2018-05-28 07:03:58', '2018-05-28 07:03:58'),
(10, 2, 1, '01/161-122', '2018-06-30', 'new', 1, '2018-05-28 07:10:11', '2018-05-28 07:10:11'),
(11, 2, 2, '01/181-168', '2018-08-31', 'new', 1, '2018-05-28 07:31:33', '2018-05-28 07:31:33'),
(12, 2, 1, '01/145-168', '2018-06-30', 'new', 1, '2018-05-28 07:44:57', '2018-05-28 07:44:57'),
(13, 2, 2, '01/191-129', '2019-11-30', 'new', 1, '2018-05-28 08:03:40', '2018-05-28 08:03:40'),
(14, 2, 2, '01/112-183', '2018-06-30', 'new', 1, '2018-05-28 08:20:03', '2018-05-28 08:20:03'),
(15, 2, 1, '01/162-109', '2018-06-30', 'new', 1, '2018-05-28 08:25:09', '2018-05-28 08:25:09'),
(16, 2, 1, '01/101-191', '2018-06-30', 'new', 1, '2018-05-28 08:25:13', '2018-05-28 08:25:13'),
(17, 2, 1, '01/166-165', '2018-06-30', 'new', 1, '2018-05-28 08:28:05', '2018-05-28 08:28:05'),
(18, 2, 2, '01/117-200', '2018-06-30', 'new', 1, '2018-05-28 08:28:16', '2018-05-28 08:28:16'),
(19, 2, 1, '01/146-160', '2018-06-30', 'new', 1, '2018-05-28 08:29:09', '2018-05-28 08:29:09');
-- --------------------------------------------------------
--
-- Структура таблицы `applicators`
--
CREATE TABLE IF NOT EXISTS `applicators` (
`id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`counter_id` int(10) unsigned NOT NULL,
`cooperation_id` int(10) unsigned NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `applicators`
--
INSERT INTO `applicators` (`id`, `user_id`, `counter_id`, `cooperation_id`, `link_1s`, `created_at`, `updated_at`) VALUES
(2, 2, 1, 2, NULL, NULL, '2018-05-28 04:24:41'),
(3, 3, 1, 3, NULL, NULL, '2018-05-27 14:58:26'),
(6, 6, 1, 3, NULL, '2018-05-25 03:05:16', '2018-05-28 04:13:33');
-- --------------------------------------------------------
--
-- Структура таблицы `consigneers`
--
CREATE TABLE IF NOT EXISTS `consigneers` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`INN` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`KPP` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`delivery_time` date DEFAULT NULL,
`roll_diameter` int(11) DEFAULT NULL,
`core_diameter` int(11) DEFAULT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`counter_id` int(10) unsigned NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `consigneers`
--
INSERT INTO `consigneers` (`id`, `name`, `address`, `INN`, `KPP`, `delivery_time`, `roll_diameter`, `core_diameter`, `link_1s`, `created_at`, `updated_at`, `counter_id`) VALUES
(1, 'Грузополучатель 1 Контрагента 1', 'Адрес Грузополучателя', '2343423433', '34343434', '2018-05-30', 50, 20, NULL, NULL, NULL, 1),
(2, 'Грузополучатель 2 Контрагента 1', 'Адрес Грузополучателя', '3647364736', '4545454', '2018-05-14', 40, 50, NULL, NULL, NULL, 1),
(3, 'Грузополучатель 3 Контрагента 1', 'Адрес Грузополучателя', '8923343433', '3343434', '2018-05-30', 50, 20, NULL, NULL, NULL, 1),
(4, 'Грузополучатель 1 Контрагента 2', 'Адрес Грузополучателя', '1343423433', '34343434', '2018-05-30', 50, 20, NULL, NULL, NULL, 2),
(5, 'Грузополучатель 2 Контрагента 2', 'Адрес Грузополучателя', '2647364736', '4545454', '2018-05-14', 40, 50, NULL, NULL, NULL, 2),
(6, 'Грузополучатель 3 Контрагента 2', 'Адрес Грузополучателя', '1923343433', '3343434', '2018-05-30', 50, 20, NULL, NULL, NULL, 2);
-- --------------------------------------------------------
--
-- Структура таблицы `consigneer_deliveries`
--
CREATE TABLE IF NOT EXISTS `consigneer_deliveries` (
`id` int(10) unsigned NOT NULL,
`consigneer_id` int(10) unsigned NOT NULL,
`delivery_id` int(10) unsigned NOT NULL,
`price` int(11) DEFAULT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `consigneer_deliveries`
--
INSERT INTO `consigneer_deliveries` (`id`, `consigneer_id`, `delivery_id`, `price`, `link_1s`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 10000, NULL, NULL, NULL),
(2, 1, 2, 30000, NULL, NULL, NULL),
(3, 1, 3, 40000, NULL, NULL, NULL),
(4, 1, 4, 50000, NULL, NULL, NULL),
(5, 2, 2, 35000, NULL, NULL, NULL),
(6, 2, 3, 40000, NULL, NULL, NULL),
(7, 2, 4, 45000, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `contactqueries`
--
CREATE TABLE IF NOT EXISTS `contactqueries` (
`id` int(10) unsigned NOT NULL,
`theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`querytext` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`applicator_id` int(10) unsigned DEFAULT NULL,
`file_id` int(10) unsigned DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `contactqueries`
--
INSERT INTO `contactqueries` (`id`, `theme`, `querytext`, `created_at`, `updated_at`, `link_1s`, `applicator_id`, `file_id`) VALUES
(1, 'Изменение заявки', 'Новое обращение', '2018-05-25 02:13:19', '2018-05-25 02:13:19', NULL, NULL, NULL),
(2, 'Изменение заявки', 'Иыщвыв', '2018-05-25 02:17:28', '2018-05-25 02:17:28', NULL, NULL, NULL),
(3, 'Изменение заявки', 'ивоыаооыва', '2018-05-25 02:19:45', '2018-05-25 02:19:45', NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `cooperations`
--
CREATE TABLE IF NOT EXISTS `cooperations` (
`id` int(10) unsigned NOT NULL,
`contract_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`contract_period` date NOT NULL,
`monthly_min_volume` int(11) NOT NULL,
`monthly_max_volume` int(11) NOT NULL,
`delayed_payment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`bonus` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`counter_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `cooperations`
--
INSERT INTO `cooperations` (`id`, `contract_number`, `contract_period`, `monthly_min_volume`, `monthly_max_volume`, `delayed_payment`, `currency`, `description`, `bonus`, `link_1s`, `counter_id`, `created_at`, `updated_at`) VALUES
(1, '12345', '2018-05-23', 10, 50, '1', 'рубли', 'Условия сотрудничества 1 актуальные', 'нет', NULL, 1, NULL, NULL),
(2, '12345', '2018-05-14', 10, 50, '1', 'рубли', 'Условия сотрудничества 1 просрочены', 'нет', NULL, 1, NULL, NULL),
(3, '22222', '2018-05-25', 10, 20, '3', 'рубли', 'Условия сотрудничества 2 актуальные', 'нет', NULL, 2, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `cooperation_productranges`
--
CREATE TABLE IF NOT EXISTS `cooperation_productranges` (
`id` int(10) unsigned NOT NULL,
`cooperation_id` int(10) unsigned NOT NULL,
`productrange_id` int(10) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `counterparties`
--
CREATE TABLE IF NOT EXISTS `counterparties` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `counters`
--
CREATE TABLE IF NOT EXISTS `counters` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` text COLLATE utf8mb4_unicode_ci NOT NULL,
`INN` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`KPP` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`requisites` text COLLATE utf8mb4_unicode_ci NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`counterparty_id` int(10) unsigned DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `counters`
--
INSERT INTO `counters` (`id`, `name`, `address`, `INN`, `KPP`, `requisites`, `link_1s`, `created_at`, `updated_at`, `counterparty_id`) VALUES
(1, 'Контрагент 1', 'Адрес контрагента 1', '111111111', '11111', 'Реквизиты контрагента 1', NULL, NULL, NULL, NULL),
(2, 'Контрагент 2', 'Адрес контрагента 2', '222222222', '22222', 'Реквизиты контрагента 2', NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `deliveries`
--
CREATE TABLE IF NOT EXISTS `deliveries` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `deliveries`
--
INSERT INTO `deliveries` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'АВТО', NULL, NULL),
(2, 'ЖД', NULL, NULL),
(3, 'Авиа', NULL, NULL),
(4, 'Самовывоз', NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `files`
--
CREATE TABLE IF NOT EXISTS `files` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`applicator_id` int(10) unsigned DEFAULT NULL,
`admin_id` int(10) unsigned DEFAULT NULL,
`lunit_id` int(10) unsigned DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `lunits`
--
CREATE TABLE IF NOT EXISTS `lunits` (
`id` int(10) unsigned NOT NULL,
`number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`consigneer_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`transportunits_info` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
`volume_decada` tinyint(4) NOT NULL,
`volume` int(11) NOT NULL,
`plan_data` date NOT NULL,
`shipment_data` date NOT NULL,
`delivery_data` date NOT NULL,
`price` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `migrations`
--
CREATE TABLE IF NOT EXISTS `migrations` (
`id` int(10) unsigned NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(27, '2018_05_07_004948_create_users_table', 1),
(28, '2018_05_07_014529_create_counters_table', 1),
(29, '2018_05_07_060423_create_admins_table', 1),
(30, '2018_05_07_060630_create_counterparties_table', 1),
(31, '2018_05_07_064737_create_providers_table', 1),
(32, '2018_05_07_064840_create_deliveries_table', 1),
(33, '2018_05_07_072314_create_productranges_table', 1),
(34, '2018_05_07_072400_create_consigneers_table', 1),
(35, '2018_05_07_072500_create_cooperations_table', 1),
(36, '2018_05_07_072510_create_applicators_table', 1),
(37, '2018_05_07_072515_add_foreign_to_applicators', 1),
(38, '2018_05_07_072520_create_consigneer_deliveries_table', 1),
(39, '2018_05_07_074217_create_contactqueries_table', 1),
(40, '2018_05_07_132602_create_applications_table', 1),
(41, '2018_05_07_132800_create_product_applications_table', 1),
(42, '2018_05_07_133024_create_files_table', 1),
(43, '2018_05_08_054230_create_transportunits_table', 1),
(44, '2018_05_08_055725_create_lunits_table', 1),
(45, '2018_05_08_062032_add_foreign_to_contactqueries', 1),
(46, '2018_05_08_063655_add_foreign_counter_id_to_consigneers', 1),
(47, '2018_05_08_070607_add_foreign_to_files', 1),
(48, '2018_05_08_084156_add_foreign_counters_table', 1),
(49, '2018_05_18_170845_create_product_application_units_table', 1),
(50, '2018_05_18_171047_add_foreign_to_product_application_units', 1),
(51, '2018_05_18_183213_add_foreign_to_productranges', 1),
(52, '2018_05_21_051518_create_cooperation_productranges_table', 1),
(55, '2018_05_07_132700_create_order_applications_table', 2);
-- --------------------------------------------------------
--
-- Структура таблицы `order_applications`
--
CREATE TABLE IF NOT EXISTS `order_applications` (
`id` int(10) unsigned NOT NULL,
`volume_1` int(11) DEFAULT NULL,
`volume_2` int(11) DEFAULT NULL,
`volume_3` int(11) DEFAULT NULL,
`price` int(11) DEFAULT NULL,
`comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`productrange_id` int(10) unsigned NOT NULL,
`application_id` int(10) unsigned NOT NULL,
`consigneer_delivery_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `order_applications`
--
INSERT INTO `order_applications` (`id`, `volume_1`, `volume_2`, `volume_3`, `price`, `comment`, `productrange_id`, `application_id`, `consigneer_delivery_id`, `created_at`, `updated_at`) VALUES
(1, 10, NULL, 10, 200000, NULL, 1, 12, 1, '2018-05-28 07:48:42', '2018-05-28 07:48:42'),
(2, NULL, 20, NULL, 200000, NULL, 4, 12, 1, '2018-05-28 07:48:42', '2018-05-28 07:48:42'),
(3, 100, NULL, 10, 3850000, NULL, 1, 13, 5, '2018-05-28 08:13:07', '2018-05-28 08:13:07'),
(4, NULL, 10, NULL, 400000, NULL, 4, 13, 6, '2018-05-28 08:13:07', '2018-05-28 08:13:07'),
(5, 10, NULL, NULL, 350000, NULL, 1, 13, 5, '2018-05-28 08:17:02', '2018-05-28 08:17:02'),
(6, NULL, 10, NULL, 350000, NULL, 4, 13, 5, '2018-05-28 08:17:02', '2018-05-28 08:17:02'),
(7, NULL, NULL, 30, 300000, NULL, 2, 19, 1, '2018-05-28 08:29:20', '2018-05-28 08:29:20');
-- --------------------------------------------------------
--
-- Структура таблицы `productranges`
--
CREATE TABLE IF NOT EXISTS `productranges` (
`id` int(10) unsigned NOT NULL,
`brand` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`grammage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`format` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` int(11) NOT NULL,
`min_lot` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`provider_id` int(10) unsigned NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `productranges`
--
INSERT INTO `productranges` (`id`, `brand`, `grammage`, `format`, `price`, `min_lot`, `link_1s`, `created_at`, `updated_at`, `provider_id`) VALUES
(1, 'L1', '135', '2100', 0, '30', NULL, NULL, NULL, 1),
(2, 'L1', '200', '2100', 0, '50', NULL, NULL, NULL, 1),
(3, 'L2', '90', '2100', 0, '50', NULL, NULL, NULL, 2),
(4, 'L2', '90', '2100', 0, '50', NULL, NULL, NULL, 1),
(5, 'L2', '90', '2100', 0, '50', NULL, NULL, NULL, 3),
(6, 'L3', '80', '2200', 0, '30', NULL, NULL, NULL, 1);
-- --------------------------------------------------------
--
-- Структура таблицы `product_applications`
--
CREATE TABLE IF NOT EXISTS `product_applications` (
`id` int(10) unsigned NOT NULL,
`price` int(11) NOT NULL,
`productrange_id` int(10) unsigned NOT NULL,
`application_id` int(10) unsigned NOT NULL,
`consigneer_delivery_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `product_application_units`
--
CREATE TABLE IF NOT EXISTS `product_application_units` (
`id` int(10) unsigned NOT NULL,
`unit_number` int(11) NOT NULL,
`volume` int(11) NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
`volume_decada` tinyint(4) NOT NULL,
`delivery_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`product_application_id` int(10) unsigned DEFAULT NULL,
`lunits_id` int(10) unsigned DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `providers`
--
CREATE TABLE IF NOT EXISTS `providers` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`counter_id` int(11) NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `providers`
--
INSERT INTO `providers` (`id`, `name`, `counter_id`, `link_1s`, `created_at`, `updated_at`) VALUES
(1, 'Поставщик 1', 1, NULL, NULL, NULL),
(2, 'Поставщик 2', 1, NULL, NULL, NULL),
(3, 'Поставщик 3', 1, NULL, NULL, NULL),
(4, 'Поставщик 1', 2, NULL, NULL, NULL),
(5, 'Поставщик 2', 2, NULL, NULL, NULL),
(6, 'Поставщик 3', 2, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `transportunits`
--
CREATE TABLE IF NOT EXISTS `transportunits` (
`id` int(10) unsigned NOT NULL,
`info` text COLLATE utf8mb4_unicode_ci NOT NULL,
`delivery_id` int(10) unsigned NOT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) unsigned NOT NULL,
`lastName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`firstName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`middleName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`passwordUntil` date DEFAULT NULL,
`link_1s` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Дамп данных таблицы `users`
--
INSERT INTO `users` (`id`, `lastName`, `firstName`, `middleName`, `email`, `phone`, `password`, `passwordUntil`, `link_1s`, `remember_token`, `created_at`, `updated_at`) VALUES
(2, 'Сидоров', 'Сергей', 'Петрович', '<EMAIL>', '+7(999) 99-99-92v', 'abcdef<PASSWORD>', '2018-05-28', NULL, NULL, NULL, '2018-05-28 04:24:39'),
(3, 'Капустин', 'Иван', 'Федорович', '<EMAIL>', '+7(999) 99-99-93', 'abcdeftyty', '2018-05-27', NULL, NULL, NULL, '2018-05-27 14:58:16'),
(6, 'Степчева', 'Зоя', 'Ивановна', '<EMAIL>', '+79278287575', 'asasasasasasa', '2018-06-19', NULL, NULL, '2018-05-25 03:05:16', '2018-05-25 03:05:16');
--
-- Индексы сохранённых таблиц
--
--
-- Индексы таблицы `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admins_email_unique` (`email`);
--
-- Индексы таблицы `applications`
--
ALTER TABLE `applications`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `applications_number_unique` (`number`),
ADD KEY `applications_applicator_id_foreign` (`applicator_id`),
ADD KEY `applications_consigneer_id_foreign` (`consigneer_id`),
ADD KEY `applications_provider_id_foreign` (`provider_id`);
--
-- Индексы таблицы `applicators`
--
ALTER TABLE `applicators`
ADD PRIMARY KEY (`id`),
ADD KEY `applicators_user_id_foreign` (`user_id`),
ADD KEY `applicators_counter_id_foreign` (`counter_id`),
ADD KEY `applicators_cooperation_id_foreign` (`cooperation_id`);
--
-- Индексы таблицы `consigneers`
--
ALTER TABLE `consigneers`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `consigneers_inn_unique` (`INN`),
ADD KEY `consigneers_counter_id_foreign` (`counter_id`);
--
-- Индексы таблицы `consigneer_deliveries`
--
ALTER TABLE `consigneer_deliveries`
ADD PRIMARY KEY (`id`),
ADD KEY `consigneer_deliveries_consigneer_id_foreign` (`consigneer_id`),
ADD KEY `consigneer_deliveries_delivery_id_foreign` (`delivery_id`);
--
-- Индексы таблицы `contactqueries`
--
ALTER TABLE `contactqueries`
ADD PRIMARY KEY (`id`),
ADD KEY `contactqueries_applicator_id_foreign` (`applicator_id`),
ADD KEY `contactqueries_file_id_foreign` (`file_id`);
--
-- Индексы таблицы `cooperations`
--
ALTER TABLE `cooperations`
ADD PRIMARY KEY (`id`),
ADD KEY `cooperations_counter_id_foreign` (`counter_id`);
--
-- Индексы таблицы `cooperation_productranges`
--
ALTER TABLE `cooperation_productranges`
ADD PRIMARY KEY (`id`),
ADD KEY `cooperation_productranges_cooperation_id_foreign` (`cooperation_id`),
ADD KEY `cooperation_productranges_productrange_id_foreign` (`productrange_id`);
--
-- Индексы таблицы `counterparties`
--
ALTER TABLE `counterparties`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `counters`
--
ALTER TABLE `counters`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `counters_inn_unique` (`INN`),
ADD KEY `counters_counterparty_id_foreign` (`counterparty_id`);
--
-- Индексы таблицы `deliveries`
--
ALTER TABLE `deliveries`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `files`
--
ALTER TABLE `files`
ADD PRIMARY KEY (`id`),
ADD KEY `files_applicator_id_foreign` (`applicator_id`),
ADD KEY `files_admin_id_foreign` (`admin_id`),
ADD KEY `files_lunit_id_foreign` (`lunit_id`);
--
-- Индексы таблицы `lunits`
--
ALTER TABLE `lunits`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `order_applications`
--
ALTER TABLE `order_applications`
ADD PRIMARY KEY (`id`),
ADD KEY `order_applications_productrange_id_foreign` (`productrange_id`),
ADD KEY `order_applications_application_id_foreign` (`application_id`),
ADD KEY `order_applications_consigneer_delivery_id_foreign` (`consigneer_delivery_id`);
--
-- Индексы таблицы `productranges`
--
ALTER TABLE `productranges`
ADD PRIMARY KEY (`id`),
ADD KEY `productranges_provider_id_foreign` (`provider_id`);
--
-- Индексы таблицы `product_applications`
--
ALTER TABLE `product_applications`
ADD PRIMARY KEY (`id`),
ADD KEY `product_applications_productrange_id_foreign` (`productrange_id`),
ADD KEY `product_applications_application_id_foreign` (`application_id`),
ADD KEY `product_applications_consigneer_delivery_id_foreign` (`consigneer_delivery_id`);
--
-- Индексы таблицы `product_application_units`
--
ALTER TABLE `product_application_units`
ADD PRIMARY KEY (`id`),
ADD KEY `product_application_units_product_application_id_foreign` (`product_application_id`),
ADD KEY `product_application_units_lunits_id_foreign` (`lunits_id`);
--
-- Индексы таблицы `providers`
--
ALTER TABLE `providers`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `transportunits`
--
ALTER TABLE `transportunits`
ADD PRIMARY KEY (`id`),
ADD KEY `transportunits_delivery_id_foreign` (`delivery_id`);
--
-- Индексы таблицы `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT для сохранённых таблиц
--
--
-- AUTO_INCREMENT для таблицы `admins`
--
ALTER TABLE `admins`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `applications`
--
ALTER TABLE `applications`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT для таблицы `applicators`
--
ALTER TABLE `applicators`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT для таблицы `consigneers`
--
ALTER TABLE `consigneers`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT для таблицы `consigneer_deliveries`
--
ALTER TABLE `consigneer_deliveries`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT для таблицы `contactqueries`
--
ALTER TABLE `contactqueries`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT для таблицы `cooperations`
--
ALTER TABLE `cooperations`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT для таблицы `cooperation_productranges`
--
ALTER TABLE `cooperation_productranges`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `counterparties`
--
ALTER TABLE `counterparties`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `counters`
--
ALTER TABLE `counters`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT для таблицы `deliveries`
--
ALTER TABLE `deliveries`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT для таблицы `files`
--
ALTER TABLE `files`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `lunits`
--
ALTER TABLE `lunits`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=56;
--
-- AUTO_INCREMENT для таблицы `order_applications`
--
ALTER TABLE `order_applications`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT для таблицы `productranges`
--
ALTER TABLE `productranges`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT для таблицы `product_applications`
--
ALTER TABLE `product_applications`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `product_application_units`
--
ALTER TABLE `product_application_units`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `providers`
--
ALTER TABLE `providers`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT для таблицы `transportunits`
--
ALTER TABLE `transportunits`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- Ограничения внешнего ключа сохраненных таблиц
--
--
-- Ограничения внешнего ключа таблицы `applications`
--
ALTER TABLE `applications`
ADD CONSTRAINT `applications_applicator_id_foreign` FOREIGN KEY (`applicator_id`) REFERENCES `applicators` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `applications_consigneer_id_foreign` FOREIGN KEY (`consigneer_id`) REFERENCES `consigneers` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `applications_provider_id_foreign` FOREIGN KEY (`provider_id`) REFERENCES `providers` (`id`) ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `applicators`
--
ALTER TABLE `applicators`
ADD CONSTRAINT `applicators_cooperation_id_foreign` FOREIGN KEY (`cooperation_id`) REFERENCES `cooperations` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `applicators_counter_id_foreign` FOREIGN KEY (`counter_id`) REFERENCES `counters` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `applicators_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `consigneers`
--
ALTER TABLE `consigneers`
ADD CONSTRAINT `consigneers_counter_id_foreign` FOREIGN KEY (`counter_id`) REFERENCES `counters` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `consigneer_deliveries`
--
ALTER TABLE `consigneer_deliveries`
ADD CONSTRAINT `consigneer_deliveries_consigneer_id_foreign` FOREIGN KEY (`consigneer_id`) REFERENCES `consigneers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `consigneer_deliveries_delivery_id_foreign` FOREIGN KEY (`delivery_id`) REFERENCES `deliveries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `contactqueries`
--
ALTER TABLE `contactqueries`
ADD CONSTRAINT `contactqueries_applicator_id_foreign` FOREIGN KEY (`applicator_id`) REFERENCES `applicators` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `contactqueries_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `cooperations`
--
ALTER TABLE `cooperations`
ADD CONSTRAINT `cooperations_counter_id_foreign` FOREIGN KEY (`counter_id`) REFERENCES `counters` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `cooperation_productranges`
--
ALTER TABLE `cooperation_productranges`
ADD CONSTRAINT `cooperation_productranges_cooperation_id_foreign` FOREIGN KEY (`cooperation_id`) REFERENCES `cooperations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `cooperation_productranges_productrange_id_foreign` FOREIGN KEY (`productrange_id`) REFERENCES `productranges` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `counters`
--
ALTER TABLE `counters`
ADD CONSTRAINT `counters_counterparty_id_foreign` FOREIGN KEY (`counterparty_id`) REFERENCES `counterparties` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `files`
--
ALTER TABLE `files`
ADD CONSTRAINT `files_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `files_applicator_id_foreign` FOREIGN KEY (`applicator_id`) REFERENCES `applicators` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `files_lunit_id_foreign` FOREIGN KEY (`lunit_id`) REFERENCES `lunits` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `order_applications`
--
ALTER TABLE `order_applications`
ADD CONSTRAINT `order_applications_consigneer_delivery_id_foreign` FOREIGN KEY (`consigneer_delivery_id`) REFERENCES `consigneer_deliveries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `order_applications_application_id_foreign` FOREIGN KEY (`application_id`) REFERENCES `applications` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `order_applications_productrange_id_foreign` FOREIGN KEY (`productrange_id`) REFERENCES `productranges` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `productranges`
--
ALTER TABLE `productranges`
ADD CONSTRAINT `productranges_provider_id_foreign` FOREIGN KEY (`provider_id`) REFERENCES `providers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `product_applications`
--
ALTER TABLE `product_applications`
ADD CONSTRAINT `product_applications_application_id_foreign` FOREIGN KEY (`application_id`) REFERENCES `applications` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `product_applications_consigneer_delivery_id_foreign` FOREIGN KEY (`consigneer_delivery_id`) REFERENCES `consigneer_deliveries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `product_applications_productrange_id_foreign` FOREIGN KEY (`productrange_id`) REFERENCES `productranges` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `product_application_units`
--
ALTER TABLE `product_application_units`
ADD CONSTRAINT `product_application_units_lunits_id_foreign` FOREIGN KEY (`lunits_id`) REFERENCES `lunits` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `product_application_units_product_application_id_foreign` FOREIGN KEY (`product_application_id`) REFERENCES `product_applications` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Ограничения внешнего ключа таблицы `transportunits`
--
ALTER TABLE `transportunits`
ADD CONSTRAINT `transportunits_delivery_id_foreign` FOREIGN KEY (`delivery_id`) REFERENCES `deliveries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
/*!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>aolarchive/Hydro
{% autoescape off %}
SELECT A,B,C,D,E,F, SUM(M1)
FROM TEST_TB
WHERE
client = '{{CLIENT_ID}}'
AND DATE BETWEEN '{{FROM_DATE}}' AND '{{TO_DATE}}'
AND object_type NOT IN ('all objects')
AND object_type IN ({{OBJECT_TYPES}})
GROUP BY
1, 2, 3, 4, 5, 6
{% endautoescape %} |
alter table egwtr_connectiondetails add column previousApplicationType character varying(25); |
<filename>oracle-scripts/Cayman Islands.sql
INSERT INTO WWS_COUNTRIES (ID, NAME, ISO3, ISO2, PHONECODE, CAPITAL, CURRENCY, CREATED_AT, UPDATED_AT, FLAG, WIKIDATAID) VALUES (41, 'Cayman Islands', 'CYM', 'KY', '+1-345', 'George Town', 'KYD', TO_TIMESTAMP('2018-07-20 16:41:03','YYYY-MM-DD HH24:MI:SS'), TO_TIMESTAMP('2018-07-20 16:41:03','YYYY-MM-DD HH24:MI:SS'), 1, '');
INSERT ALL
SELECT * FROM dual;
INSERT ALL
SELECT * FROM dual; |
<reponame>remix/mds-provider-services<gh_stars>10-100
DROP TABLE IF EXISTS availability_counts CASCADE;
CREATE TABLE IF NOT EXISTS availability_counts (
provider_name text not null,
vehicle_type vehicle_types not null,
start_time timestamptz not null,
end_time timestamptz not null,
avg_availability double precision not null,
cutoff int not null,
CONSTRAINT unique_count UNIQUE (provider_name, vehicle_type, start_time, end_time, cutoff)
); |
ALTER TABLE fund_transfer_exchange
ALTER COLUMN amount DROP NOT NULL;
|
<gh_stars>100-1000
-- select2.test
--
-- execsql {CREATE TABLE tbl2(f1 int, f2 int, f3 int); BEGIN;}
CREATE TABLE tbl2(f1 int, f2 int, f3 int); BEGIN; |
<reponame>Moesugi/MFG
insert into cell_info values
(3, 2, 1, 'E', true, false),
(3, 2, 2, 'A', true, false),
(3, 2, 3, 'D', true, false),
(3, 2, 4, 'F', false, false),
(3, 2, 5, 'B', false, false),
(3, 2, 6, 'C', false, false),
(3, 2, 8, 'H', false, true),
(3, 2, 9, 'B', false, false),
(3, 2, 10, 'F', false, false),
(4, 1, 11, 'I', false, false),
(4, 3, 1, 'J', true, false),
(4, 3, 4, 'F', false, false),
(4, 3, 7, 'D', false, false),
(4, 3, 10, 'L', false, false),
(4, 3, 11, 'E', false, false),
(4, 3, 12, 'M', false, false),
(4, 4, 2, 'B', false, false),
(4, 4, 5, 'C', false, false),
(4, 4, 6, 'D', false, false),
(5, 4, 1, 'A', true, false),
(5, 4, 2, 'B', true, false),
(5, 4, 4, 'F', false, false),
(5, 4, 6, 'I', false, false),
(5, 4, 7, 'E', false, false),
(5, 4, 8, 'D', false, false),
(5, 4, 9, 'L', false, false),
(5, 4, 10, 'N', false, false),
(5, 4, 12, 'H', false, false),
(5, 4, 15, 'O', false, true),
(5, 4, 17, 'H', false, false),
(5, 4, 18, 'M', false, false),
(5, 4, 19, 'O', false, true),
(26, 1, 9, 'D', false, false),
(26, 4, 2, 'B', true, false),
(26, 5, 1, 'A', true, false),
(26, 5, 4, 'C', false, false),
(26, 5, 7, 'G', false, false),
(26, 5, 11, 'E', false, false);
|
HDF5 "textlink.h5" {
GROUP "/" {
EXTERNAL_LINK "extlink1" {
TARGETFILE "filename"
TARGETPATH "objname"
}
EXTERNAL_LINK "extlink2" {
TARGETFILE "anotherfile"
TARGETPATH "anotherobj"
}
}
}
HDF5-DIAG: Error detected in HDF5 (version (number)) thread (IDs):
#000: (file name) line (number) in H5Oopen(): unable to open object
major: Symbol table
minor: Can't open object
#001: (file name) line (number) in H5O_open_name(): object not found
major: Symbol table
minor: Object not found
#002: (file name) line (number) in H5G_loc_find(): can't find object
major: Symbol table
minor: Object not found
#003: (file name) line (number) in H5G_traverse(): internal path traversal failed
major: Symbol table
minor: Object not found
#004: (file name) line (number) in H5G_traverse_real(): special link traversal failed
major: Links
minor: Link traversal failure
#005: (file name) line (number) in H5G__traverse_special(): user-defined link traversal failed
major: Links
minor: Link traversal failure
#006: (file name) line (number) in H5G_traverse_ud(): traversal callback returned invalid ID
major: Symbol table
minor: Unable to find atom information (already closed?)
#007: (file name) line (number) in H5L_extern_traverse(): unable to open external file, external link file name = 'filename', temp_file_name = 'filename'
major: Links
minor: Unable to open file
HDF5-DIAG: Error detected in HDF5 (version (number)) thread (IDs):
#000: (file name) line (number) in H5Oopen(): unable to open object
major: Symbol table
minor: Can't open object
#001: (file name) line (number) in H5O_open_name(): object not found
major: Symbol table
minor: Object not found
#002: (file name) line (number) in H5G_loc_find(): can't find object
major: Symbol table
minor: Object not found
#003: (file name) line (number) in H5G_traverse(): internal path traversal failed
major: Symbol table
minor: Object not found
#004: (file name) line (number) in H5G_traverse_real(): special link traversal failed
major: Links
minor: Link traversal failure
#005: (file name) line (number) in H5G__traverse_special(): user-defined link traversal failed
major: Links
minor: Link traversal failure
#006: (file name) line (number) in H5G_traverse_ud(): traversal callback returned invalid ID
major: Symbol table
minor: Unable to find atom information (already closed?)
#007: (file name) line (number) in H5L_extern_traverse(): unable to open external file, external link file name = 'anotherfile', temp_file_name = 'anotherfile'
major: Links
minor: Unable to open file
|
<reponame>aqles/cobamarket.github.io
-- phpMyAdmin SQL Dump
-- version 3.5.2
-- http://www.phpmyadmin.net
--
-- Inang: localhost
-- Waktu pembuatan: 29 Nov 2016 pada 19.34
-- Versi Server: 5.5.25a
-- Versi PHP: 5.4.4
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 */;
--
-- Basis data: `db_terate`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `admin`
--
CREATE TABLE IF NOT EXISTS `admin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(10) NOT NULL,
`password` varchar(10) NOT NULL,
`nama` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data untuk tabel `admin`
--
INSERT INTO `admin` (`id`, `username`, `password`, `nama`) VALUES
(1, 'admin', '<PASSWORD>', '<PASSWORD>');
-- --------------------------------------------------------
--
-- Struktur dari tabel `kabupaten`
--
CREATE TABLE IF NOT EXISTS `kabupaten` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`kabupaten` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data untuk tabel `kabupaten`
--
INSERT INTO `kabupaten` (`id`, `kabupaten`) VALUES
(1, 'nganjuk');
-- --------------------------------------------------------
--
-- Struktur dari tabel `katalog`
--
CREATE TABLE IF NOT EXISTS `katalog` (
`id_katalog` int(11) NOT NULL AUTO_INCREMENT,
`nama_katalog` varchar(10) NOT NULL,
PRIMARY KEY (`id_katalog`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;
--
-- Dumping data untuk tabel `katalog`
--
INSERT INTO `katalog` (`id_katalog`, `nama_katalog`) VALUES
(13, 'jaket'),
(14, 'sepatu'),
(15, 'kaos'),
(16, 'jam tangan'),
(17, 'celana'),
(18, 'topi');
-- --------------------------------------------------------
--
-- Struktur dari tabel `kelompok`
--
CREATE TABLE IF NOT EXISTS `kelompok` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
--
-- Dumping data untuk tabel `kelompok`
--
INSERT INTO `kelompok` (`id`, `nama`) VALUES
(1, 'elektronik'),
(2, 'pakaian'),
(6, ''),
(7, 'rumah tangga'),
(8, 'ajke'),
(9, 'ddd'),
(10, 'assesoris'),
(11, 'olahraga');
-- --------------------------------------------------------
--
-- Struktur dari tabel `konfirmasi`
--
CREATE TABLE IF NOT EXISTS `konfirmasi` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`kode_pembelian` varchar(15) NOT NULL,
`nama_bank` varchar(10) NOT NULL,
`tgl` date NOT NULL,
`pesan` text NOT NULL,
`gambar` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Dumping data untuk tabel `konfirmasi`
--
INSERT INTO `konfirmasi` (`id`, `kode_pembelian`, `nama_bank`, `tgl`, `pesan`, `gambar`) VALUES
(1, '347', 'BCA', '2016-11-29', 'admin/gambar/hider.jpg', 'Saya Sudah Ko'),
(2, '347', 'BRI', '2016-11-29', 'admin/gambar/hider.jpg', 'ND'),
(3, '347', 'BRI', '2016-11-29', 'sjsjs', 'admin/gambar/hider.jpg'),
(4, '347', 'BRI', '2016-11-29', 'sjsjs', 'admin/gambar/hider.jpg'),
(5, '347', 'BRI', '2016-11-29', 'sjsjs', 'admin/gambar/hider.jpg');
-- --------------------------------------------------------
--
-- Struktur dari tabel `pembeli`
--
CREATE TABLE IF NOT EXISTS `pembeli` (
`id_pembeli` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`nama_lengkap` varchar(100) NOT NULL,
`email` varchar(30) NOT NULL,
`password` varchar(50) NOT NULL,
`alamat` varchar(200) NOT NULL,
`provinsi` varchar(50) NOT NULL,
`kabupaten` varchar(50) NOT NULL,
`kecamatan` varchar(50) NOT NULL,
`kode_pos` varchar(10) NOT NULL,
`no_telp` varchar(16) NOT NULL,
`estimasi` int(11) NOT NULL,
PRIMARY KEY (`id_pembeli`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Dumping data untuk tabel `pembeli`
--
INSERT INTO `pembeli` (`id_pembeli`, `username`, `nama_lengkap`, `email`, `password`, `alamat`, `provinsi`, `kabupaten`, `kecamatan`, `kode_pos`, `no_telp`, `estimasi`) VALUES
(1, 'afiq', '', '', '1234', 'jl jati baron nganjuk jawa timur', 'jawa timur', 'nganjuk', 'baron', '', '', 19000),
(2, 'bagus_fever', '<NAME>', '<EMAIL>', 'bagusfever', 'Dusun Gebangsiwil RT 03 RW 03 ', 'Jawa Timur', 'Nganjuk', 'Nganjuk', '829222', '05608397972', 0),
(3, 'bagus_fever', 'Bagus', '<EMAIL>', 'bagus1922', '', '--Provinsi--', '--Kota--', '--Kecematan--', '', '', 0),
(4, 'baguspsht', '<NAME>', '<EMAIL>', 'bagus1922', 'Dusun Gabangsiwil Desa Bukur RT 03 RW 03', 'Jawa Timur', 'Nganjuk', 'Patianrowo', '927272', '085608397972', 0),
(5, 'eva', 'eva', '<EMAIL>', 'eva1922', 'desa karang tengah rt 02 rw 08', 'Jawa Timur', 'Nganjuk', 'Patianrowo', '88373', '0833736333', 0);
-- --------------------------------------------------------
--
-- Struktur dari tabel `produk`
--
CREATE TABLE IF NOT EXISTS `produk` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama_produk` varchar(100) NOT NULL,
`harga` int(11) NOT NULL,
`gambar` varchar(200) NOT NULL,
`kelompok` varchar(15) NOT NULL,
`katalog` varchar(10) NOT NULL,
`diskon` varchar(10) NOT NULL,
`ket` varchar(2000) NOT NULL,
`qty` int(11) NOT NULL,
`kategori` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=34 ;
--
-- Dumping data untuk tabel `produk`
--
INSERT INTO `produk` (`id`, `nama_produk`, `harga`, `gambar`, `kelompok`, `katalog`, `diskon`, `ket`, `qty`, `kategori`) VALUES
(9, 'LG led tv 20"', 3000000, 'gambar/3.jpg', 'elektronik', '', '', 'LG 32 inch LED TV 32LN-4900, hadir dengan desain frame dan bezelnya tipis. LED TV ini memiliki Smart Energy Saving \r\n(SES) sehingga dapat menghemat 30% energi. Smart Energy Saving (SES) memiliki beragam fungsi seperti fungsi standby \r\nmode zero membuat TV Anda tidak menggunakan listrik saat standby.', -1, 'Elektronik'),
(10, 'LG led tv 90"', 5000000, 'gambar/6.jpg', 'elektronik', '', '', 'TV LED berukuran 90 inch yang memiliki resolusi Full HD 1080 (1920 x 1080) dengan rasio 16:9 serta dilengkapi \r\nDolby Digital. KLV32EX43A disupport dengan teknologi BRAVIA Engine 3, yang memiliki kemampuan menganalisis setiap \r\ngambar atau adegan, dan mengolahnya sehingga memberikan warna dan kontras yang optimal.', 53, 'Elektronik'),
(12, 'SHARP LED TV 24 inch LC-24DC50M', 4000000, 'gambar/4.jpg', 'elektronik', '', '', 'SHARP LED TV 24 inch LC-24DC50M, LED TV Full HD berukuran 24 inch yang mengedepankan teknologi yang ramah lingkungan. \r\nDengan fitur OPC, konsumsi listrik dapat diatur otomatis sesuai dengan pencahayaan ruangan sehingga konsumsi \r\nlistrik SHARP AQUOS menjadi hemat. Ditunjang dengan SRS TruSurrond HD and Bass Enhancer yaitu Audio speaker \r\nberkualitas SRS TruSurround High Definition dengan suara bass yang mengagumkan.\r\n', 55, 'Elektronik'),
(13, 'Nikon Camera Mirrorless S1 10-30 Red', 5000000, 'gambar/5.jpg', 'elektronik', '', '', 'Nikon Camera Mirrorless S1 10-30 adalah kamera mirrorless yang didesain compact dan stylish dan dilengkapi dengan \r\nInterchangeable Lens System 10 - 30 mm. Kamera dengan teknologi CMOS sensor Nikon CX-format ini ditunjang dengan \r\ndisplay TFT LCD 3 inch, kemampuan full HD dan resolusi 10.1 untuk memudahkan Anda berekspresi melalui hasil jepretan \r\nAnda.\r\n', 75, 'Elektronik'),
(15, 'Canon EOS 7D KIT 18-135mm', 6000000, 'gambar/5.jpg', 'elektronik', '', '', 'Canon EOS 7D KIT 18-135 mm yang didesain compact untuk kenyamanan Anda juga didukung dengan performa maksimal. \r\nKamera 18 MP ini dilengkapi layar Clear View II LCD 3 inch, Integrated Speedlite Transmitter dan fitur EOS Movie \r\nuntuk merekam Full HD movie dengan full manual control and selectable frame rates.', 65, 'Elektronik'),
(18, 'Samsung Galaxy Note 8.0 - N5100 Brown', 9000000, 'gambar/1f0.jpg', 'elektronik', '', '', 'Samsung Galaxy Note 8.0 - N5100 Brown, hadir dengan layar sebesar 8 inch dengan resolusi 1280x800 dan tidak \r\nhanya sekedar tablet Android yang terhubung dengan jaringan internet, Samsung Galaxy Note 8.0 bahkan bisa\r\nmelakukan panggilan telepon dan SMS. Galaxy Note 8.0 diperkuat dengan prosesor Quad Core 1.6 GHz Cortex-A9, \r\nOS Android Jelly Bean V4.1.2, memori internal 16 GB, dan dual kamera (kamera depan 5 MP, dan kamera belakang 1.3 MP).\r\nUntuk konektivitas Galaxy Note 8.0 sudah didukung Wi-Fi, Wi-Fi hotspot, dan Bluetooth V4.0.', 3, 'Elektronik'),
(19, 'Sony Xperia V LT25i White', 5300000, 'gambar/wdaw.jpg', 'elektronik', '', '', 'Sony Xperia V LT25i, hadir dengan desain stylish, dan unik. Smartphone ini juga ditunjang dengan \r\nOS Android Ice Cream Sandwich v4.0 dan prosesor Dual-core 1.5 GHz Qualcomm MSM8960 Snapdragon, serta Adreno 225. \r\nDilengkapi dengan layar touchscreen 4,3 inch, kamera 13 MP dengan autofocus dan LED flash, memori internal 8 GB \r\ndengan slot kartu memori serta konektivitas Wi-Fi 802.11 b/g/n, dengan kemampuan Wi-Fi Direct, DLNA, Wi-Fi hotspot, \r\nBluetooth v4.0, dan NFC. Xperia V LT25i ini juga mampu bertahan di medan ekstrim karena memiliki fitur water proof \r\ndan water resistant, sehingga sangat cocok untuk Anda yang suka berpetualang.', 71, 'Elektronik'),
(20, 'Kaos PSHT', 90000, 'kaos', '8', 'gambar/192', '', 'sjjsssssssssssssssss', 0, 'Pakaian'),
(21, 'Kaos PSHT', 90000, 'gambar/192.jpg', 'pakaian', 'kaos', '', 'sjjsssssssssssssssssddd', 3, 'Pakaian'),
(22, 'kaos psht terate hijau', 90000, 'gambar/TERA IJO.jpg', 'kaos', '', '', 'Kaos KaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaos', 30, 'kaos psht'),
(23, 'kaos psht terate hijau', 90000, 'gambar/TERA IJO.jpg', 'kaos', '', '', 'Kaos KaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaos', 30, 'kaos psht'),
(24, 'kaos psht tendangan t', 90000, 'gambar/10687026_538818476251791_5192189108266288028_n.jpg', 'pakaian', 'kaos', '', 'KaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaosKaos', 7, 'kaos psht'),
(26, 'jaket holding sweter psht ', 120000, 'gambar/Alan-Walker.jpg', 'pakaian', 'jaket', '', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 30, 'jaket dj'),
(27, 'kaos silat psht terate', 120000, 'gambar/Kaos PSHT Kode SH 50 Persaudaraan setia hati Terate Kaos Psht Kode Sh keren Persaudaraan Setia Hati Terate.jpg', 'pakaian', 'kaos', '10%', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 26, 'kaos psht'),
(28, '', 0, 'gambar/', '', '', '10%', '', 0, ''),
(29, 'kaos silat psht terate 1922', 100000, 'gambar/Kaos_PSHT_Kode_SH_43_Persaudaraan_setia_hati_Terate.jpg', 'pakaian', 'kaos', '10%', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 9, 'kaos psht'),
(30, 'sepatu nike sport', 300000, 'gambar/nav_img.jpg', 'olahraga', 'sepatu', '', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 10, 'sepatu nike'),
(31, 'sepatu nike sport', 300000, 'gambar/pic3.jpg', 'olahraga', 'sepatu', '', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 10, 'sepatu nike'),
(32, 'sepatu nike sport', 300000, 'gambar/pic5.jpg', 'olahraga', 'sepatu', '', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 10, 'sepatu nike'),
(33, 'sepatu nike sport', 300000, 'gambar/banner1.jpg', 'olahraga', 'sepatu', '', 'jaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaketjaket', 9, 'sepatu nike');
-- --------------------------------------------------------
--
-- Struktur dari tabel `produk_temp`
--
CREATE TABLE IF NOT EXISTS `produk_temp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_pembeli` int(11) NOT NULL,
`id_produk` int(11) NOT NULL,
`nama_produk` varchar(200) NOT NULL,
`harga` int(11) NOT NULL,
`total_harga` int(11) NOT NULL,
`gambar` varchar(200) NOT NULL,
`qty_beli` int(11) NOT NULL,
`qty_asli` int(11) NOT NULL,
`kategori` varchar(200) NOT NULL,
`ket` int(11) NOT NULL,
`jasa_pengiriman` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=88 ;
--
-- Dumping data untuk tabel `produk_temp`
--
INSERT INTO `produk_temp` (`id`, `id_pembeli`, `id_produk`, `nama_produk`, `harga`, `total_harga`, `gambar`, `qty_beli`, `qty_asli`, `kategori`, `ket`, `jasa_pengiriman`) VALUES
(50, 0, 18, 'Samsung Galaxy Note 8.0 - N5100 Brown', 9000000, 9000000, 'gambar/1f0.jpg', 1, 6, 'Elektronik', 0, ''),
(51, 0, 33, 'sepatu nike sport', 300000, 300000, 'gambar/banner1.jpg', 1, 10, 'sepatu nike', 0, '');
-- --------------------------------------------------------
--
-- Struktur dari tabel `selesai`
--
CREATE TABLE IF NOT EXISTS `selesai` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_pembeli` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`jumlah_barang` int(11) NOT NULL,
`jumlah_bayar` int(11) NOT NULL,
`tanggal_beli` varchar(50) NOT NULL,
`alamat` varchar(100) NOT NULL,
`kabupaten` varchar(20) NOT NULL,
`kecamatan` varchar(20) NOT NULL,
`provinsi` varchar(20) NOT NULL,
`kode_pos` varchar(10) NOT NULL,
`no_telp` varchar(15) NOT NULL,
`jasa_pengiriman` varchar(20) NOT NULL,
`konfir` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
--
-- Dumping data untuk tabel `selesai`
--
INSERT INTO `selesai` (`id`, `id_pembeli`, `nama`, `jumlah_barang`, `jumlah_bayar`, `tanggal_beli`, `alamat`, `kabupaten`, `kecamatan`, `provinsi`, `kode_pos`, `no_telp`, `jasa_pengiriman`, `konfir`) VALUES
(14, 1, 'afiq', 1, 6000000, '29-11-2016', 'jl jati baron nganjuk jawa timur', 'nganjuk', 'baron', 'jawa timur', '', '', '', 'Y'),
(15, 1, 'afiq', 1, 5000000, '29-11-2016', 'jl jati baron nganjuk jawa timur', 'nganjuk', 'baron', 'jawa timur', '', '', '', 'N'),
(16, 1, 'afiq', 1, 6000000, '29-11-2016', 'jl jati baron nganjuk jawa timur', 'nganjuk', 'baron', 'jawa timur', '', '', '', 'N'),
(17, 1, 'afiq', 1, 9000000, '29-11-2016', 'jl jati baron nganjuk jawa timur', 'nganjuk', 'baron', 'jawa timur', '', '', '', 'N'),
(18, 1, 'afiq', 1, 5300000, '29-11-2016', 'jl jati baron nganjuk jawa timur', 'nganjuk', 'baron', 'jawa timur', '', '', '', 'N'),
(19, 5, 'eva', 1, 9000000, '29-11-2016', 'desa karang tengah rt 02 rw 08', 'Nganjuk', 'Patianrowo', 'Jawa Timur', '88373', '0833736333', '', 'N'),
(20, 5, 'eva', 2, 10000000, '29-11-2016', 'desa karang tengah rt 02 rw 08', 'Nganjuk', 'Patianrowo', 'Jawa Timur', '88373', '0833736333', 'POS REGULER', 'N'),
(21, 5, 'eva', 1, 8000000, '29-11-2016', 'desa karang tengah rt 02 rw 08', 'Nganjuk', 'Patianrowo', 'Jawa Timur', '88373', '0833736333', 'POS KILAT', 'N');
/*!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 */;
|
DROP TRIGGER IF EXISTS trigger_flag ON osm_island_polygon;
DROP TRIGGER IF EXISTS trigger_refresh ON place_island_polygon.updates;
-- etldoc: osm_island_polygon -> osm_island_polygon
CREATE OR REPLACE FUNCTION update_osm_island_polygon() RETURNS VOID AS $$
BEGIN
UPDATE osm_island_polygon SET geometry=ST_PointOnSurface(geometry) WHERE ST_GeometryType(geometry) <> 'ST_Point';
UPDATE osm_island_polygon
SET tags = update_tags(tags, geometry)
WHERE COALESCE(tags->'name:latin', tags->'name:nonlatin', tags->'name_int') IS NULL;
ANALYZE osm_island_polygon;
END;
$$ LANGUAGE plpgsql;
SELECT update_osm_island_polygon();
-- Handle updates
CREATE SCHEMA IF NOT EXISTS place_island_polygon;
CREATE TABLE IF NOT EXISTS place_island_polygon.updates(id serial primary key, t text, unique (t));
CREATE OR REPLACE FUNCTION place_island_polygon.flag() RETURNS trigger AS $$
BEGIN
INSERT INTO place_island_polygon.updates(t) VALUES ('y') ON CONFLICT(t) DO NOTHING;
RETURN null;
END;
$$ language plpgsql;
CREATE OR REPLACE FUNCTION place_island_polygon.refresh() RETURNS trigger AS
$BODY$
BEGIN
RAISE LOG 'Refresh place_island_polygon';
PERFORM update_osm_island_polygon();
DELETE FROM place_island_polygon.updates;
RETURN null;
END;
$BODY$
language plpgsql;
CREATE TRIGGER trigger_flag
AFTER INSERT OR UPDATE OR DELETE ON osm_island_polygon
FOR EACH STATEMENT
EXECUTE PROCEDURE place_island_polygon.flag();
CREATE CONSTRAINT TRIGGER trigger_refresh
AFTER INSERT ON place_island_polygon.updates
INITIALLY DEFERRED
FOR EACH ROW
EXECUTE PROCEDURE place_island_polygon.refresh();
|
<gh_stars>0
create table `version`(
versionID bigint not null auto_increment,
name varchar(25) CHARACTER SET utf8 COLLATE utf8_bin not null,
version int not null,
updateInProcess bit not null,
created datetime not null,
lastModified datetime null,
primary key (versionID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table article (
articleID bigint not null auto_increment,
doi varchar(50) CHARACTER SET utf8 COLLATE utf8_bin null,
title varchar(500) CHARACTER SET utf8 COLLATE utf8_bin null,
eIssn varchar(15) CHARACTER SET utf8 COLLATE utf8_bin null,
state integer not null,
archiveName varchar(50) CHARACTER SET utf8 COLLATE utf8_bin null,
description text CHARACTER SET utf8 COLLATE utf8_bin null,
rights text CHARACTER SET utf8 COLLATE utf8_bin null,
language varchar(5) CHARACTER SET utf8 COLLATE utf8_bin null,
format varchar(10) CHARACTER SET utf8 COLLATE utf8_bin null,
date datetime not null,
volume varchar(5) CHARACTER SET utf8 COLLATE utf8_bin null,
issue varchar(5) CHARACTER SET utf8 COLLATE utf8_bin null,
journal varchar(50) CHARACTER SET utf8 COLLATE utf8_bin null,
publisherLocation varchar(25) CHARACTER SET utf8 COLLATE utf8_bin null,
publisherName varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
pages varchar(15) CHARACTER SET utf8 COLLATE utf8_bin null,
eLocationID varchar(15) CHARACTER SET utf8 COLLATE utf8_bin null,
url varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
created datetime not null,
lastModified datetime null,
index(doi),
primary key (articleID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articleAsset (
articleAssetID bigint not null auto_increment,
articleID bigint null,
doi varchar(75) CHARACTER SET utf8 COLLATE utf8_bin not null,
contextElement varchar(30) CHARACTER SET utf8 COLLATE utf8_bin null,
contentType varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
extension varchar(10) CHARACTER SET utf8 COLLATE utf8_bin null,
title varchar(500) CHARACTER SET utf8 COLLATE utf8_bin null,
description text CHARACTER SET utf8 COLLATE utf8_bin null,
size bigint,
sortOrder integer null,
created datetime not null,
lastModified datetime null,
constraint foreign key (articleID) references article(articleID),
index (articleID),
index (doi),
unique key(doi, extension),
primary key (articleAssetID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table category (
categoryID bigint not null auto_increment,
mainCategory varchar(50) CHARACTER SET utf8 COLLATE utf8_bin null,
subCategory varchar(150) CHARACTER SET utf8 COLLATE utf8_bin null,
created datetime,
lastModified datetime,
primary key (categoryID),
unique key (mainCategory, subCategory)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articleCategoryJoinTable (
articleID bigint not null,
categoryID bigint not null,
index(articleID),
index(categoryID),
primary key (articleID, categoryID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articleCollaborativeAuthors (
articleID bigint not null,
sortOrder integer not null,
name varchar(255) CHARACTER SET utf8 COLLATE utf8_bin null,
index(articleID),
primary key (articleID, sortOrder)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articlePerson (
articlePersonID bigint not null auto_increment,
articleID bigint null,
sortOrder integer,
type varchar(15) CHARACTER SET utf8 COLLATE utf8_bin not null,
fullName varchar(100) CHARACTER SET utf8 COLLATE utf8_bin not null,
givenNames varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
surnames varchar(100) CHARACTER SET utf8 COLLATE utf8_bin not null,
suffix varchar(15) CHARACTER SET utf8 COLLATE utf8_bin null,
created datetime not null,
lastModified datetime null,
constraint foreign key (articleID) references article(articleID),
index(articleID),
primary key (articlePersonID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articleRelationship (
articleRelationshipID bigint not null auto_increment,
parentArticleID bigint not null,
otherArticleDoi varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
otherArticleID bigint null,
type varchar(50) CHARACTER SET utf8 COLLATE utf8_bin not null,
sortOrder integer not null,
created datetime not null,
lastModified datetime null,
constraint foreign key (parentArticleID) references article(articleID),
constraint foreign key (otherArticleID) references article(articleID),
index(parentArticleID),
index(otherArticleID),
primary key (articleRelationshipID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table articleType (
articleID bigint not null,
type varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
constraint foreign key (articleID) references article(articleID),
index(articleID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table citedArticle (
citedArticleID bigint not null auto_increment,
uri varchar(150) CHARACTER SET utf8 COLLATE utf8_bin null,
articleID bigint null,
keyColumn varchar(10) CHARACTER SET utf8 COLLATE utf8_bin null,
year integer null,
displayYear varchar(50) CHARACTER SET utf8 COLLATE utf8_bin null,
month varchar(15) CHARACTER SET utf8 COLLATE utf8_bin null,
day varchar(20) CHARACTER SET utf8 COLLATE utf8_bin null,
volumeNumber integer null,
volume varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
issue varchar(60) CHARACTER SET utf8 COLLATE utf8_bin null,
title text CHARACTER SET utf8 COLLATE utf8_bin null,
publisherLocation varchar(250) CHARACTER SET utf8 COLLATE utf8_bin null,
publisherName text CHARACTER SET utf8 COLLATE utf8_bin null,
pages varchar(150) CHARACTER SET utf8 COLLATE utf8_bin null,
eLocationID varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
journal varchar(250) CHARACTER SET utf8 COLLATE utf8_bin null,
note text CHARACTER SET utf8 COLLATE utf8_bin null,
url varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
doi varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
citationType varchar(60) CHARACTER SET utf8 COLLATE utf8_bin null,
summary varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
sortOrder integer null,
created datetime not null,
lastModified datetime null,
constraint foreign key (articleID) references article(articleID),
index(articleID),
primary key (citedArticleID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table citedArticleCollaborativeAuthors (
citedArticleID bigint not null,
sortOrder integer not null,
name varchar(200) CHARACTER SET utf8 COLLATE utf8_bin null,
constraint foreign key (citedArticleID) references citedArticle(citedArticleID),
index(citedArticleID),
primary key (citedArticleID, sortOrder)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table citedPerson (
citedPersonID bigint not null auto_increment,
citedArticleID bigint null,
type varchar(15) CHARACTER SET utf8 COLLATE utf8_bin not null,
fullName varchar(200) CHARACTER SET utf8 COLLATE utf8_bin null,
givenNames varchar(150) CHARACTER SET utf8 COLLATE utf8_bin null,
surnames varchar(200) CHARACTER SET utf8 COLLATE utf8_bin null,
suffix varchar(100) CHARACTER SET utf8 COLLATE utf8_bin null,
sortOrder integer null,
created datetime not null,
lastModified datetime null,
constraint foreign key (citedArticleID) references citedArticle(citedArticleID),
index(citedArticleID),
primary key (citedPersonID)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
create table syndication (
syndicationID bigint not null auto_increment,
doi varchar(255) CHARACTER SET utf8 COLLATE utf8_bin not null,
target varchar(50) CHARACTER SET utf8 COLLATE utf8_bin not null,
status varchar(50) CHARACTER SET utf8 COLLATE utf8_bin not null,
submissionCount integer,
errorMessage longtext CHARACTER SET utf8 COLLATE utf8_bin null,
created datetime not null,
lastSubmitTimestamp datetime null,
lastModified datetime null,
primary key (syndicationID),
unique (doi, target)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
-- Looks crazy to select all these, but we don't want to deal with the ts_vector
CREATE OR REPLACE VIEW packages_with_channel_platform AS
SELECT
op.id,
op.owner_id,
op.name,
op.ident,
op.ident_array,
op.checksum,
op.manifest,
op.config,
op.target,
op.deps,
op.tdeps,
op.exposes,
op.visibility,
op.created_at,
op.updated_at,
op.origin,
array_agg(oc.name) OVER w AS channels,
array_agg(op.target) OVER w AS platforms
FROM origin_packages op
INNER JOIN origin_channel_packages AS ocp ON op.id = ocp.package_id
INNER JOIN origin_channels AS oc ON oc.id = ocp.channel_id
WINDOW w AS (PARTITION BY op.ident);
|
{base},
Standard as (
SELECT distinct REPLACE(SOURCE_CODE, '.', '') SOURCE_CODE, 1 as TARGET_CONCEPT_ID, TARGET_DOMAIN_ID, SOURCE_VALID_START_DATE, SOURCE_VALID_END_DATE
FROM Source_to_Standard
WHERE SOURCE_VOCABULARY_ID = 'JNJ_DEATH'
)
select distinct Standard.*
from Standard
|
-- Notebook: LT-Step-04-CHV-Level-Findings.ipynb
{% set schema = var("dbt_schema") %}
{% set relation_prefix = var("pregnancy_missingness_relation_prefix") %}
{% set pregnancy_relations = get_relations(schema=schema, relation_prefix=relation_prefix) %}
{% set pregnancy_relations = filter_by_word(list_to_filter=pregnancy_relations, word_to_filter="follow_up") %}
{% set pregnancy_relations = filter_by_list(list_to_filter=pregnancy_relations, list_of_words=var("pregnancy_missingness_cols")) %}
{% set pregnancy_column_names = get_column_names(schema=schema, relation_prefix=relation_prefix) %}
{% set pregnancy_column_names = filter_by_word(list_to_filter=pregnancy_column_names, word_to_filter="follow_up") %}
{% set pregnancy_column_names = filter_by_list(list_to_filter=pregnancy_column_names, list_of_words=var("pregnancy_missingness_cols")) %}
{% for pregnancy_relation in pregnancy_relations %}
{% set pregnancy_column = get_column_name(relation=pregnancy_relation, schema=schema, relation_prefix=relation_prefix) %}
{% if loop.first %}with {% endif %}
{{ pregnancy_column }}_missing_data as (
SELECT uuid, CASE WHEN {{ pregnancy_column }} IS NULL THEN 1 END AS {{ pregnancy_column }}_pregnancy_missing
FROM {{ pregnancy_relation }}
),
{% endfor %}
pregnancy_final as (
SELECT
pregnancy.uuid,
pregnancy.reported_by,
{% for pregnancy_column in pregnancy_column_names %}
{{ pregnancy_column }}_pregnancy_missing
{% if not loop.last %},{% endif %}
{% endfor %}
FROM {{ ref('pregnancy') }} pregnancy
{% for pregnancy_column in pregnancy_column_names %}
LEFT JOIN {{ pregnancy_column }}_missing_data ON pregnancy.uuid = {{ pregnancy_column }}_missing_data.uuid
{% endfor %}
)
select * from pregnancy_final |
<reponame>goldmansachs/obevo-kata<gh_stars>10-100
CREATE FUNCTION func243() RETURNS integer
LANGUAGE plpgsql
AS $$ DECLARE val INTEGER; BEGIN val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE406);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE155);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE396);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW4);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW44);CALL FUNC817(MYVAR);CALL FUNC865(MYVAR);CALL FUNC110(MYVAR);CALL FUNC408(MYVAR);END $$;
GO |
-- Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
-- and the EPL 1.0 (https://h2database.com/html/license.html).
-- Initial Developer: H2 Group
--
call regexp_replace('x', 'x', '\');
> exception LIKE_ESCAPE_ERROR_1
CALL REGEXP_REPLACE('abckaboooom', 'o+', 'o');
>> abckabom
select regexp_replace('Sylvain', 'S..', 'TOTO', 'mni');
>> TOTOvain
set mode oracle;
> ok
select regexp_replace('first last', '(\w+) (\w+)', '\2 \1');
>> last first
select regexp_replace('first last', '(\w+) (\w+)', '\\2 \1');
>> \2 first
select regexp_replace('first last', '(\w+) (\w+)', '\$2 \1');
>> $2 first
select regexp_replace('first last', '(\w+) (\w+)', '$2 $1');
>> $2 $1
set mode regular;
> ok
select regexp_replace('first last', '(\w+) (\w+)', '\2 \1');
>> 2 1
select regexp_replace('first last', '(\w+) (\w+)', '$2 $1');
>> last first
select regexp_replace('AbcDef', '[^a-z]', '', 'g');
> exception INVALID_VALUE_2
select regexp_replace('First and Second', '[A-Z]', '');
>> irst and econd
set mode PostgreSQL;
> ok
select regexp_replace('AbcDef', '[^a-z]', '', 'g');
>> bcef
select regexp_replace('AbcDef123', '[a-z]', '!', 'gi');
>> !!!!!!123
select regexp_replace('First Only', '[A-Z]', '');
>> irst Only
|
<reponame>Zhaojia2019/cubrid-testcases
--autocommit off
--exceptional case:
--an error occurs in a trigger action.
--+ holdcas on;
CREATE TABLE with_trigger(a int primary key auto_increment, b char(10), c int unique);
INSERT INTO with_trigger(b, c) VALUES ('AAA', 1), ('BBB', 2), ('CCC', 3);
SELECT * FROM with_trigger order by 1;
CREATE TABLE trigger_actions(id int auto_increment, a int unique, b char(20));
CREATE TRIGGER trig_bef_ins BEFORE INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (1, 'BEFORE INSERT');
CREATE TRIGGER trig_aft_ins AFTER INSERT ON with_trigger EXECUTE
INSERT INTO trigger_actions(a, b) VALUES (2, 'AFTER INSERT');
REPLACE INTO with_trigger(b, c) VALUES ('DDD', 4);
SELECT * FROM trigger_actions order by 1;
SELECT * FROM with_trigger order by 1;
--Error occurs in trigger action
REPLACE INTO with_trigger(b, c) VALUES ('FFF', 4);
SELECT * FROM trigger_actions order by 1;
SELECT * FROM with_trigger order by 1;
DROP TRIGGER trig_bef_ins;
DROP TRIGGER trig_aft_ins;
DROP TABLE trigger_actions;
DROP TABLE with_trigger;
--+ holdcas off;
|
/*
TODO
add order level discounts
*/
CREATE TEMP TABLE default_costs ON COMMIT DROP AS
SELECT 0.20::NUMERIC as percent, 'materials' as type
UNION ALL
SELECT 0.10::NUMERIC as percent, 'labor' as type
;
CREATE TEMP TABLE order_line_taxes ON COMMIT DROP AS
WITH tax_detail AS (
SELECT
jsonb_array_elements(line_items)->>'id' as order_line_id,
jsonb_array_elements(jsonb_array_elements(line_items)->'tax_lines')->>'title' as tax_types,
(jsonb_array_elements(jsonb_array_elements(line_items)->'tax_lines')->>'price')::NUMERIC as taxes_collected
FROM
shopify.shopify_sales_order
)
SELECT
order_line_id::BIGINT as order_line_id,
SUM(taxes_collected) as taxes_collected,
(ARRAY_REMOVE(ARRAY_AGG(DISTINCT tax_types ORDER BY tax_types), 'North Carolina State Tax'))[1] as county
FROM
tax_detail
GROUP BY
order_line_id::BIGINT
;
CREATE TEMP TABLE sales_orders ON COMMIT DROP AS
WITH shopify_line_items AS (
SELECT
jsonb_array_elements(so.line_items) as line_json,
CASE
WHEN so.source_name = 'sell-on-amazon' THEN 'Amazon FBM'
WHEN COALESCE(c.tags, so.customer->>'tags') ILIKE '%wholesale%' OR so.tags ILIKE '%wholesale%' THEN 'Wholesale'
WHEN so.location_id::BIGINT = 61831086229 THEN 'Farmers Market - Wake Forest'
WHEN
(so.source_name IN ('android', 'pos', 'iphone') AND EXTRACT('DOW' FROM so.processed_at::DATE) = 6)
OR
so.location_id::BIGINT = 61830463637
THEN 'Farmers Market - Durham'
WHEN so.source_name IN ('279941', '580111', 'web', 'shopify_draft_order', 'android', 'pos', 'iphone') THEN 'Shopify Retail'
ELSE so.source_name
END as sales_channel,
COALESCE((customer->>'first_name') || ' ' || (customer->>'last_name'), 'Unknown') as customer_name,
COALESCE(
NULLIF(customer->'default_address'->>'company', ''),
CASE
WHEN COALESCE(c.tags, so.customer->>'tags') ILIKE '%wholesale%' OR so.tags ILIKE '%wholesale%' THEN COALESCE((customer->>'first_name') || ' ' || (customer->>'last_name'), 'Unknown')
END
) as company,
CASE
WHEN COALESCE(c.tags, so.customer->>'tags') ILIKE '%wholesale%' OR so.tags ILIKE '%wholesale%' THEN 'Wholesale'
ELSE 'Retail'
END as customer_type,
so.shipping_address,
so.id,
so.closed_at,
so.created_at,
so.updated_at,
so.created_at as date_created,
so.updated_at as date_last_updated,
so.processed_at as processed_date,
DATE_PART('YEAR', so.processed_at)::INTEGER as processed_year,
DATE_PART('MONTH', so.processed_at)::INTEGER as processed_month,
DATE_TRUNC('MONTH', so.processed_at)::DATE as processed_period,
so.number,
so.note,
CASE
WHEN financial_status IN ('pending') THEN 'Pending'
WHEN fulfillment_status IN ('fulfilled') THEN 'Shipped'
ELSE 'Pending'
END as order_status,
COALESCE((customer->>'tax_exempt')::BOOLEAN, FALSE) as is_tax_exempt,
so.total_discounts,
so.name as order_number,
so.discount_applications->0->>'title' as discount_promotion_name,
so.refunds,
so.total_weight,
so.reference,
(so.total_shipping_price_set->'shop_money'->>'amount')::NUMERIC(16, 2) as shipping_collected
FROM
shopify.shopify_sales_order so
LEFT JOIN shopify.shopify_customer c ON (so.customer->>'id')::BIGINT = c.id
WHERE
so.financial_status NOT IN ('voided', 'refunded')
)
, shopify_refunds AS (
WITH lines AS (
SELECT
(jsonb_array_elements((jsonb_array_elements(refunds)->'refund_line_items')))->'line_item'->>'id' as order_line_id,
((jsonb_array_elements((jsonb_array_elements(refunds)->'refund_line_items')))->>'quantity')::INTEGER as quantity
FROM
shopify.shopify_sales_order
)
SELECT
order_line_id,
SUM(quantity) as quantity
FROM
lines
GROUP BY
order_line_id
)
, shipping_tax_collected AS (
WITH lines AS (
SELECT
id as order_id,
((jsonb_array_elements((jsonb_array_elements(shipping_lines)->'tax_lines')))->>'price')::NUMERIC as tax_collected
FROM
shopify.shopify_sales_order
)
SELECT
order_id,
SUM(tax_collected) as tax_collected
FROM
lines
GROUP BY
order_id
)
, shipping_paid AS (
SELECT
DISTINCT ON (order_id)
order_id,
(regexp_matches(message, '[0-9]+\.?[0-9]*'))[1]::NUMERIC(16, 2) as amount
FROM
shopify.shopify_order_events
WHERE
verb = 'shipping_label_created_success'
ORDER BY
order_id,
created_at DESC
)
, shipping_easy AS (
SELECT
so.id as order_id,
SUM("Postage Cost") as shipping_fees
FROM
shopify.shipping_easy_orders easy JOIN
shopify.shopify_sales_order so ON '#' || easy."Order Number" = so.name
GROUP BY
so.id
)
, shopify_shipping_allocation AS (
WITH shipping_line AS (
SELECT
so.id as order_id,
so.shipping_collected,
so.line_json->>'id' as order_line_id,
((so.line_json->>'quantity')::INTEGER - COALESCE(shopify_refunds.quantity, 0)) * CASE WHEN so.line_json->>'grams' = '0' THEN 1 ELSE (so.line_json->>'grams')::NUMERIC END as line_weight
FROM
shopify_line_items so LEFT JOIN
shopify_refunds ON (so.line_json->>'id') = shopify_refunds.order_line_id LEFT JOIN
public.operations_product p ON (so.line_json->>'product_id') = p.id::TEXT
)
, shipping_total AS (
SELECT
order_id,
SUM(line_weight) as total_weight
FROM
shipping_line
GROUP BY
order_id
)
SELECT
shipping_line.order_line_id,
(shipping_line.shipping_collected * (line_weight / total_weight)) as shipping_collected,
(tax.tax_collected * (line_weight / total_weight)) as shipping_tax_collected,
(
COALESCE(shipping_paid.amount, shipping_easy.shipping_fees) * (line_weight / total_weight)
) as shipping_cost
FROM
shipping_total JOIN
shipping_line ON shipping_total.order_id = shipping_line.order_id LEFT JOIN
shipping_paid ON shipping_total.order_id = shipping_paid.order_id LEFT JOIN
shipping_easy ON shipping_total.order_id = shipping_easy.order_id LEFT JOIN
shipping_tax_collected tax ON
shipping_total.order_id = tax.order_id AND
tax.tax_collected <> 0
)
, amazon_fees AS (
WITH events AS (
SELECT
"FinancialEvents" as event,
"AmazonOrderId",
(jsonb_array_elements("ShipmentItemList")->>'OrderItemId')::BIGINT as "OrderItemId",
-(jsonb_array_elements(jsonb_array_elements("ShipmentItemList")->'ItemFeeList')->'FeeAmount'->>'CurrencyAmount')::NUMERIC(16, 2) as fees
FROM
amazon.amazon_financial_events
)
SELECT
events."AmazonOrderId",
events."OrderItemId",
i.product_id,
SUM(fees) as total_fees
FROM
events
JOIN amazon.amazon_sales_order_line line ON events."OrderItemId" = line."OrderItemId"
JOIN public.integration_amazon_product i ON line."ASIN" = i.asin
WHERE
fees != 0
GROUP BY
events."AmazonOrderId",
events."OrderItemId",
i.product_id
)
SELECT
CASE
WHEN so.sales_channel = 'Amazon FBM' THEN 'Amazon'
ELSE 'Shopify'
END as source_system,
so.sales_channel,
so.id::TEXT as order_id,
(line_json->>'id')::BIGINT as order_line_id,
so.order_status,
INITCAP(COALESCE((line_json->>'fulfillment_status'), 'unfulfilled')) as fulfillment_status,
so.order_number,
pcode.family as product_family,
pcode.category as product_category,
COALESCE(p.sku, psku.sku) as product_sku,
COALESCE(p.description, psku.description, line_json->>'name') as product_description,
(line_json->>'variant_id') as source_product_id,
COALESCE(sp.shopify_sku::TEXT, (line_json->>'sku')) as source_product_sku,
line_json->>'name' as source_product_name,
CASE
WHEN ((line_json->>'quantity')::NUMERIC - COALESCE(refunds.quantity, 0))::INTEGER = 0 THEN NULL
ELSE ((line_json->>'quantity')::NUMERIC - COALESCE(refunds.quantity, 0))::INTEGER
END as quantity,
(
(
(line_json->>'price')::NUMERIC -
COALESCE(((line_json->'discount_allocations'->0->>'amount')::NUMERIC/(line_json->>'quantity')::NUMERIC), 0)
) * ((line_json->>'quantity')::NUMERIC - COALESCE(refunds.quantity, 0))
) as net_sales,
shopify_shipping_allocation.shipping_collected,
shopify_shipping_allocation.shipping_tax_collected,
shopify_shipping_allocation.shipping_cost as shipping_cost,
(
COALESCE(
p.unit_material_cost + COALESCE(p.unit_freight_cost, 0),
(SELECT percent FROM default_costs WHERE type = 'materials') * (line_json->>'price')::NUMERIC
) *
(
(line_json->>'quantity')::NUMERIC -
COALESCE(refunds.quantity, 0)
)
) as material_cost,
(
COALESCE(
p.unit_labor_cost,
(SELECT percent FROM default_costs WHERE type = 'labor') * (line_json->>'price')::NUMERIC
) *
(
(line_json->>'quantity')::NUMERIC -
COALESCE(refunds.quantity, 0)
)
) as direct_labor,
amazon_fees.total_fees as sales_channel_fees,
so.discount_promotion_name,
(line_json->'discount_allocations'->0->>'amount')::NUMERIC as total_discounts_given,
so.customer_type,
so.customer_name,
so.company,
CASE
WHEN sales_channel LIKE 'Farmers Market%' AND shipping_address->>'province' IS NULL THEN 'North Carolina'
WHEN shipping_address->>'province' IS NULL THEN 'North Carolina' -- pickup
WHEN shipping_address->>'province' = 'NC' THEN 'North Carolina'
ELSE shipping_address->>'province'
END as ship_to_state,
so.is_tax_exempt,
so.date_created,
so.date_last_updated,
so.processed_date,
so.processed_year,
so.processed_month,
so.processed_period,
CASE
WHEN p.unit_material_cost IS NULL THEN 'Product Cost'
ELSE 'Average Cost'
END as cost_type
FROM
shopify_line_items so
LEFT JOIN public.integration_shopify_product sp ON (so.line_json->>'variant_id') = sp.variant_id::TEXT
LEFT JOIN public.integration_product_missing_sku missing ON
line_json->>'name' = missing.product_description AND
missing.source_system = 'Shopify' AND
sp.id IS NULL
LEFT JOIN public.operations_product psku ON so.line_json->>'sku' = psku.sku
LEFT JOIN public.operations_product p ON COALESCE(sp.product_id, missing.product_id) = p.id
LEFT JOIN public.operations_product_code pcode ON COALESCE(p.product_code_id, psku.product_code_id) = pcode.id
LEFT JOIN shopify_refunds refunds ON (line_json->>'id') = refunds.order_line_id
LEFT JOIN shopify_shipping_allocation ON (line_json->>'id') = shopify_shipping_allocation.order_line_id
LEFT JOIN amazon_fees ON
so.reference = amazon_fees."AmazonOrderId" AND
p.id = amazon_fees.product_id
UNION ALL
SELECT
'Amazon' as source_system,
CASE
WHEN "FulfillmentChannel" = 'AFN' THEN 'Amazon FBA'
WHEN "FulfillmentChannel" = 'MFN' THEN 'Amazon FBM'
END as sales_channel,
sl."AmazonOrderId" as order_id,
sl."OrderItemId"::BIGINT as order_line_id,
CASE
WHEN "OrderStatus" IN ('Pending', 'Unshipped') THEN 'Pending'
WHEN "OrderStatus" IN ('Shipped') THEN 'Shipped'
END as order_status,
CASE
WHEN COALESCE(sl."QuantityOrdered", 0) - COALESCE(sl."QuantityShipped", 0) > 0 THEN 'Unfulfilled'
ELSE 'Fulfilled'
END as fulfillment_status,
sl."AmazonOrderId" as order_number,
pcode.family as product_family,
pcode.category as product_category,
product.sku as product_sku,
product.description as product_description,
sl."ASIN" as source_product_id,
sl."SellerSKU" as source_product_sku,
sl."Title" as source_product_name,
CASE
WHEN sl."QuantityOrdered" = 0 THEN NULL
ELSE sl."QuantityOrdered"
END as quantity,
(sl."ItemPrice"->>'Amount')::NUMERIC as net_sales,
NULL::NUMERIC as shipping_collected,
NULL::NUMERIC as shipping_tax_collected,
NULL::NUMERIC as shipping_cost,
(
COALESCE(
(product.unit_material_cost + COALESCE(product.unit_freight_cost, 0)) * sl."QuantityOrdered",
(SELECT percent FROM default_costs WHERE type = 'materials') * (sl."ItemPrice"->>'Amount')::NUMERIC
)
)::NUMERIC as material_cost,
(
COALESCE(
(product.unit_labor_cost) * sl."QuantityOrdered",
(SELECT percent FROM default_costs WHERE type = 'labor') * (sl."ItemPrice"->>'Amount')::NUMERIC
)
)::NUMERIC as direct_labor,
amazon_fees.total_fees::NUMERIC as sales_channel_fees,
NULL::TEXT as discount_promotion_name,
((sl."PromotionDiscount"->>'Amount')::NUMERIC(16, 2) / sl."QuantityOrdered")::NUMERIC as total_discounts_given,
'Retail' as customer_type,
NULL::TEXT as customer_name,
NULL::TEXT as company,
NULL::TEXT as ship_to_state,
FALSE is_tax_exempt,
sh._created as date_created,
sh."LastUpdateDate" as date_last_updated,
sh."PurchaseDate" as processed_date,
DATE_PART('YEAR', sh."PurchaseDate")::INTEGER as processed_year,
DATE_PART('MONTH', sh."PurchaseDate")::INTEGER as processed_month,
DATE_TRUNC('MONTH', sh."PurchaseDate")::DATE as processed_period,
CASE
WHEN product.unit_material_cost IS NULL THEN 'Product Cost'
ELSE 'Average Cost'
END as cost_type
FROM
amazon.amazon_sales_order sh JOIN
amazon.amazon_sales_order_line sl ON sh."AmazonOrderId" = sl."AmazonOrderId" LEFT JOIN
public.integration_amazon_product ap ON sl."ASIN" = ap.asin LEFT JOIN
public.operations_product product ON ap.product_id = product.id LEFT JOIN
public.operations_product_code pcode ON product.product_code_id = pcode.id LEFT JOIN
shopify.shopify_sales_order shopify ON sh."AmazonOrderId" = shopify.reference LEFT JOIN
amazon_fees ON sl."OrderItemId" = amazon_fees."OrderItemId"
WHERE
sh."OrderStatus" <> 'Canceled' AND
shopify.id IS NULL -- don't double count between shopify and amazon
;
CREATE TEMP TABLE order_count ON COMMIT DROP AS
SELECT
order_id,
sales_channel,
count(*) as order_line_count,
sum(COALESCE(net_sales, 0) + COALESCE(shipping_collected, 0)) as total_sales
FROM
sales_orders
GROUP BY
order_id,
sales_channel
;
CREATE TEMP TABLE adder_rates ON COMMIT DROP AS
SELECT
type,
sales_channel,
apply_to,
ARRAY_AGG(name::TEXT || ' - ' || labor_minutes::TEXT || ' minutes at ' || labor_hourly_rate || ' per hour') as overlay_description,
SUM((labor_hourly_rate::NUMERIC/60::NUMERIC) * labor_minutes::NUMERIC) as labor_cost,
SUM(material_cost) as material_cost,
SUM(sales_percentage / 100::NUMERIC) as sales_percentage_fee
FROM
public.operations_order_cost_overlay
GROUP BY
type,
sales_channel,
apply_to
;
CREATE TEMP TABLE order_adder ON COMMIT DROP AS
SELECT
order_count.order_id,
order_count.sales_channel,
SUM(
(
CASE
WHEN type IN ('Fulfillment Labor', 'Shipping Materials') THEN
COALESCE(labor_cost, 0) +
COALESCE(material_cost, 0) +
COALESCE(sales_percentage_fee * total_sales, 0)
END
) / order_line_count
) as adder_fullfilment_cost,
SUM(
(
CASE
WHEN type IN ('Sales Channel Fees') THEN
COALESCE(labor_cost, 0) +
COALESCE(material_cost, 0) +
COALESCE(sales_percentage_fee * total_sales, 0)
END
) / order_line_count
) as adder_sales_channel_fees
FROM
order_count JOIN
adder_rates ON
order_count.sales_channel = adder_rates.sales_channel AND
adder_rates.apply_to = 'Each Order'
GROUP BY
order_count.order_id,
order_count.sales_channel
;
TRUNCATE TABLE report_moondance.sales_orders;
INSERT INTO report_moondance.sales_orders (
source_system,
sales_channel_type,
sales_channel_name,
order_id,
order_line_id,
order_status,
fulfillment_status,
order_number,
product_family,
product_category,
product_sku,
product_description,
source_product_id,
source_product_sku,
source_product_name,
quantity,
unit_sales_price,
unit_material_cost,
unit_direct_labor,
unit_moondance_fulfillment_cost,
unit_sales_channel_fees,
unit_cost,
net_sales,
shipping_collected,
shipping_cost,
shipping_margin,
material_cost,
direct_labor,
moondance_fulfillment_cost,
sales_channel_fees,
total_cost,
product_margin,
gross_profit,
discount_promotion_name,
total_discounts_given,
customer_type,
customer_name,
company,
ship_to_state,
is_tax_exempt,
date_created,
date_last_updated,
processed_date,
processed_year,
processed_month,
processed_period,
cost_type,
order_count,
county_tax_name,
state_tax_name,
county_transit_tax_rate,
county_base_tax_rate,
state_tax_rate,
total_county_transit_tax,
total_county_base_tax,
total_state_tax,
taxes_collected
)
SELECT
so.source_system,
CASE
WHEN so.sales_channel LIKE 'Farmer%' THEN 'Farmers Market'
WHEN so.sales_channel LIKE 'Amazon%' THEN 'Amazon'
ELSE so.sales_channel
END as sales_channel_type,
so.sales_channel as sales_channel_name,
so.order_id,
so.order_line_id,
so.order_status,
so.fulfillment_status,
so.order_number,
CASE
WHEN so.sales_channel LIKE 'Farmers Market%' AND so.product_sku IS NULL THEN 'Farmers Market Sales'
WHEN so.sales_channel = 'Shopify Retail' AND so.product_sku IS NULL THEN 'Shopify Custom Sales'
ELSE so.product_family
END as product_family,
CASE
WHEN so.sales_channel LIKE 'Farmers Market%' AND so.product_sku IS NULL THEN 'Farmers Market Sales'
WHEN so.sales_channel = 'Shopify Retail' AND so.product_sku IS NULL THEN 'Shopify Custom Sales'
ELSE so.product_category
END as product_category,
CASE
WHEN so.sales_channel LIKE 'Farmers Market%' AND so.product_sku IS NULL THEN 'Farmers Market Sales'
WHEN so.sales_channel = 'Shopify Retail' AND so.product_sku IS NULL THEN 'Shopify Custom Sales'
ELSE so.product_sku
END as product_sku,
CASE
WHEN so.sales_channel LIKE 'Farmers Market%' AND so.product_sku IS NULL THEN 'Farmers Market Sales'
WHEN so.sales_channel = 'Shopify Retail' AND so.product_sku IS NULL THEN 'Shopify Custom Sales'
ELSE so.product_description
END as product_description,
so.source_product_id,
so.source_product_sku,
so.source_product_name,
so.quantity,
(
(COALESCE(so.net_sales, 0) / quantity)
) as unit_sales_price,
(
(COALESCE(so.material_cost, 0) / quantity)
) as unit_material_cost,
(
(COALESCE(so.direct_labor, 0) / quantity)
) as unit_direct_labor,
(
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0)
) as unit_moondance_fulfillment_cost,
(
(
COALESCE(so.sales_channel_fees, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
) / quantity
) as unit_sales_channel_fees,
(
(
COALESCE(so.material_cost, 0) +
COALESCE(so.direct_labor, 0) +
COALESCE(so.sales_channel_fees, 0) +
COALESCE(so.shipping_cost, 0) +
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
) / quantity
) as unit_cost,
so.net_sales,
so.shipping_collected,
so.shipping_cost,
(
COALESCE(so.shipping_collected, 0) -
COALESCE(so.shipping_cost, 0)
) as shipping_margin,
so.material_cost,
so.direct_labor,
(
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0)
) as moondance_fulfillment_cost,
(
COALESCE(so.sales_channel_fees, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
) as sales_channel_fees,
(
COALESCE(so.material_cost, 0) +
COALESCE(so.direct_labor, 0) +
COALESCE(so.sales_channel_fees, 0) +
COALESCE(so.shipping_cost, 0) +
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
) as product_cost,
(
COALESCE(so.net_sales, 0) -
(
COALESCE(so.material_cost, 0) +
COALESCE(so.direct_labor, 0) +
COALESCE(so.sales_channel_fees, 0) +
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
)
) as product_margin,
(
COALESCE(so.net_sales, 0) +
COALESCE(so.shipping_collected, 0) -
(
COALESCE(so.material_cost, 0) +
COALESCE(so.direct_labor, 0) +
COALESCE(so.sales_channel_fees, 0) +
COALESCE(so.shipping_cost, 0) +
COALESCE(adder_line.labor_cost, 0) +
COALESCE(adder_line.material_cost, 0) +
COALESCE(order_adder.adder_fullfilment_cost, 0) +
COALESCE(order_adder.adder_sales_channel_fees, 0)
)
) as gross_profit,
discount_promotion_name,
total_discounts_given,
customer_type,
INITCAP(customer_name) as customer_name,
company,
ship_to_state,
is_tax_exempt,
date_created::DATE as date_created,
date_last_updated::DATE as date_last_updated,
processed_date::DATE as processed_date,
processed_year,
processed_month,
processed_period,
cost_type,
1::NUMERIC /order_count.order_line_count::NUMERIC as order_count,
CASE
WHEN customer_type = 'Wholesale' OR so.source_system = 'Amazon' THEN NULL
WHEN so.sales_channel = 'Farmers Market - Durham' THEN 'Durham County Tax'
WHEN so.sales_channel = 'Farmers Market - Wake Forest' THEN 'Wake County Tax'
ELSE order_line_taxes.county
END as county_tax_name,
state_tax.state as state_tax_name,
county_tax.transit_rate as county_transit_tax_rate,
county_tax.base_rate as county_base_tax_rate,
state_tax.base_rate as state_tax_rate,
(county_tax.transit_rate/100::NUMERIC) * (COALESCE(so.net_sales, 0) + COALESCE(so.shipping_collected, 0)) as total_county_transit_tax,
(county_tax.base_rate/100::NUMERIC) * (COALESCE(so.net_sales, 0) + COALESCE(so.shipping_collected, 0)) as total_county_base_tax,
(state_tax.base_rate/100::NUMERIC) * (COALESCE(so.net_sales, 0) + COALESCE(so.shipping_collected, 0)) as total_state_tax,
COALESCE(order_line_taxes.taxes_collected, 0) + COALESCE(so.shipping_tax_collected, 0) as taxes_collected
FROM
sales_orders so LEFT JOIN
adder_rates adder_line ON
so.sales_channel = adder_line.sales_channel AND
adder_line.apply_to = 'Each Order Line' LEFT JOIN
order_adder ON
so.sales_channel = order_adder.sales_channel AND
so.order_id = order_adder.order_id LEFT JOIN
order_count ON
so.sales_channel = order_count.sales_channel AND
so.order_id = order_count.order_id LEFT JOIN
order_line_taxes ON
--so.source_system != 'Amazon' AND
--so.customer_type = 'Retail' AND
so.order_line_id = order_line_taxes.order_line_id LEFT JOIN
public.accounting_tax_rate_county county_tax ON
CASE
WHEN customer_type = 'Wholesale' OR so.source_system = 'Amazon' THEN NULL
WHEN so.sales_channel = 'Farmers Market - Durham' THEN 'Durham County Tax'
WHEN so.sales_channel = 'Farmers Market - Wake Forest' THEN 'Wake County Tax'
ELSE order_line_taxes.county
END = county_tax.county LEFT JOIN
public.accounting_tax_rate_state state_tax ON county_tax.state_id = state_tax.id
;
|
CREATE TABLE `sap_real_estate_contract_contract_valuation_condition_data`
(
`InternalRealEstateNumber` varchar(13) NOT NULL,
`RETermNumber` varchar(4) NOT NULL,
`ValidityStartEndDateValue` varchar(16) NOT NULL,
`REConditionType` varchar(4) NOT NULL,
`REConditionValidityStartDate` varchar(80) DEFAULT NULL,
`REExtConditionPurpose` varchar(4) DEFAULT NULL,
`REStatusObjectCalculation` varchar(22) DEFAULT NULL,
`RETermName` varchar(60) DEFAULT NULL,
`ValidityStartDate` varchar(80) DEFAULT NULL,
`ValidityEndDate` varchar(80) DEFAULT NULL,
`REConditionValidityEndDate` varchar(80) DEFAULT NULL,
`REValuationCndnProperty` varchar(1) DEFAULT NULL,
`REValuationCndnConsdtn` varchar(1) DEFAULT NULL,
`REIsValuationCndnConsdtn` tinyint(1) DEFAULT NULL,
`REValuationCndnSharePercent` varchar(9) DEFAULT NULL,
`REValuationCndnShareAbsltAmt` varchar(16) DEFAULT NULL,
`REValuationCurrency` varchar(3) DEFAULT NULL,
`REValuationCndnStatus` varchar(1) DEFAULT NULL,
`REInfoText` varchar(100) DEFAULT NULL,
PRIMARY KEY (`InternalRealEstateNumber`, `RETermNumber`, `ValidityStartEndDateValue`),
CONSTRAINT `SAPRealEstateContractContractValuationConditionData_fk` FOREIGN KEY (`InternalRealEstateNumber`) REFERENCES `sap_real_estate_contract_contract_data` (`InternalRealEstateNumber`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;
|
drop table app_reg_tab;
create table app_reg_tab (
id serial primary key,
appid char(80) not null unique,
appkey char(80),
org smallint, --1,2
registime char(80)
);
RegisterClient
EnrollAsset(ChainID,ChainCodeID,id,[]byte)
RegisterAsset(ChainID,ChainCodeID,id, []byte)
TransactionAsset(ChainID,ChainCodeID,id1,id2, []byte)
QueryAsset(ChainID,ChainCodeID,id)
|
-- create_cards up.sql
CREATE TYPE STATUS_ENUM AS ENUM
('todo', 'doing', 'done');
CREATE TABLE
IF NOT EXISTS cards
(
id BIGSERIAL PRIMARY KEY,
board_id BIGINT NOT NULL,
description TEXT NOT NULL,
status STATUS_ENUM NOT NULL DEFAULT 'todo',
created_at TIMESTAMP
WITH TIME ZONE NOT NULL DEFAULT
(CURRENT_TIMESTAMP AT TIME ZONE 'utc'),
CONSTRAINT board_fk
FOREIGN KEY
(board_id)
REFERENCES boards
(id)
ON
DELETE CASCADE
);
-- seed db with some test data for local dev
INSERT INTO cards
(board_id, description, status)
VALUES
(1, 'Test card 1', 'todo'),
(1, 'Test card 2', 'doing'),
(1, 'Test card 3', 'done'),
(2, 'Test card 4', 'todo'),
(2, 'Test card 5', 'todo'),
(3, 'Test card 6', 'done'),
(3, 'Test card 7', 'done');
|
<gh_stars>0
-- MySQL dump 10.13 Distrib 5.7.12, for linux-glibc2.5 (x86_64)
--
-- Host: localhost Database: utility_db
-- ------------------------------------------------------
-- Server version 5.7.18-0ubuntu0.16.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 */;
/*!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 `accounts`
--
DROP TABLE IF EXISTS `accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_number` int(11) DEFAULT NULL,
`meter_number` int(11) DEFAULT NULL,
`owner` varchar(200) DEFAULT NULL,
`service_address` varchar(200) DEFAULT NULL,
`last_reading` int(11) DEFAULT NULL,
`topup` int(4) DEFAULT NULL,
`topup_status` int(1) DEFAULT '0',
`last_reading_date` bigint(14) DEFAULT NULL,
`status` int(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `accounts`
--
LOCK TABLES `accounts` WRITE;
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
INSERT INTO `accounts` VALUES (1,111,456,' <NAME>, A062588, <NAME>, Maafai Thakurufaanu Magu, 7783031','<NAME>, Maafai Thakurufaanu Magu',1569916,0,0,1676660400000,0,NULL,'2017-05-24 07:27:37'),(2,222,999,'<NAME>, Villa College, Bodu Thakurufaanu Magu, Male, Maldives, 3320000','Villa College',1057434,0,1,1584990000000,0,NULL,'2017-05-24 07:00:32'),(3,333,888,'Azma, Villa College, Bodu Thakurufaanu Magu, Male, Maldives, 3320000','Villa College',30000,0,0,NULL,0,NULL,NULL),(4,444,777,'<NAME>, Villa College, Bodu Thakurufaanu Magu, Male, Maldives, 3320000','Villa College',40000,0,0,NULL,0,NULL,NULL);
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1),('2016_06_24_111426_create_roles_permissions_tables',2),('2016_06_24_114743_create_roles_permissions_tables',3),('2016_07_21_123358_create_sessions_table',4);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
KEY `password_resets_email_index` (`email`),
KEY `password_resets_token_index` (`token`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permission_role`
--
DROP TABLE IF EXISTS `permission_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission_role` (
`role_id` int(10) unsigned NOT NULL,
`permission_id` int(10) unsigned NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`role_id`,`permission_id`),
KEY `permission_role_permission_id_foreign` (`permission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permission_role`
--
LOCK TABLES `permission_role` WRITE;
/*!40000 ALTER TABLE `permission_role` DISABLE KEYS */;
INSERT INTO `permission_role` VALUES (33,38,'2016-07-31 14:55:43','2016-07-31 14:55:43'),(1,37,'2017-02-13 06:24:51','2017-02-13 06:24:51'),(1,1,NULL,NULL),(2,37,'2016-07-31 14:50:57','2016-07-31 14:50:57'),(33,40,'2016-07-31 15:15:14','2016-07-31 15:15:14'),(34,39,'2016-07-31 14:56:46','2016-07-31 14:56:46'),(1,38,NULL,NULL),(1,39,NULL,NULL),(1,40,NULL,NULL),(35,452,'2017-02-26 07:04:28','2017-02-26 07:04:28'),(1,452,'2017-02-26 07:04:36','2017-02-26 07:04:36');
/*!40000 ALTER TABLE `permission_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permissions`
--
DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=453 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permissions`
--
LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` VALUES (1,'super_admin','Has all the rights to the application',NULL,NULL),(39,'users_admin','Default permission for the users managers','2016-07-31 14:55:24','2017-02-13 04:45:32'),(40,'permissions_admin','Can manage permissions','2016-07-31 15:14:38','2016-07-31 15:14:38'),(37,'admin','This is the administrator permission for the application','2016-07-31 14:50:42','2016-07-31 14:50:42'),(38,'roles_admin','Can manage roles','2016-07-31 14:55:01','2016-07-31 15:14:56'),(452,'configuration_admin','Administrator for Configuration','2017-02-26 02:04:19','2017-02-26 02:04:19');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `readings`
--
DROP TABLE IF EXISTS `readings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `readings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) DEFAULT NULL,
`account` int(11) DEFAULT NULL,
`date` bigint(14) DEFAULT NULL,
`reading` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1103 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `readings`
--
LOCK TABLES `readings` WRITE;
/*!40000 ALTER TABLE `readings` DISABLE KEYS */;
INSERT INTO `readings` VALUES (1,1,106,1580756400000,550,'2017-05-23 06:51:03','2017-05-23 06:51:03'),(2,1,106,1580842800000,635,'2017-05-23 06:51:37','2017-05-23 06:51:37'),(3,1,106,1580929200000,660,'2017-05-23 06:51:38','2017-05-23 06:51:38'),(4,1,106,1581015600000,660,'2017-05-23 06:51:39','2017-05-23 06:51:39'),(5,1,106,1581102000000,510,'2017-05-23 06:51:40','2017-05-23 06:51:40'),(6,1,106,1581188400000,460,'2017-05-23 06:51:41','2017-05-23 06:51:41'),(7,1,106,1581274800000,475,'2017-05-23 06:51:42','2017-05-23 06:51:42'),(8,1,106,1581361200000,590,'2017-05-23 06:51:43','2017-05-23 06:51:43'),(9,1,106,1581447600000,710,'2017-05-23 06:51:44','2017-05-23 06:51:44'),(10,1,106,1581534000000,510,'2017-05-23 06:51:45','2017-05-23 06:51:45'),(11,1,106,1581620400000,460,'2017-05-23 06:51:46','2017-05-23 06:51:46'),(12,1,106,1581706800000,750,'2017-05-23 06:51:47','2017-05-23 06:51:47'),(13,1,106,1581793200000,550,'2017-05-23 06:51:48','2017-05-23 06:51:48'),(14,1,106,1581879600000,350,'2017-05-23 06:51:49','2017-05-23 06:51:49'),(15,1,106,1581966000000,612,'2017-05-23 06:51:50','2017-05-23 06:51:50'),(16,1,106,1582052400000,220,'2017-05-23 06:51:51','2017-05-23 06:51:51'),(17,1,106,1582138800000,815,'2017-05-23 06:51:52','2017-05-23 06:51:52'),(18,1,106,1582225200000,815,'2017-05-23 06:54:31','2017-05-23 06:54:31'),(19,1,106,1582311600000,635,'2017-05-23 06:59:54','2017-05-23 06:59:54'),(20,1,106,1582398000000,220,'2017-05-23 06:59:55','2017-05-23 06:59:55'),(21,1,123,1588446000000,475,'2017-05-23 07:00:09','2017-05-23 07:00:09'),(22,1,123,1588532400000,500,'2017-05-23 07:00:11','2017-05-23 07:00:11'),(23,1,123,1588618800000,680,'2017-05-23 07:00:13','2017-05-23 07:00:13'),(24,1,123,1588618800000,680,'2017-05-23 07:00:13','2017-05-23 07:00:13'),(25,1,123,1588705200000,500,'2017-05-23 07:00:15','2017-05-23 07:00:15'),(26,1,123,1588705200000,680,'2017-05-23 07:00:15','2017-05-23 07:00:15'),(27,1,123,1588791600000,220,'2017-05-23 07:00:17','2017-05-23 07:00:17'),(28,1,123,1588791600000,680,'2017-05-23 07:00:19','2017-05-23 07:00:19'),(29,1,123,1588878000000,635,'2017-05-23 07:06:42','2017-05-23 07:06:42'),(30,1,123,1588878000000,680,'2017-05-23 07:06:42','2017-05-23 07:06:42'),(31,1,123,1588964400000,510,'2017-05-23 07:06:44','2017-05-23 07:06:44'),(32,1,123,1589050800000,350,'2017-05-23 07:06:46','2017-05-23 07:06:46'),(33,1,123,1589137200000,475,'2017-05-23 07:06:49','2017-05-23 07:06:49'),(34,1,123,1589223600000,350,'2017-05-23 07:06:50','2017-05-23 07:06:50'),(35,1,123,1589310000000,720,'2017-05-23 07:06:51','2017-05-23 07:06:51'),(36,1,123,1589396400000,750,'2017-05-23 07:06:52','2017-05-23 07:06:52'),(37,1,123,1589482800000,490,'2017-05-23 07:06:53','2017-05-23 07:06:53'),(38,1,123,1589569200000,680,'2017-05-23 07:06:54','2017-05-23 07:06:54'),(39,1,123,1589655600000,720,'2017-05-23 07:06:55','2017-05-23 07:06:55'),(40,1,123,1589742000000,500,'2017-05-23 07:06:56','2017-05-23 07:06:56'),(41,1,123,1589828400000,490,'2017-05-23 07:06:57','2017-05-23 07:06:57'),(42,1,123,1589914800000,635,'2017-05-23 07:06:58','2017-05-23 07:06:58'),(43,1,123,1590001200000,660,'2017-05-23 07:06:59','2017-05-23 07:06:59'),(44,1,123,1590087600000,815,'2017-05-23 07:07:00','2017-05-23 07:07:00'),(45,1,123,1590174000000,660,'2017-05-23 07:10:42','2017-05-23 07:10:42'),(46,1,123,1590260400000,220,'2017-05-23 07:10:43','2017-05-23 07:10:43'),(47,1,123,1590346800000,550,'2017-05-23 07:10:44','2017-05-23 07:10:44'),(48,1,123,1590433200000,635,'2017-05-23 07:10:45','2017-05-23 07:10:45'),(49,1,123,1590519600000,490,'2017-05-23 07:10:46','2017-05-23 07:10:46'),(50,1,123,1590606000000,460,'2017-05-23 07:10:47','2017-05-23 07:10:47'),(51,1,123,1590692400000,720,'2017-05-23 07:10:48','2017-05-23 07:10:48'),(52,1,123,1590778800000,350,'2017-05-23 07:10:49','2017-05-23 07:10:49'),(53,1,123,1590865200000,710,'2017-05-23 07:10:50','2017-05-23 07:10:50'),(54,1,123,1590951600000,460,'2017-05-23 07:10:51','2017-05-23 07:10:51'),(55,1,123,1591038000000,680,'2017-05-23 07:10:52','2017-05-23 07:10:52'),(56,1,123,1591124400000,815,'2017-05-23 07:10:53','2017-05-23 07:10:53'),(57,1,123,1591210800000,660,'2017-05-23 07:10:54','2017-05-23 07:10:54'),(58,1,123,1591297200000,680,'2017-05-23 07:10:55','2017-05-23 07:10:55'),(59,1,123,1591383600000,635,'2017-05-23 07:10:56','2017-05-23 07:10:56'),(60,1,123,1591470000000,490,'2017-05-23 07:10:57','2017-05-23 07:10:57'),(61,1,123,1591556400000,510,'2017-05-23 07:10:58','2017-05-23 07:10:58'),(62,1,123,1591642800000,220,'2017-05-23 07:10:59','2017-05-23 07:10:59'),(63,1,123,1591729200000,815,'2017-05-23 07:11:00','2017-05-23 07:11:00'),(64,1,123,1591815600000,475,'2017-05-23 07:11:01','2017-05-23 07:11:01'),(65,1,123,1591902000000,220,'2017-05-23 07:11:02','2017-05-23 07:11:02'),(66,1,123,1591988400000,220,'2017-05-23 07:11:03','2017-05-23 07:11:03'),(67,1,123,1592074800000,680,'2017-05-23 07:11:04','2017-05-23 07:11:04'),(68,1,123,1592161200000,350,'2017-05-23 07:11:05','2017-05-23 07:11:05'),(69,1,123,1592247600000,350,'2017-05-23 07:11:06','2017-05-23 07:11:06'),(70,1,123,1592334000000,612,'2017-05-23 07:11:07','2017-05-23 07:11:07'),(71,1,123,1592420400000,660,'2017-05-23 07:11:08','2017-05-23 07:11:08'),(72,1,123,1592506800000,815,'2017-05-23 07:11:09','2017-05-23 07:11:09'),(73,1,123,1592593200000,400,'2017-05-23 07:11:10','2017-05-23 07:11:10'),(74,1,123,1592679600000,635,'2017-05-23 07:11:11','2017-05-23 07:11:11'),(75,1,123,1592766000000,220,'2017-05-23 07:11:12','2017-05-23 07:11:12'),(76,1,123,1592852400000,590,'2017-05-23 07:11:13','2017-05-23 07:11:13'),(77,1,123,1592938800000,490,'2017-05-23 07:11:14','2017-05-23 07:11:14'),(78,1,123,1593025200000,710,'2017-05-23 07:11:15','2017-05-23 07:11:15'),(79,1,123,1593111600000,750,'2017-05-23 07:11:16','2017-05-23 07:11:16'),(80,1,123,1593198000000,460,'2017-05-23 07:11:17','2017-05-23 07:11:17'),(81,1,123,1593284400000,590,'2017-05-23 07:11:18','2017-05-23 07:11:18'),(82,1,123,1593370800000,400,'2017-05-23 07:11:19','2017-05-23 07:11:19'),(83,1,123,1593457200000,510,'2017-05-23 07:11:20','2017-05-23 07:11:20'),(84,1,123,1593543600000,635,'2017-05-23 07:11:21','2017-05-23 07:11:21'),(85,1,123,1593630000000,475,'2017-05-23 07:11:22','2017-05-23 07:11:22'),(86,1,123,1593716400000,550,'2017-05-23 07:11:23','2017-05-23 07:11:23'),(87,1,123,1593802800000,460,'2017-05-23 07:11:24','2017-05-23 07:11:24'),(88,1,123,1593889200000,660,'2017-05-23 07:11:25','2017-05-23 07:11:25'),(89,1,123,1593975600000,680,'2017-05-23 07:11:26','2017-05-23 07:11:26'),(90,1,123,1594062000000,510,'2017-05-23 07:11:27','2017-05-23 07:11:27'),(91,1,123,1594148400000,612,'2017-05-23 07:11:28','2017-05-23 07:11:28'),(92,1,123,1594234800000,660,'2017-05-23 07:11:29','2017-05-23 07:11:29'),(93,1,123,1594321200000,350,'2017-05-23 07:11:30','2017-05-23 07:11:30'),(94,1,123,1594407600000,710,'2017-05-23 07:11:31','2017-05-23 07:11:31'),(95,1,123,1594494000000,220,'2017-05-23 07:11:32','2017-05-23 07:11:32'),(96,1,123,1594580400000,720,'2017-05-23 07:11:33','2017-05-23 07:11:33'),(97,1,123,1594666800000,750,'2017-05-23 07:11:34','2017-05-23 07:11:34'),(98,1,123,1594753200000,475,'2017-05-23 07:11:35','2017-05-23 07:11:35'),(99,1,123,1594839600000,590,'2017-05-23 07:11:36','2017-05-23 07:11:36'),(100,1,123,1594926000000,510,'2017-05-23 07:11:37','2017-05-23 07:11:37'),(101,1,123,1595012400000,490,'2017-05-23 07:11:38','2017-05-23 07:11:38'),(102,1,123,1595098800000,635,'2017-05-23 07:11:39','2017-05-23 07:11:39'),(103,1,123,1595185200000,475,'2017-05-23 07:11:40','2017-05-23 07:11:40'),(104,1,123,1595271600000,660,'2017-05-23 07:11:41','2017-05-23 07:11:41'),(105,1,123,1595358000000,475,'2017-05-23 07:11:42','2017-05-23 07:11:42'),(106,1,123,1595444400000,510,'2017-05-23 07:11:43','2017-05-23 07:11:43'),(107,1,123,1595530800000,510,'2017-05-23 07:11:44','2017-05-23 07:11:44'),(108,1,123,1595617200000,612,'2017-05-23 07:11:45','2017-05-23 07:11:45'),(109,1,123,1595703600000,815,'2017-05-23 07:11:47','2017-05-23 07:11:47'),(110,1,123,1595790000000,220,'2017-05-23 07:11:48','2017-05-23 07:11:48'),(111,1,123,1595876400000,350,'2017-05-23 07:11:49','2017-05-23 07:11:49'),(112,1,123,1595962800000,710,'2017-05-23 07:11:50','2017-05-23 07:11:50'),(113,1,123,1596049200000,750,'2017-05-23 07:11:51','2017-05-23 07:11:51'),(114,1,123,1596135600000,815,'2017-05-23 07:11:52','2017-05-23 07:11:52'),(115,1,123,1596222000000,550,'2017-05-23 07:11:53','2017-05-23 07:11:53'),(116,1,123,1596308400000,460,'2017-05-23 07:11:54','2017-05-23 07:11:54'),(117,1,123,1596394800000,660,'2017-05-23 07:11:55','2017-05-23 07:11:55'),(118,1,123,1596481200000,220,'2017-05-23 07:11:56','2017-05-23 07:11:56'),(119,1,123,1596567600000,590,'2017-05-23 07:11:57','2017-05-23 07:11:57'),(120,1,123,1596654000000,590,'2017-05-23 07:11:58','2017-05-23 07:11:58'),(121,1,123,1596740400000,490,'2017-05-23 07:11:59','2017-05-23 07:11:59'),(122,1,123,1596826800000,590,'2017-05-23 07:12:00','2017-05-23 07:12:00'),(123,1,123,1596913200000,635,'2017-05-23 07:12:01','2017-05-23 07:12:01'),(124,1,123,1596999600000,720,'2017-05-23 07:12:02','2017-05-23 07:12:02'),(125,1,123,1597086000000,815,'2017-05-23 07:12:03','2017-05-23 07:12:03'),(126,1,123,1597172400000,590,'2017-05-23 07:12:04','2017-05-23 07:12:04'),(127,1,123,1597258800000,590,'2017-05-23 07:12:05','2017-05-23 07:12:05'),(128,1,123,1597345200000,490,'2017-05-23 07:12:06','2017-05-23 07:12:06'),(129,1,123,1597431600000,220,'2017-05-23 07:12:07','2017-05-23 07:12:07'),(130,1,123,1597518000000,460,'2017-05-23 07:12:08','2017-05-23 07:12:08'),(131,1,123,1597604400000,510,'2017-05-23 07:12:09','2017-05-23 07:12:09'),(132,1,123,1597690800000,475,'2017-05-23 07:12:10','2017-05-23 07:12:10'),(133,1,123,1597777200000,750,'2017-05-23 07:12:11','2017-05-23 07:12:11'),(134,1,123,1597863600000,500,'2017-05-23 07:12:12','2017-05-23 07:12:12'),(135,1,123,1597950000000,750,'2017-05-23 07:12:13','2017-05-23 07:12:13'),(136,1,123,1598036400000,475,'2017-05-23 07:12:14','2017-05-23 07:12:14'),(137,1,123,1598122800000,660,'2017-05-23 07:12:15','2017-05-23 07:12:15'),(138,1,123,1598209200000,590,'2017-05-23 07:12:16','2017-05-23 07:12:16'),(139,1,123,1598295600000,510,'2017-05-23 07:12:17','2017-05-23 07:12:17'),(140,1,123,1598382000000,475,'2017-05-23 07:12:18','2017-05-23 07:12:18'),(141,1,123,1598468400000,510,'2017-05-23 07:12:19','2017-05-23 07:12:19'),(142,1,123,1598554800000,635,'2017-05-23 07:12:20','2017-05-23 07:12:20'),(143,1,123,1598641200000,220,'2017-05-23 07:12:21','2017-05-23 07:12:21'),(144,1,123,1598727600000,612,'2017-05-23 07:12:22','2017-05-23 07:12:22'),(145,1,123,1598814000000,500,'2017-05-23 07:12:23','2017-05-23 07:12:23'),(146,1,123,1598900400000,710,'2017-05-23 07:12:24','2017-05-23 07:12:24'),(147,1,123,1598986800000,490,'2017-05-23 07:12:25','2017-05-23 07:12:25'),(148,1,123,1599073200000,460,'2017-05-23 07:12:26','2017-05-23 07:12:26'),(149,1,123,1599159600000,612,'2017-05-23 07:12:27','2017-05-23 07:12:27'),(150,1,123,1599246000000,500,'2017-05-23 07:12:28','2017-05-23 07:12:28'),(151,1,123,1599332400000,550,'2017-05-23 07:12:29','2017-05-23 07:12:29'),(152,1,123,1599418800000,680,'2017-05-23 07:12:31','2017-05-23 07:12:31'),(153,1,123,1599505200000,720,'2017-05-23 07:12:31','2017-05-23 07:12:31'),(154,1,123,1599591600000,680,'2017-05-23 07:12:32','2017-05-23 07:12:32'),(155,1,123,1599678000000,475,'2017-05-23 07:12:33','2017-05-23 07:12:33'),(156,1,123,1599764400000,750,'2017-05-23 07:12:34','2017-05-23 07:12:34'),(157,1,123,1599850800000,660,'2017-05-23 07:12:35','2017-05-23 07:12:35'),(158,1,123,1599937200000,500,'2017-05-23 07:12:36','2017-05-23 07:12:36'),(159,1,123,1600023600000,475,'2017-05-23 07:12:37','2017-05-23 07:12:37'),(160,1,123,1600110000000,710,'2017-05-23 07:12:38','2017-05-23 07:12:38'),(161,1,123,1600196400000,220,'2017-05-23 07:12:39','2017-05-23 07:12:39'),(162,1,123,1600282800000,460,'2017-05-23 07:12:40','2017-05-23 07:12:40'),(163,1,123,1600369200000,475,'2017-05-23 07:12:41','2017-05-23 07:12:41'),(164,1,123,1600455600000,550,'2017-05-23 07:12:42','2017-05-23 07:12:42'),(165,1,123,1600542000000,400,'2017-05-23 07:12:43','2017-05-23 07:12:43'),(166,1,123,1600628400000,490,'2017-05-23 07:12:44','2017-05-23 07:12:44'),(167,1,123,1600714800000,220,'2017-05-23 07:12:45','2017-05-23 07:12:45'),(168,1,123,1600801200000,475,'2017-05-23 07:12:46','2017-05-23 07:12:46'),(169,1,123,1600887600000,710,'2017-05-23 07:12:47','2017-05-23 07:12:47'),(170,1,123,1600974000000,550,'2017-05-23 07:12:48','2017-05-23 07:12:48'),(171,1,123,1601060400000,475,'2017-05-23 07:12:49','2017-05-23 07:12:49'),(172,1,123,1601146800000,400,'2017-05-23 07:12:50','2017-05-23 07:12:50'),(173,1,123,1601233200000,475,'2017-05-23 07:12:51','2017-05-23 07:12:51'),(174,1,123,1601319600000,750,'2017-05-23 07:12:52','2017-05-23 07:12:52'),(175,1,123,1601406000000,590,'2017-05-23 07:12:53','2017-05-23 07:12:53'),(176,1,123,1601492400000,400,'2017-05-23 07:12:54','2017-05-23 07:12:54'),(177,1,123,1601578800000,635,'2017-05-23 07:12:55','2017-05-23 07:12:55'),(178,1,123,1601665200000,612,'2017-05-23 07:12:56','2017-05-23 07:12:56'),(179,1,123,1601751600000,750,'2017-05-23 07:12:57','2017-05-23 07:12:57'),(180,1,123,1601838000000,350,'2017-05-23 07:12:58','2017-05-23 07:12:58'),(181,1,123,1601924400000,815,'2017-05-23 07:12:59','2017-05-23 07:12:59'),(182,1,123,1602010800000,612,'2017-05-23 07:13:00','2017-05-23 07:13:00'),(183,1,123,1602097200000,490,'2017-05-23 07:13:01','2017-05-23 07:13:01'),(184,1,123,1602183600000,612,'2017-05-23 07:13:02','2017-05-23 07:13:02'),(185,1,123,1602270000000,635,'2017-05-23 07:13:03','2017-05-23 07:13:03'),(186,1,123,1602356400000,510,'2017-05-23 07:13:04','2017-05-23 07:13:04'),(187,1,123,1602442800000,815,'2017-05-23 07:13:05','2017-05-23 07:13:05'),(188,1,123,1602529200000,350,'2017-05-23 07:13:06','2017-05-23 07:13:06'),(189,1,123,1602615600000,720,'2017-05-23 07:13:07','2017-05-23 07:13:07'),(190,1,123,1602702000000,475,'2017-05-23 07:13:08','2017-05-23 07:13:08'),(191,1,123,1602788400000,750,'2017-05-23 07:13:09','2017-05-23 07:13:09'),(192,1,123,1602874800000,350,'2017-05-23 07:13:10','2017-05-23 07:13:10'),(193,1,123,1602961200000,220,'2017-05-23 07:13:11','2017-05-23 07:13:11'),(194,1,123,1603047600000,500,'2017-05-23 07:13:12','2017-05-23 07:13:12'),(195,1,123,1603134000000,612,'2017-05-23 07:13:13','2017-05-23 07:13:13'),(196,1,123,1603220400000,500,'2017-05-23 07:13:14','2017-05-23 07:13:14'),(197,1,123,1603306800000,510,'2017-05-23 07:13:15','2017-05-23 07:13:15'),(198,1,123,1603393200000,750,'2017-05-23 07:13:16','2017-05-23 07:13:16'),(199,1,123,1603479600000,720,'2017-05-23 07:13:17','2017-05-23 07:13:17'),(200,1,123,1603566000000,815,'2017-05-23 07:13:18','2017-05-23 07:13:18'),(201,1,123,1603652400000,350,'2017-05-23 07:13:19','2017-05-23 07:13:19'),(202,1,123,1603738800000,475,'2017-05-23 07:13:20','2017-05-23 07:13:20'),(203,1,123,1603825200000,400,'2017-05-23 07:13:21','2017-05-23 07:13:21'),(204,1,123,1603911600000,720,'2017-05-23 07:13:22','2017-05-23 07:13:22'),(205,1,123,1603998000000,720,'2017-05-23 07:13:23','2017-05-23 07:13:23'),(206,1,123,1604084400000,350,'2017-05-23 07:13:24','2017-05-23 07:13:24'),(207,1,123,1604170800000,500,'2017-05-23 07:13:25','2017-05-23 07:13:25'),(208,1,123,1604257200000,710,'2017-05-23 07:13:26','2017-05-23 07:13:26'),(209,1,123,1604343600000,710,'2017-05-23 07:13:27','2017-05-23 07:13:27'),(210,1,123,1604430000000,350,'2017-05-23 07:13:28','2017-05-23 07:13:28'),(211,1,123,1604516400000,500,'2017-05-23 07:13:29','2017-05-23 07:13:29'),(212,1,123,1604602800000,500,'2017-05-23 07:13:30','2017-05-23 07:13:30'),(213,1,123,1604689200000,710,'2017-05-23 07:13:31','2017-05-23 07:13:31'),(214,1,123,1604775600000,550,'2017-05-23 07:13:32','2017-05-23 07:13:32'),(215,1,123,1604862000000,660,'2017-05-23 07:13:33','2017-05-23 07:13:33'),(216,1,123,1604948400000,490,'2017-05-23 07:13:34','2017-05-23 07:13:34'),(217,1,123,1605034800000,680,'2017-05-23 07:13:35','2017-05-23 07:13:35'),(218,1,123,1605121200000,220,'2017-05-23 07:13:36','2017-05-23 07:13:36'),(219,1,123,1605207600000,510,'2017-05-23 07:13:37','2017-05-23 07:13:37'),(220,1,123,1605294000000,680,'2017-05-23 07:13:38','2017-05-23 07:13:38'),(221,1,123,1605380400000,460,'2017-05-23 07:13:39','2017-05-23 07:13:39'),(222,1,123,1605466800000,490,'2017-05-23 07:13:40','2017-05-23 07:13:40'),(223,1,123,1605553200000,590,'2017-05-23 07:13:41','2017-05-23 07:13:41'),(224,1,123,1605639600000,350,'2017-05-23 07:13:42','2017-05-23 07:13:42'),(225,1,123,1605726000000,475,'2017-05-23 07:13:43','2017-05-23 07:13:43'),(226,1,123,1605812400000,220,'2017-05-23 07:13:44','2017-05-23 07:13:44'),(227,1,123,1605898800000,660,'2017-05-23 07:13:45','2017-05-23 07:13:45'),(228,1,123,1605985200000,815,'2017-05-23 07:13:46','2017-05-23 07:13:46'),(229,1,123,1606071600000,720,'2017-05-23 07:13:47','2017-05-23 07:13:47'),(230,1,123,1606158000000,815,'2017-05-23 07:13:48','2017-05-23 07:13:48'),(231,1,123,1606244400000,720,'2017-05-23 07:13:49','2017-05-23 07:13:49'),(232,1,123,1606330800000,720,'2017-05-23 07:13:50','2017-05-23 07:13:50'),(233,1,123,1606417200000,400,'2017-05-23 07:13:51','2017-05-23 07:13:51'),(234,1,123,1606503600000,475,'2017-05-23 07:13:52','2017-05-23 07:13:52'),(235,1,123,1606590000000,510,'2017-05-23 07:13:53','2017-05-23 07:13:53'),(236,1,123,1606676400000,490,'2017-05-23 07:13:54','2017-05-23 07:13:54'),(237,1,123,1606762800000,635,'2017-05-23 07:13:55','2017-05-23 07:13:55'),(238,1,123,1606849200000,550,'2017-05-23 07:13:56','2017-05-23 07:13:56'),(239,1,123,1606935600000,750,'2017-05-23 07:13:57','2017-05-23 07:13:57'),(240,1,123,1607022000000,500,'2017-05-23 07:13:58','2017-05-23 07:13:58'),(241,1,123,1607108400000,750,'2017-05-23 07:13:59','2017-05-23 07:13:59'),(242,1,123,1607194800000,635,'2017-05-23 07:14:00','2017-05-23 07:14:00'),(243,1,123,1607281200000,710,'2017-05-23 07:14:01','2017-05-23 07:14:01'),(244,1,123,1607367600000,680,'2017-05-23 07:14:02','2017-05-23 07:14:02'),(245,1,123,1607454000000,500,'2017-05-23 07:14:03','2017-05-23 07:14:03'),(246,1,123,1607540400000,500,'2017-05-23 07:14:04','2017-05-23 07:14:04'),(247,1,123,1607626800000,710,'2017-05-23 07:14:05','2017-05-23 07:14:05'),(248,1,123,1607713200000,460,'2017-05-23 07:14:06','2017-05-23 07:14:06'),(249,1,123,1607799600000,500,'2017-05-23 07:14:07','2017-05-23 07:14:07'),(250,1,123,1607886000000,815,'2017-05-23 07:14:08','2017-05-23 07:14:08'),(251,1,123,1607972400000,720,'2017-05-23 07:14:09','2017-05-23 07:14:09'),(252,1,123,1608058800000,720,'2017-05-23 07:14:10','2017-05-23 07:14:10'),(253,1,123,1608145200000,490,'2017-05-23 07:14:11','2017-05-23 07:14:11'),(254,1,123,1608231600000,680,'2017-05-23 07:14:12','2017-05-23 07:14:12'),(255,1,123,1608318000000,710,'2017-05-23 07:14:13','2017-05-23 07:14:13'),(256,1,123,1608404400000,510,'2017-05-23 07:14:14','2017-05-23 07:14:14'),(257,1,123,1608490800000,612,'2017-05-23 07:14:15','2017-05-23 07:14:15'),(258,1,123,1608577200000,815,'2017-05-23 07:14:16','2017-05-23 07:14:16'),(259,1,123,1608663600000,510,'2017-05-23 07:14:17','2017-05-23 07:14:17'),(260,1,123,1608750000000,500,'2017-05-23 07:14:18','2017-05-23 07:14:18'),(261,1,123,1608836400000,350,'2017-05-23 07:14:19','2017-05-23 07:14:19'),(262,1,123,1608922800000,500,'2017-05-23 07:14:20','2017-05-23 07:14:20'),(263,1,123,1609009200000,612,'2017-05-23 07:14:21','2017-05-23 07:14:21'),(264,1,123,1609095600000,475,'2017-05-23 07:14:22','2017-05-23 07:14:22'),(265,1,123,1609182000000,612,'2017-05-23 07:14:23','2017-05-23 07:14:23'),(266,1,123,1609268400000,590,'2017-05-23 07:14:24','2017-05-23 07:14:24'),(267,1,123,1609354800000,750,'2017-05-23 07:14:25','2017-05-23 07:14:25'),(268,1,123,1609441200000,475,'2017-05-23 07:14:26','2017-05-23 07:14:26'),(269,1,123,1609527600000,710,'2017-05-23 07:14:27','2017-05-23 07:14:27'),(270,1,123,1609614000000,612,'2017-05-23 07:14:28','2017-05-23 07:14:28'),(271,1,123,1609700400000,500,'2017-05-23 07:14:29','2017-05-23 07:14:29'),(272,1,123,1609786800000,710,'2017-05-23 07:14:30','2017-05-23 07:14:30'),(273,1,123,1609873200000,612,'2017-05-23 07:14:31','2017-05-23 07:14:31'),(274,1,123,1609959600000,500,'2017-05-23 07:14:32','2017-05-23 07:14:32'),(275,1,123,1610046000000,720,'2017-05-23 07:14:33','2017-05-23 07:14:33'),(276,1,123,1610132400000,590,'2017-05-23 07:14:34','2017-05-23 07:14:34'),(277,1,123,1610218800000,710,'2017-05-23 07:14:35','2017-05-23 07:14:35'),(278,1,123,1610305200000,680,'2017-05-23 07:14:36','2017-05-23 07:14:36'),(279,1,123,1610391600000,400,'2017-05-23 07:14:37','2017-05-23 07:14:37'),(280,1,123,1610478000000,590,'2017-05-23 07:14:38','2017-05-23 07:14:38'),(281,1,123,1610564400000,220,'2017-05-23 07:14:39','2017-05-23 07:14:39'),(282,1,123,1610650800000,635,'2017-05-23 07:14:40','2017-05-23 07:14:40'),(283,1,123,1610737200000,680,'2017-05-23 07:14:41','2017-05-23 07:14:41'),(284,1,123,1610823600000,220,'2017-05-23 07:14:42','2017-05-23 07:14:42'),(285,1,123,1610910000000,660,'2017-05-23 07:14:43','2017-05-23 07:14:43'),(286,1,123,1610996400000,475,'2017-05-23 07:14:44','2017-05-23 07:14:44'),(287,1,123,1611082800000,815,'2017-05-23 07:14:45','2017-05-23 07:14:45'),(288,1,123,1611169200000,750,'2017-05-23 07:14:46','2017-05-23 07:14:46'),(289,1,123,1611255600000,220,'2017-05-23 07:14:47','2017-05-23 07:14:47'),(290,1,123,1611342000000,475,'2017-05-23 07:14:48','2017-05-23 07:14:48'),(291,1,123,1611428400000,475,'2017-05-23 07:14:49','2017-05-23 07:14:49'),(292,1,123,1611514800000,220,'2017-05-23 07:14:50','2017-05-23 07:14:50'),(293,1,123,1611601200000,400,'2017-05-23 07:14:51','2017-05-23 07:14:51'),(294,1,123,1611687600000,750,'2017-05-23 07:14:52','2017-05-23 07:14:52'),(295,1,123,1611774000000,710,'2017-05-23 07:14:53','2017-05-23 07:14:53'),(296,1,123,1611860400000,350,'2017-05-23 07:14:54','2017-05-23 07:14:54'),(297,1,123,1611946800000,680,'2017-05-23 07:14:55','2017-05-23 07:14:55'),(298,1,123,1612033200000,550,'2017-05-23 07:14:56','2017-05-23 07:14:56'),(299,1,123,1612119600000,400,'2017-05-23 07:14:57','2017-05-23 07:14:57'),(300,1,123,1612206000000,350,'2017-05-23 07:14:58','2017-05-23 07:14:58'),(301,1,123,1612292400000,710,'2017-05-23 07:14:59','2017-05-23 07:14:59'),(302,1,123,1612378800000,815,'2017-05-23 07:15:00','2017-05-23 07:15:00'),(303,1,123,1612465200000,612,'2017-05-23 07:15:01','2017-05-23 07:15:01'),(304,1,123,1612551600000,750,'2017-05-23 07:15:02','2017-05-23 07:15:02'),(305,1,123,1612638000000,550,'2017-05-23 07:15:03','2017-05-23 07:15:03'),(306,1,123,1612724400000,460,'2017-05-23 07:15:04','2017-05-23 07:15:04'),(307,1,123,1612810800000,475,'2017-05-23 07:15:05','2017-05-23 07:15:05'),(308,1,123,1612897200000,720,'2017-05-23 07:15:06','2017-05-23 07:15:06'),(309,1,123,1612983600000,460,'2017-05-23 07:15:07','2017-05-23 07:15:07'),(310,1,123,1613070000000,350,'2017-05-23 07:15:08','2017-05-23 07:15:08'),(311,1,123,1613156400000,475,'2017-05-23 07:15:09','2017-05-23 07:15:09'),(312,1,123,1613242800000,660,'2017-05-23 07:15:10','2017-05-23 07:15:10'),(313,1,123,1613329200000,490,'2017-05-23 07:15:11','2017-05-23 07:15:11'),(314,1,123,1613415600000,500,'2017-05-23 07:15:12','2017-05-23 07:15:12'),(315,1,123,1613502000000,720,'2017-05-23 07:15:13','2017-05-23 07:15:13'),(316,1,123,1613588400000,680,'2017-05-23 07:15:14','2017-05-23 07:15:14'),(317,1,123,1613674800000,490,'2017-05-23 07:15:15','2017-05-23 07:15:15'),(318,1,123,1613761200000,490,'2017-05-23 07:15:16','2017-05-23 07:15:16'),(319,1,123,1613847600000,350,'2017-05-23 07:15:17','2017-05-23 07:15:17'),(320,1,123,1613934000000,510,'2017-05-23 07:15:18','2017-05-23 07:15:18'),(321,1,123,1614020400000,815,'2017-05-23 07:15:19','2017-05-23 07:15:19'),(322,1,123,1614106800000,612,'2017-05-23 07:15:20','2017-05-23 07:15:20'),(323,1,123,1614193200000,750,'2017-05-23 07:15:21','2017-05-23 07:15:21'),(324,1,123,1614279600000,500,'2017-05-23 07:15:22','2017-05-23 07:15:22'),(325,1,123,1614366000000,815,'2017-05-23 07:15:23','2017-05-23 07:15:23'),(326,1,123,1614452400000,490,'2017-05-23 07:15:24','2017-05-23 07:15:24'),(327,1,123,1614538800000,590,'2017-05-23 07:15:25','2017-05-23 07:15:25'),(328,1,123,1614625200000,815,'2017-05-23 07:15:26','2017-05-23 07:15:26'),(329,1,123,1614711600000,635,'2017-05-23 07:15:27','2017-05-23 07:15:27'),(330,1,123,1614798000000,612,'2017-05-23 07:15:28','2017-05-23 07:15:28'),(331,1,123,1614884400000,635,'2017-05-23 07:15:29','2017-05-23 07:15:29'),(332,1,123,1614970800000,350,'2017-05-23 07:15:30','2017-05-23 07:15:30'),(333,1,123,1615057200000,680,'2017-05-23 07:15:31','2017-05-23 07:15:31'),(334,1,123,1615143600000,460,'2017-05-23 07:15:32','2017-05-23 07:15:32'),(335,1,123,1615230000000,475,'2017-05-23 07:15:33','2017-05-23 07:15:33'),(336,1,123,1615316400000,815,'2017-05-23 07:15:34','2017-05-23 07:15:34'),(337,1,123,1615402800000,660,'2017-05-23 07:15:35','2017-05-23 07:15:35'),(338,1,123,1615489200000,400,'2017-05-23 07:15:36','2017-05-23 07:15:36'),(339,1,123,1615575600000,720,'2017-05-23 07:15:37','2017-05-23 07:15:37'),(340,1,123,1615662000000,720,'2017-05-23 07:15:38','2017-05-23 07:15:38'),(341,1,123,1615748400000,660,'2017-05-23 07:15:39','2017-05-23 07:15:39'),(342,1,123,1615834800000,220,'2017-05-23 07:15:40','2017-05-23 07:15:40'),(343,1,123,1615921200000,510,'2017-05-23 07:15:41','2017-05-23 07:15:41'),(344,1,123,1616007600000,550,'2017-05-23 07:15:42','2017-05-23 07:15:42'),(345,1,123,1616094000000,660,'2017-05-23 07:15:43','2017-05-23 07:15:43'),(346,1,123,1616180400000,510,'2017-05-23 07:15:44','2017-05-23 07:15:44'),(347,1,123,1616266800000,590,'2017-05-23 07:15:45','2017-05-23 07:15:45'),(348,1,123,1616353200000,500,'2017-05-23 07:15:46','2017-05-23 07:15:46'),(349,1,123,1616439600000,350,'2017-05-23 07:15:47','2017-05-23 07:15:47'),(350,1,123,1616526000000,510,'2017-05-23 07:15:48','2017-05-23 07:15:48'),(351,1,123,1616612400000,720,'2017-05-23 07:15:49','2017-05-23 07:15:49'),(352,1,123,1616698800000,460,'2017-05-23 07:15:50','2017-05-23 07:15:50'),(353,1,123,1616871600000,490,'2017-05-23 07:15:52','2017-05-23 07:15:52'),(354,1,123,1616958000000,720,'2017-05-23 07:15:53','2017-05-23 07:15:53'),(355,1,123,1617044400000,612,'2017-05-23 07:15:54','2017-05-23 07:15:54'),(356,1,123,1617130800000,350,'2017-05-23 07:15:55','2017-05-23 07:15:55'),(357,1,123,1617217200000,510,'2017-05-23 07:15:56','2017-05-23 07:15:56'),(358,1,123,1617303600000,815,'2017-05-23 07:15:57','2017-05-23 07:15:57'),(359,1,123,1617390000000,680,'2017-05-23 07:15:58','2017-05-23 07:15:58'),(360,1,123,1617476400000,550,'2017-05-23 07:15:59','2017-05-23 07:15:59'),(361,1,123,1617562800000,680,'2017-05-23 07:16:00','2017-05-23 07:16:00'),(362,1,123,1617649200000,550,'2017-05-23 07:16:01','2017-05-23 07:16:01'),(363,1,123,1617735600000,510,'2017-05-23 07:16:02','2017-05-23 07:16:02'),(364,1,123,1617822000000,720,'2017-05-23 07:16:03','2017-05-23 07:16:03'),(365,1,123,1617908400000,220,'2017-05-23 07:16:04','2017-05-23 07:16:04'),(366,1,123,1617994800000,460,'2017-05-23 07:16:05','2017-05-23 07:16:05'),(367,1,123,1618081200000,500,'2017-05-23 07:16:06','2017-05-23 07:16:06'),(368,1,123,1618167600000,510,'2017-05-23 07:16:07','2017-05-23 07:16:07'),(369,1,123,1618254000000,680,'2017-05-23 07:16:08','2017-05-23 07:16:08'),(370,1,123,1618340400000,475,'2017-05-23 07:16:09','2017-05-23 07:16:09'),(371,1,123,1618426800000,720,'2017-05-23 07:16:10','2017-05-23 07:16:10'),(372,1,123,1618513200000,475,'2017-05-23 07:16:11','2017-05-23 07:16:11'),(373,1,123,1618599600000,710,'2017-05-23 07:16:12','2017-05-23 07:16:12'),(374,1,123,1618686000000,635,'2017-05-23 07:16:13','2017-05-23 07:16:13'),(375,1,123,1618772400000,612,'2017-05-23 07:16:14','2017-05-23 07:16:14'),(376,1,123,1618858800000,612,'2017-05-23 07:16:15','2017-05-23 07:16:15'),(377,1,123,1618945200000,635,'2017-05-23 07:16:16','2017-05-23 07:16:16'),(378,1,123,1619031600000,590,'2017-05-23 07:16:17','2017-05-23 07:16:17'),(379,1,123,1619118000000,490,'2017-05-23 07:16:18','2017-05-23 07:16:18'),(380,1,123,1619204400000,710,'2017-05-23 07:16:19','2017-05-23 07:16:19'),(381,1,123,1619290800000,612,'2017-05-23 07:16:20','2017-05-23 07:16:20'),(382,1,123,1619377200000,500,'2017-05-23 07:16:21','2017-05-23 07:16:21'),(383,1,123,1619463600000,750,'2017-05-23 07:16:22','2017-05-23 07:16:22'),(384,1,123,1619550000000,635,'2017-05-23 07:16:23','2017-05-23 07:16:23'),(385,1,123,1619636400000,475,'2017-05-23 07:16:24','2017-05-23 07:16:24'),(386,1,123,1619722800000,350,'2017-05-23 07:16:25','2017-05-23 07:16:25'),(387,1,123,1619809200000,550,'2017-05-23 07:16:26','2017-05-23 07:16:26'),(388,1,123,1619895600000,710,'2017-05-23 07:16:27','2017-05-23 07:16:27'),(389,1,123,1619982000000,475,'2017-05-23 07:16:28','2017-05-23 07:16:28'),(390,1,123,1620068400000,400,'2017-05-23 07:16:29','2017-05-23 07:16:29'),(391,1,123,1620154800000,815,'2017-05-23 07:16:30','2017-05-23 07:16:30'),(392,1,123,1620241200000,612,'2017-05-23 07:16:31','2017-05-23 07:16:31'),(393,1,123,1620327600000,510,'2017-05-23 07:16:32','2017-05-23 07:16:32'),(394,1,123,1620414000000,815,'2017-05-23 07:16:33','2017-05-23 07:16:33'),(395,1,123,1620500400000,710,'2017-05-23 07:16:34','2017-05-23 07:16:34'),(396,1,123,1620586800000,490,'2017-05-23 07:16:35','2017-05-23 07:16:35'),(397,1,123,1620673200000,500,'2017-05-23 07:16:36','2017-05-23 07:16:36'),(398,1,123,1620759600000,400,'2017-05-23 07:16:37','2017-05-23 07:16:37'),(399,1,123,1620846000000,220,'2017-05-23 07:16:38','2017-05-23 07:16:38'),(400,1,123,1620932400000,815,'2017-05-23 07:16:39','2017-05-23 07:16:39'),(401,1,123,1621018800000,475,'2017-05-23 07:16:40','2017-05-23 07:16:40'),(402,1,123,1621105200000,720,'2017-05-23 07:16:41','2017-05-23 07:16:41'),(403,1,123,1621191600000,815,'2017-05-23 07:16:42','2017-05-23 07:16:42'),(404,1,123,1621278000000,710,'2017-05-23 07:16:43','2017-05-23 07:16:43'),(405,1,123,1621364400000,750,'2017-05-23 07:16:44','2017-05-23 07:16:44'),(406,1,123,1621450800000,350,'2017-05-23 07:16:45','2017-05-23 07:16:45'),(407,1,123,1621537200000,475,'2017-05-23 07:16:46','2017-05-23 07:16:46'),(408,1,123,1621623600000,550,'2017-05-23 07:16:47','2017-05-23 07:16:47'),(409,1,123,1621710000000,680,'2017-05-23 07:16:48','2017-05-23 07:16:48'),(410,1,123,1621796400000,750,'2017-05-23 07:16:49','2017-05-23 07:16:49'),(411,1,123,1621882800000,350,'2017-05-23 07:16:50','2017-05-23 07:16:50'),(412,1,123,1621969200000,550,'2017-05-23 07:16:51','2017-05-23 07:16:51'),(413,1,123,1622055600000,660,'2017-05-23 07:16:52','2017-05-23 07:16:52'),(414,1,123,1622142000000,400,'2017-05-23 07:16:53','2017-05-23 07:16:53'),(415,1,123,1622228400000,750,'2017-05-23 07:16:54','2017-05-23 07:16:54'),(416,1,123,1622314800000,475,'2017-05-23 07:16:55','2017-05-23 07:16:55'),(417,1,123,1622401200000,815,'2017-05-23 07:16:56','2017-05-23 07:16:56'),(418,1,123,1622487600000,350,'2017-05-23 07:16:57','2017-05-23 07:16:57'),(419,1,123,1622574000000,720,'2017-05-23 07:16:58','2017-05-23 07:16:58'),(420,1,123,1622660400000,660,'2017-05-23 07:16:59','2017-05-23 07:16:59'),(421,1,123,1622746800000,660,'2017-05-23 07:17:00','2017-05-23 07:17:00'),(422,1,123,1622833200000,350,'2017-05-23 07:17:01','2017-05-23 07:17:01'),(423,1,123,1622919600000,635,'2017-05-23 07:17:02','2017-05-23 07:17:02'),(424,1,123,1623006000000,475,'2017-05-23 07:17:03','2017-05-23 07:17:03'),(425,1,123,1623092400000,635,'2017-05-23 07:17:04','2017-05-23 07:17:04'),(426,1,123,1623178800000,500,'2017-05-23 07:17:05','2017-05-23 07:17:05'),(427,1,123,1623265200000,710,'2017-05-23 07:17:06','2017-05-23 07:17:06'),(428,1,123,1623351600000,550,'2017-05-23 07:17:07','2017-05-23 07:17:07'),(429,1,123,1623438000000,660,'2017-05-23 07:17:08','2017-05-23 07:17:08'),(430,1,123,1623524400000,635,'2017-05-23 07:17:09','2017-05-23 07:17:09'),(431,1,123,1623610800000,660,'2017-05-23 07:17:10','2017-05-23 07:17:10'),(432,1,123,1623697200000,490,'2017-05-23 07:17:11','2017-05-23 07:17:11'),(433,1,123,1623783600000,510,'2017-05-23 07:17:12','2017-05-23 07:17:12'),(434,1,123,1623870000000,510,'2017-05-23 07:17:13','2017-05-23 07:17:13'),(435,1,123,1623956400000,400,'2017-05-23 07:17:14','2017-05-23 07:17:14'),(436,1,123,1624042800000,590,'2017-05-23 07:17:15','2017-05-23 07:17:15'),(437,1,123,1624129200000,680,'2017-05-23 07:17:16','2017-05-23 07:17:16'),(438,1,123,1624215600000,612,'2017-05-23 07:17:17','2017-05-23 07:17:17'),(439,1,123,1624302000000,500,'2017-05-23 07:17:18','2017-05-23 07:17:18'),(440,1,123,1624388400000,550,'2017-05-23 07:17:19','2017-05-23 07:17:19'),(441,1,123,1624474800000,710,'2017-05-23 07:17:20','2017-05-23 07:17:20'),(442,1,123,1624561200000,635,'2017-05-23 07:17:21','2017-05-23 07:17:21'),(443,1,123,1624647600000,510,'2017-05-23 07:17:22','2017-05-23 07:17:22'),(444,1,123,1624734000000,660,'2017-05-23 07:17:23','2017-05-23 07:17:23'),(445,1,123,1624820400000,510,'2017-05-23 07:17:24','2017-05-23 07:17:24'),(446,1,123,1624906800000,660,'2017-05-23 07:17:25','2017-05-23 07:17:25'),(447,1,123,1624993200000,680,'2017-05-23 07:17:26','2017-05-23 07:17:26'),(448,1,123,1625079600000,680,'2017-05-23 07:17:27','2017-05-23 07:17:27'),(449,1,123,1625166000000,710,'2017-05-23 07:17:28','2017-05-23 07:17:28'),(450,1,123,1625252400000,750,'2017-05-23 07:17:29','2017-05-23 07:17:29'),(451,1,123,1625338800000,660,'2017-05-23 07:17:30','2017-05-23 07:17:30'),(452,1,123,1625425200000,460,'2017-05-23 07:17:31','2017-05-23 07:17:31'),(453,1,123,1625511600000,720,'2017-05-23 07:17:32','2017-05-23 07:17:32'),(454,1,123,1625598000000,400,'2017-05-23 07:17:33','2017-05-23 07:17:33'),(455,1,123,1625684400000,635,'2017-05-23 07:17:34','2017-05-23 07:17:34'),(456,1,123,1625770800000,475,'2017-05-23 07:17:35','2017-05-23 07:17:35'),(457,1,123,1625857200000,400,'2017-05-23 07:17:36','2017-05-23 07:17:36'),(458,1,123,1625943600000,550,'2017-05-23 07:17:37','2017-05-23 07:17:37'),(459,1,123,1626030000000,500,'2017-05-23 07:17:38','2017-05-23 07:17:38'),(460,1,123,1626116400000,815,'2017-05-23 07:17:39','2017-05-23 07:17:39'),(461,1,123,1626202800000,750,'2017-05-23 07:17:40','2017-05-23 07:17:40'),(462,1,123,1626289200000,550,'2017-05-23 07:17:41','2017-05-23 07:17:41'),(463,1,123,1626375600000,475,'2017-05-23 07:17:42','2017-05-23 07:17:42'),(464,1,123,1626462000000,815,'2017-05-23 07:17:43','2017-05-23 07:17:43'),(465,1,123,1626548400000,680,'2017-05-23 07:17:44','2017-05-23 07:17:44'),(466,1,123,1626634800000,815,'2017-05-23 07:17:45','2017-05-23 07:17:45'),(467,1,123,1626721200000,750,'2017-05-23 07:17:46','2017-05-23 07:17:46'),(468,1,123,1626807600000,590,'2017-05-23 07:17:47','2017-05-23 07:17:47'),(469,1,123,1626894000000,720,'2017-05-23 07:17:48','2017-05-23 07:17:48'),(470,1,123,1626980400000,612,'2017-05-23 07:17:49','2017-05-23 07:17:49'),(471,1,123,1627066800000,220,'2017-05-23 07:17:50','2017-05-23 07:17:50'),(472,1,123,1627153200000,815,'2017-05-23 07:17:51','2017-05-23 07:17:51'),(473,1,123,1627239600000,475,'2017-05-23 07:17:52','2017-05-23 07:17:52'),(474,1,123,1627326000000,750,'2017-05-23 07:17:53','2017-05-23 07:17:53'),(475,1,123,1627412400000,612,'2017-05-23 07:17:54','2017-05-23 07:17:54'),(476,1,123,1627498800000,350,'2017-05-23 07:17:55','2017-05-23 07:17:55'),(477,1,123,1627585200000,350,'2017-05-23 07:17:56','2017-05-23 07:17:56'),(478,1,123,1627671600000,680,'2017-05-23 07:17:57','2017-05-23 07:17:57'),(479,1,123,1627758000000,490,'2017-05-23 07:17:58','2017-05-23 07:17:58'),(480,1,123,1627844400000,490,'2017-05-23 07:17:59','2017-05-23 07:17:59'),(481,1,123,1627930800000,750,'2017-05-23 07:18:00','2017-05-23 07:18:00'),(482,1,123,1628017200000,660,'2017-05-23 07:18:01','2017-05-23 07:18:01'),(483,1,123,1628103600000,750,'2017-05-23 07:18:02','2017-05-23 07:18:02'),(484,1,123,1628190000000,490,'2017-05-23 07:18:03','2017-05-23 07:18:03'),(485,1,123,1628276400000,635,'2017-05-23 07:18:04','2017-05-23 07:18:04'),(486,1,123,1628362800000,500,'2017-05-23 07:18:05','2017-05-23 07:18:05'),(487,1,123,1628449200000,612,'2017-05-23 07:18:06','2017-05-23 07:18:06'),(488,1,123,1628535600000,680,'2017-05-23 07:18:07','2017-05-23 07:18:07'),(489,1,123,1628622000000,635,'2017-05-23 07:18:08','2017-05-23 07:18:08'),(490,1,123,1628708400000,510,'2017-05-23 07:18:09','2017-05-23 07:18:09'),(491,1,123,1628794800000,660,'2017-05-23 07:18:10','2017-05-23 07:18:10'),(492,1,123,1628881200000,710,'2017-05-23 07:18:11','2017-05-23 07:18:11'),(493,1,123,1628967600000,815,'2017-05-23 07:18:12','2017-05-23 07:18:12'),(494,1,123,1629054000000,400,'2017-05-23 07:18:13','2017-05-23 07:18:13'),(495,1,123,1629140400000,815,'2017-05-23 07:18:14','2017-05-23 07:18:14'),(496,1,123,1629226800000,460,'2017-05-23 07:18:15','2017-05-23 07:18:15'),(497,1,123,1629313200000,590,'2017-05-23 07:18:16','2017-05-23 07:18:16'),(498,1,123,1629399600000,490,'2017-05-23 07:18:17','2017-05-23 07:18:17'),(499,1,123,1629486000000,590,'2017-05-23 07:18:18','2017-05-23 07:18:18'),(500,1,123,1629572400000,500,'2017-05-23 07:18:19','2017-05-23 07:18:19'),(501,1,123,1629658800000,612,'2017-05-23 07:18:20','2017-05-23 07:18:20'),(502,1,123,1629745200000,490,'2017-05-23 07:18:21','2017-05-23 07:18:21'),(503,1,123,1629831600000,460,'2017-05-23 07:18:22','2017-05-23 07:18:22'),(504,1,123,1629918000000,550,'2017-05-23 07:18:23','2017-05-23 07:18:23'),(505,1,123,1630004400000,612,'2017-05-23 07:18:24','2017-05-23 07:18:24'),(506,1,123,1630090800000,710,'2017-05-23 07:18:25','2017-05-23 07:18:25'),(507,1,123,1630177200000,590,'2017-05-23 07:18:26','2017-05-23 07:18:26'),(508,1,123,1630263600000,635,'2017-05-23 07:18:27','2017-05-23 07:18:27'),(509,1,123,1630350000000,475,'2017-05-23 07:18:28','2017-05-23 07:18:28'),(510,1,123,1630436400000,500,'2017-05-23 07:18:29','2017-05-23 07:18:29'),(511,1,123,1630522800000,350,'2017-05-23 07:18:30','2017-05-23 07:18:30'),(512,1,123,1630609200000,550,'2017-05-23 07:18:31','2017-05-23 07:18:31'),(513,1,123,1630695600000,510,'2017-05-23 07:18:32','2017-05-23 07:18:32'),(514,1,123,1630782000000,475,'2017-05-23 07:18:33','2017-05-23 07:18:33'),(515,1,123,1630868400000,220,'2017-05-23 07:18:34','2017-05-23 07:18:34'),(516,1,123,1630954800000,612,'2017-05-23 07:18:35','2017-05-23 07:18:35'),(517,1,123,1631041200000,460,'2017-05-23 07:18:36','2017-05-23 07:18:36'),(518,1,123,1631127600000,475,'2017-05-23 07:18:37','2017-05-23 07:18:37'),(519,1,123,1631214000000,460,'2017-05-23 07:18:38','2017-05-23 07:18:38'),(520,1,123,1631300400000,400,'2017-05-23 07:18:39','2017-05-23 07:18:39'),(521,1,123,1631386800000,815,'2017-05-23 07:18:40','2017-05-23 07:18:40'),(522,1,123,1631473200000,750,'2017-05-23 07:18:41','2017-05-23 07:18:41'),(523,1,123,1631559600000,680,'2017-05-23 07:18:42','2017-05-23 07:18:42'),(524,1,123,1631646000000,500,'2017-05-23 07:18:43','2017-05-23 07:18:43'),(525,1,123,1631732400000,612,'2017-05-23 07:18:44','2017-05-23 07:18:44'),(526,1,123,1631818800000,710,'2017-05-23 07:18:45','2017-05-23 07:18:45'),(527,1,123,1631905200000,400,'2017-05-23 07:18:46','2017-05-23 07:18:46'),(528,1,123,1631991600000,680,'2017-05-23 07:18:47','2017-05-23 07:18:47'),(529,1,123,1632078000000,350,'2017-05-23 07:18:48','2017-05-23 07:18:48'),(530,1,123,1632164400000,680,'2017-05-23 07:18:49','2017-05-23 07:18:49'),(531,1,123,1632250800000,460,'2017-05-23 07:18:50','2017-05-23 07:18:50'),(532,1,123,1632337200000,220,'2017-05-23 07:18:51','2017-05-23 07:18:51'),(533,1,123,1632423600000,750,'2017-05-23 07:18:52','2017-05-23 07:18:52'),(534,1,123,1632510000000,510,'2017-05-23 07:18:53','2017-05-23 07:18:53'),(535,1,123,1632596400000,220,'2017-05-23 07:18:54','2017-05-23 07:18:54'),(536,1,123,1632682800000,750,'2017-05-23 07:18:55','2017-05-23 07:18:55'),(537,1,123,1632769200000,500,'2017-05-23 07:18:56','2017-05-23 07:18:56'),(538,1,123,1632855600000,350,'2017-05-23 07:18:57','2017-05-23 07:18:57'),(539,1,123,1632942000000,660,'2017-05-23 07:18:58','2017-05-23 07:18:58'),(540,1,123,1633028400000,720,'2017-05-23 07:18:59','2017-05-23 07:18:59'),(541,1,123,1633114800000,500,'2017-05-23 07:19:00','2017-05-23 07:19:00'),(542,1,123,1633201200000,510,'2017-05-23 07:19:01','2017-05-23 07:19:01'),(543,1,123,1633287600000,350,'2017-05-23 07:19:02','2017-05-23 07:19:02'),(544,1,123,1633374000000,720,'2017-05-23 07:19:03','2017-05-23 07:19:03'),(545,1,123,1633460400000,750,'2017-05-23 07:19:04','2017-05-23 07:19:04'),(546,1,123,1633546800000,590,'2017-05-23 07:19:05','2017-05-23 07:19:05'),(547,1,123,1633633200000,490,'2017-05-23 07:19:06','2017-05-23 07:19:06'),(548,1,123,1633719600000,815,'2017-05-23 07:19:07','2017-05-23 07:19:07'),(549,1,123,1633806000000,510,'2017-05-23 07:19:08','2017-05-23 07:19:08'),(550,1,123,1633892400000,635,'2017-05-23 07:19:09','2017-05-23 07:19:09'),(551,1,123,1633978800000,710,'2017-05-23 07:19:10','2017-05-23 07:19:10'),(552,1,123,1634065200000,750,'2017-05-23 07:19:11','2017-05-23 07:19:11'),(553,1,123,1634151600000,475,'2017-05-23 07:19:12','2017-05-23 07:19:12'),(554,1,123,1634238000000,720,'2017-05-23 07:19:13','2017-05-23 07:19:13'),(555,1,123,1634324400000,680,'2017-05-23 07:19:14','2017-05-23 07:19:14'),(556,1,123,1634410800000,500,'2017-05-23 07:19:15','2017-05-23 07:19:15'),(557,1,123,1634497200000,635,'2017-05-23 07:19:16','2017-05-23 07:19:16'),(558,1,123,1634583600000,590,'2017-05-23 07:19:17','2017-05-23 07:19:17'),(559,1,123,1634670000000,710,'2017-05-23 07:19:18','2017-05-23 07:19:18'),(560,1,123,1634756400000,612,'2017-05-23 07:19:19','2017-05-23 07:19:19'),(561,1,123,1634842800000,460,'2017-05-23 07:19:20','2017-05-23 07:19:20'),(562,1,123,1634929200000,400,'2017-05-23 07:19:21','2017-05-23 07:19:21'),(563,1,123,1635015600000,500,'2017-05-23 07:19:22','2017-05-23 07:19:22'),(564,1,123,1635102000000,500,'2017-05-23 07:19:23','2017-05-23 07:19:23'),(565,1,123,1635188400000,500,'2017-05-23 07:19:24','2017-05-23 07:19:24'),(566,1,123,1635274800000,720,'2017-05-23 07:19:25','2017-05-23 07:19:25'),(567,1,123,1635361200000,460,'2017-05-23 07:19:26','2017-05-23 07:19:26'),(568,1,123,1635447600000,475,'2017-05-23 07:19:27','2017-05-23 07:19:27'),(569,1,123,1635534000000,612,'2017-05-23 07:19:28','2017-05-23 07:19:28'),(570,1,123,1635620400000,350,'2017-05-23 07:19:29','2017-05-23 07:19:29'),(571,1,123,1635706800000,635,'2017-05-23 07:19:30','2017-05-23 07:19:30'),(572,1,123,1635793200000,510,'2017-05-23 07:19:31','2017-05-23 07:19:31'),(573,1,123,1635879600000,720,'2017-05-23 07:19:33','2017-05-23 07:19:33'),(574,1,123,1635966000000,510,'2017-05-23 07:19:34','2017-05-23 07:19:34'),(575,1,123,1636052400000,510,'2017-05-23 07:19:35','2017-05-23 07:19:35'),(576,1,123,1636138800000,500,'2017-05-23 07:19:36','2017-05-23 07:19:36'),(577,1,123,1636225200000,680,'2017-05-23 07:19:37','2017-05-23 07:19:37'),(578,1,123,1636311600000,350,'2017-05-23 07:19:38','2017-05-23 07:19:38'),(579,1,123,1636398000000,710,'2017-05-23 07:19:39','2017-05-23 07:19:39'),(580,1,123,1636484400000,710,'2017-05-23 07:19:40','2017-05-23 07:19:40'),(581,1,123,1636570800000,510,'2017-05-23 07:19:41','2017-05-23 07:19:41'),(582,1,123,1636657200000,660,'2017-05-23 07:19:42','2017-05-23 07:19:42'),(583,1,123,1636743600000,460,'2017-05-23 07:19:43','2017-05-23 07:19:43'),(584,1,123,1636830000000,550,'2017-05-23 07:19:44','2017-05-23 07:19:44'),(585,1,123,1636916400000,680,'2017-05-23 07:19:45','2017-05-23 07:19:45'),(586,1,123,1637002800000,612,'2017-05-23 07:19:46','2017-05-23 07:19:46'),(587,1,123,1637089200000,460,'2017-05-23 07:19:47','2017-05-23 07:19:47'),(588,1,123,1637175600000,475,'2017-05-23 07:19:48','2017-05-23 07:19:48'),(589,1,123,1637262000000,350,'2017-05-23 07:19:49','2017-05-23 07:19:49'),(590,1,123,1637348400000,612,'2017-05-23 07:19:50','2017-05-23 07:19:50'),(591,1,123,1637434800000,475,'2017-05-23 07:19:51','2017-05-23 07:19:51'),(592,1,123,1637521200000,710,'2017-05-23 07:19:52','2017-05-23 07:19:52'),(593,1,123,1637607600000,460,'2017-05-23 07:19:53','2017-05-23 07:19:53'),(594,1,123,1637694000000,680,'2017-05-23 07:19:54','2017-05-23 07:19:54'),(595,1,123,1637780400000,490,'2017-05-23 07:19:55','2017-05-23 07:19:55'),(596,1,123,1637866800000,510,'2017-05-23 07:19:56','2017-05-23 07:19:56'),(597,1,123,1637953200000,660,'2017-05-23 07:19:57','2017-05-23 07:19:57'),(598,1,123,1638039600000,510,'2017-05-23 07:19:58','2017-05-23 07:19:58'),(599,1,123,1638126000000,400,'2017-05-23 07:19:59','2017-05-23 07:19:59'),(600,1,123,1638212400000,350,'2017-05-23 07:20:00','2017-05-23 07:20:00'),(601,1,123,1638298800000,660,'2017-05-23 07:20:01','2017-05-23 07:20:01'),(602,1,123,1638385200000,510,'2017-05-23 07:20:02','2017-05-23 07:20:02'),(603,1,123,1638471600000,510,'2017-05-23 07:20:03','2017-05-23 07:20:03'),(604,1,123,1638558000000,460,'2017-05-23 07:20:04','2017-05-23 07:20:04'),(605,1,123,1638644400000,350,'2017-05-23 07:20:05','2017-05-23 07:20:05'),(606,1,123,1638730800000,350,'2017-05-23 07:20:06','2017-05-23 07:20:06'),(607,1,123,1638817200000,550,'2017-05-23 07:20:07','2017-05-23 07:20:07'),(608,1,123,1638903600000,720,'2017-05-23 07:20:08','2017-05-23 07:20:08'),(609,1,123,1638990000000,350,'2017-05-23 07:20:09','2017-05-23 07:20:09'),(610,1,123,1639076400000,460,'2017-05-23 07:20:10','2017-05-23 07:20:10'),(611,1,123,1639162800000,490,'2017-05-23 07:20:11','2017-05-23 07:20:11'),(612,1,123,1639249200000,750,'2017-05-23 07:20:12','2017-05-23 07:20:12'),(613,1,123,1639335600000,510,'2017-05-23 07:20:13','2017-05-23 07:20:13'),(614,1,123,1639422000000,510,'2017-05-23 07:20:14','2017-05-23 07:20:14'),(615,1,123,1639508400000,710,'2017-05-23 07:20:15','2017-05-23 07:20:15'),(616,1,123,1639594800000,400,'2017-05-23 07:20:16','2017-05-23 07:20:16'),(617,1,123,1639681200000,350,'2017-05-23 07:20:17','2017-05-23 07:20:17'),(618,1,123,1639767600000,660,'2017-05-23 07:20:18','2017-05-23 07:20:18'),(619,1,123,1639854000000,510,'2017-05-23 07:20:19','2017-05-23 07:20:19'),(620,1,123,1639940400000,815,'2017-05-23 07:20:20','2017-05-23 07:20:20'),(621,1,123,1640026800000,612,'2017-05-23 07:20:21','2017-05-23 07:20:21'),(622,1,123,1640113200000,590,'2017-05-23 07:20:22','2017-05-23 07:20:22'),(623,1,123,1640199600000,220,'2017-05-23 07:20:23','2017-05-23 07:20:23'),(624,1,123,1640286000000,220,'2017-05-23 07:20:24','2017-05-23 07:20:24'),(625,1,123,1640372400000,680,'2017-05-23 07:20:25','2017-05-23 07:20:25'),(626,1,123,1640458800000,490,'2017-05-23 07:20:26','2017-05-23 07:20:26'),(627,1,123,1640545200000,680,'2017-05-23 07:20:27','2017-05-23 07:20:27'),(628,1,123,1640631600000,475,'2017-05-23 07:20:28','2017-05-23 07:20:28'),(629,1,123,1640718000000,500,'2017-05-23 07:20:29','2017-05-23 07:20:29'),(630,1,123,1640804400000,720,'2017-05-23 07:20:30','2017-05-23 07:20:30'),(631,1,123,1640890800000,500,'2017-05-23 07:20:31','2017-05-23 07:20:31'),(632,1,123,1640977200000,750,'2017-05-23 07:20:32','2017-05-23 07:20:32'),(633,1,123,1641063600000,750,'2017-05-23 07:20:33','2017-05-23 07:20:33'),(634,1,123,1641150000000,510,'2017-05-23 07:20:34','2017-05-23 07:20:34'),(635,1,123,1641236400000,550,'2017-05-23 07:20:35','2017-05-23 07:20:35'),(636,1,123,1641322800000,635,'2017-05-23 07:20:36','2017-05-23 07:20:36'),(637,1,123,1641409200000,510,'2017-05-23 07:20:37','2017-05-23 07:20:37'),(638,1,123,1641495600000,220,'2017-05-23 07:20:38','2017-05-23 07:20:38'),(639,1,123,1641582000000,635,'2017-05-23 07:20:39','2017-05-23 07:20:39'),(640,1,123,1641668400000,475,'2017-05-23 07:20:40','2017-05-23 07:20:40'),(641,1,123,1641754800000,350,'2017-05-23 07:20:41','2017-05-23 07:20:41'),(642,1,123,1641841200000,350,'2017-05-23 07:20:42','2017-05-23 07:20:42'),(643,1,123,1641927600000,710,'2017-05-23 07:20:43','2017-05-23 07:20:43'),(644,1,123,1642014000000,475,'2017-05-23 07:20:44','2017-05-23 07:20:44'),(645,1,123,1642100400000,550,'2017-05-23 07:20:45','2017-05-23 07:20:45'),(646,1,123,1642186800000,460,'2017-05-23 07:20:48','2017-05-23 07:20:48'),(647,1,123,1642273200000,400,'2017-05-23 07:20:49','2017-05-23 07:20:49'),(648,1,123,1642359600000,500,'2017-05-23 07:20:50','2017-05-23 07:20:50'),(649,1,123,1642446000000,400,'2017-05-23 07:20:51','2017-05-23 07:20:51'),(650,1,123,1642532400000,660,'2017-05-23 07:20:52','2017-05-23 07:20:52'),(651,1,123,1642618800000,680,'2017-05-23 07:20:53','2017-05-23 07:20:53'),(652,1,123,1642705200000,475,'2017-05-23 07:20:54','2017-05-23 07:20:54'),(653,1,123,1642791600000,720,'2017-05-23 07:20:55','2017-05-23 07:20:55'),(654,1,123,1642878000000,680,'2017-05-23 07:20:56','2017-05-23 07:20:56'),(655,1,123,1642964400000,550,'2017-05-23 07:20:57','2017-05-23 07:20:57'),(656,1,123,1643050800000,475,'2017-05-23 07:20:58','2017-05-23 07:20:58'),(657,1,123,1643137200000,350,'2017-05-23 07:20:59','2017-05-23 07:20:59'),(658,1,123,1643223600000,400,'2017-05-23 07:21:00','2017-05-23 07:21:00'),(659,1,123,1643310000000,815,'2017-05-23 07:21:01','2017-05-23 07:21:01'),(660,1,123,1643396400000,750,'2017-05-23 07:21:02','2017-05-23 07:21:02'),(661,1,123,1643482800000,590,'2017-05-23 07:21:03','2017-05-23 07:21:03'),(662,1,123,1643569200000,510,'2017-05-23 07:21:04','2017-05-23 07:21:04'),(663,1,123,1643655600000,720,'2017-05-23 07:21:05','2017-05-23 07:21:05'),(664,1,123,1643742000000,590,'2017-05-23 07:21:06','2017-05-23 07:21:06'),(665,1,123,1643828400000,750,'2017-05-23 07:21:07','2017-05-23 07:21:07'),(666,1,123,1643914800000,350,'2017-05-23 07:21:08','2017-05-23 07:21:08'),(667,1,123,1644001200000,590,'2017-05-23 07:21:09','2017-05-23 07:21:09'),(668,1,123,1644087600000,660,'2017-05-23 07:21:10','2017-05-23 07:21:10'),(669,1,123,1644174000000,500,'2017-05-23 07:21:11','2017-05-23 07:21:11'),(670,1,123,1644260400000,710,'2017-05-23 07:21:12','2017-05-23 07:21:12'),(671,1,123,1644346800000,750,'2017-05-23 07:21:13','2017-05-23 07:21:13'),(672,1,123,1644433200000,475,'2017-05-23 07:21:14','2017-05-23 07:21:14'),(673,1,123,1644519600000,400,'2017-05-23 07:21:15','2017-05-23 07:21:15'),(674,1,123,1644606000000,815,'2017-05-23 07:21:16','2017-05-23 07:21:16'),(675,1,123,1644692400000,612,'2017-05-23 07:21:17','2017-05-23 07:21:17'),(676,1,123,1644778800000,720,'2017-05-23 07:21:18','2017-05-23 07:21:18'),(677,1,123,1644865200000,720,'2017-05-23 07:21:19','2017-05-23 07:21:19'),(678,1,123,1644951600000,680,'2017-05-23 07:21:20','2017-05-23 07:21:20'),(679,1,123,1645038000000,660,'2017-05-23 07:21:21','2017-05-23 07:21:21'),(680,1,123,1645124400000,350,'2017-05-23 07:21:22','2017-05-23 07:21:22'),(681,1,123,1645210800000,500,'2017-05-23 07:21:23','2017-05-23 07:21:23'),(682,1,123,1645297200000,475,'2017-05-23 07:21:24','2017-05-23 07:21:24'),(683,1,123,1645383600000,490,'2017-05-23 07:21:25','2017-05-23 07:21:25'),(684,1,123,1645470000000,510,'2017-05-23 07:21:26','2017-05-23 07:21:26'),(685,1,123,1645556400000,680,'2017-05-23 07:21:27','2017-05-23 07:21:27'),(686,1,123,1645642800000,490,'2017-05-23 07:21:28','2017-05-23 07:21:28'),(687,1,123,1645729200000,500,'2017-05-23 07:21:29','2017-05-23 07:21:29'),(688,1,123,1645815600000,350,'2017-05-23 07:21:30','2017-05-23 07:21:30'),(689,1,123,1645902000000,475,'2017-05-23 07:21:31','2017-05-23 07:21:31'),(690,1,123,1645988400000,660,'2017-05-23 07:21:32','2017-05-23 07:21:32'),(691,1,123,1646074800000,750,'2017-05-23 07:21:33','2017-05-23 07:21:33'),(692,1,123,1646161200000,590,'2017-05-23 07:21:34','2017-05-23 07:21:34'),(693,1,123,1646247600000,400,'2017-05-23 07:21:35','2017-05-23 07:21:35'),(694,1,123,1646334000000,720,'2017-05-23 07:21:36','2017-05-23 07:21:36'),(695,1,123,1646420400000,660,'2017-05-23 07:21:37','2017-05-23 07:21:37'),(696,1,123,1646506800000,220,'2017-05-23 07:21:38','2017-05-23 07:21:38'),(697,1,123,1646593200000,635,'2017-05-23 07:21:39','2017-05-23 07:21:39'),(698,1,123,1646679600000,720,'2017-05-23 07:21:40','2017-05-23 07:21:40'),(699,1,123,1646766000000,750,'2017-05-23 07:21:41','2017-05-23 07:21:41'),(700,1,123,1646852400000,510,'2017-05-23 07:21:42','2017-05-23 07:21:42'),(701,1,123,1646938800000,815,'2017-05-23 07:21:43','2017-05-23 07:21:43'),(702,1,123,1647025200000,815,'2017-05-23 07:21:44','2017-05-23 07:21:44'),(703,1,123,1647111600000,612,'2017-05-23 07:21:45','2017-05-23 07:21:45'),(704,1,123,1647198000000,400,'2017-05-23 07:21:46','2017-05-23 07:21:46'),(705,1,123,1647284400000,220,'2017-05-23 07:21:47','2017-05-23 07:21:47'),(706,1,123,1647370800000,500,'2017-05-23 07:21:48','2017-05-23 07:21:48'),(707,1,123,1647457200000,500,'2017-05-23 07:21:49','2017-05-23 07:21:49'),(708,1,123,1647543600000,590,'2017-05-23 07:21:50','2017-05-23 07:21:50'),(709,1,123,1647630000000,635,'2017-05-23 07:21:51','2017-05-23 07:21:51'),(710,1,123,1647716400000,660,'2017-05-23 07:21:52','2017-05-23 07:21:52'),(711,1,123,1647802800000,710,'2017-05-23 07:21:53','2017-05-23 07:21:53'),(712,1,123,1647889200000,612,'2017-05-23 07:21:54','2017-05-23 07:21:54'),(713,1,123,1647975600000,400,'2017-05-23 07:21:55','2017-05-23 07:21:55'),(714,1,123,1648062000000,660,'2017-05-23 07:21:56','2017-05-23 07:21:56'),(715,1,123,1648148400000,400,'2017-05-23 07:21:57','2017-05-23 07:21:57'),(716,1,123,1648234800000,220,'2017-05-23 07:21:58','2017-05-23 07:21:58'),(717,1,123,1648321200000,710,'2017-05-23 07:21:59','2017-05-23 07:21:59'),(718,1,123,1648407600000,400,'2017-05-23 07:22:00','2017-05-23 07:22:00'),(719,1,123,1648494000000,460,'2017-05-23 07:22:01','2017-05-23 07:22:01'),(720,1,123,1648580400000,500,'2017-05-23 07:22:02','2017-05-23 07:22:02'),(721,1,123,1648666800000,590,'2017-05-23 07:22:03','2017-05-23 07:22:03'),(722,1,123,1648753200000,612,'2017-05-23 07:22:04','2017-05-23 07:22:04'),(723,1,123,1648839600000,220,'2017-05-23 07:22:05','2017-05-23 07:22:05'),(724,1,123,1648926000000,550,'2017-05-23 07:22:06','2017-05-23 07:22:06'),(725,1,123,1649012400000,475,'2017-05-23 07:22:07','2017-05-23 07:22:07'),(726,1,123,1649098800000,590,'2017-05-23 07:22:08','2017-05-23 07:22:08'),(727,1,123,1649185200000,635,'2017-05-23 07:22:09','2017-05-23 07:22:09'),(728,1,123,1649271600000,590,'2017-05-23 07:22:10','2017-05-23 07:22:10'),(729,1,123,1649358000000,815,'2017-05-23 07:22:11','2017-05-23 07:22:11'),(730,1,123,1649444400000,750,'2017-05-23 07:22:12','2017-05-23 07:22:12'),(731,1,123,1649530800000,460,'2017-05-23 07:22:13','2017-05-23 07:22:13'),(732,1,123,1649617200000,510,'2017-05-23 07:22:14','2017-05-23 07:22:14'),(733,1,123,1649703600000,612,'2017-05-23 07:22:15','2017-05-23 07:22:15'),(734,1,123,1649790000000,710,'2017-05-23 07:22:16','2017-05-23 07:22:16'),(735,1,123,1649876400000,815,'2017-05-23 07:22:17','2017-05-23 07:22:17'),(736,1,123,1649962800000,720,'2017-05-23 07:22:18','2017-05-23 07:22:18'),(737,1,123,1650049200000,490,'2017-05-23 07:22:19','2017-05-23 07:22:19'),(738,1,123,1650135600000,490,'2017-05-23 07:22:20','2017-05-23 07:22:20'),(739,1,123,1650222000000,635,'2017-05-23 07:22:21','2017-05-23 07:22:21'),(740,1,123,1650308400000,720,'2017-05-23 07:22:22','2017-05-23 07:22:22'),(741,1,123,1650394800000,550,'2017-05-23 07:22:23','2017-05-23 07:22:23'),(742,1,123,1650481200000,510,'2017-05-23 07:22:24','2017-05-23 07:22:24'),(743,1,123,1650567600000,475,'2017-05-23 07:22:25','2017-05-23 07:22:25'),(744,1,123,1650654000000,550,'2017-05-23 07:22:26','2017-05-23 07:22:26'),(745,1,123,1650740400000,500,'2017-05-23 07:22:27','2017-05-23 07:22:27'),(746,1,123,1650826800000,400,'2017-05-23 07:22:28','2017-05-23 07:22:28'),(747,1,123,1650913200000,680,'2017-05-23 07:22:29','2017-05-23 07:22:29'),(748,1,123,1650999600000,475,'2017-05-23 07:22:30','2017-05-23 07:22:30'),(749,1,123,1651086000000,660,'2017-05-23 07:22:31','2017-05-23 07:22:31'),(750,1,123,1651172400000,220,'2017-05-23 07:22:32','2017-05-23 07:22:32'),(751,1,123,1651258800000,400,'2017-05-23 07:22:33','2017-05-23 07:22:33'),(752,1,123,1651345200000,550,'2017-05-23 07:22:34','2017-05-23 07:22:34'),(753,1,123,1651431600000,660,'2017-05-23 07:22:35','2017-05-23 07:22:35'),(754,1,123,1651518000000,510,'2017-05-23 07:22:36','2017-05-23 07:22:36'),(755,1,123,1651604400000,612,'2017-05-23 07:22:37','2017-05-23 07:22:37'),(756,1,123,1651690800000,220,'2017-05-23 07:22:38','2017-05-23 07:22:38'),(757,1,123,1651777200000,220,'2017-05-23 07:22:39','2017-05-23 07:22:39'),(758,1,123,1651863600000,550,'2017-05-23 07:22:40','2017-05-23 07:22:40'),(759,1,123,1651950000000,635,'2017-05-23 07:22:41','2017-05-23 07:22:41'),(760,1,123,1652036400000,660,'2017-05-23 07:22:42','2017-05-23 07:22:42'),(761,1,123,1652122800000,680,'2017-05-23 07:22:43','2017-05-23 07:22:43'),(762,1,123,1652209200000,720,'2017-05-23 07:22:44','2017-05-23 07:22:44'),(763,1,123,1652295600000,635,'2017-05-23 07:22:45','2017-05-23 07:22:45'),(764,1,123,1652382000000,680,'2017-05-23 07:22:46','2017-05-23 07:22:46'),(765,1,123,1652468400000,460,'2017-05-23 07:22:47','2017-05-23 07:22:47'),(766,1,123,1652554800000,475,'2017-05-23 07:22:48','2017-05-23 07:22:48'),(767,1,123,1652641200000,590,'2017-05-23 07:22:49','2017-05-23 07:22:49'),(768,1,123,1652727600000,400,'2017-05-23 07:22:50','2017-05-23 07:22:50'),(769,1,123,1652814000000,660,'2017-05-23 07:22:51','2017-05-23 07:22:51'),(770,1,123,1652900400000,550,'2017-05-23 07:22:52','2017-05-23 07:22:52'),(771,1,123,1652986800000,680,'2017-05-23 07:22:53','2017-05-23 07:22:53'),(772,1,123,1653073200000,460,'2017-05-23 07:22:54','2017-05-23 07:22:54'),(773,1,123,1653159600000,400,'2017-05-23 07:22:55','2017-05-23 07:22:55'),(774,1,123,1653246000000,400,'2017-05-23 07:22:56','2017-05-23 07:22:56'),(775,1,123,1653332400000,680,'2017-05-23 07:22:57','2017-05-23 07:22:57'),(776,1,123,1653418800000,590,'2017-05-23 07:22:58','2017-05-23 07:22:58'),(777,1,123,1653505200000,720,'2017-05-23 07:22:59','2017-05-23 07:22:59'),(778,1,123,1653591600000,220,'2017-05-23 07:23:00','2017-05-23 07:23:00'),(779,1,123,1653678000000,500,'2017-05-23 07:23:01','2017-05-23 07:23:01'),(780,1,123,1653764400000,750,'2017-05-23 07:23:02','2017-05-23 07:23:02'),(781,1,123,1653850800000,680,'2017-05-23 07:23:03','2017-05-23 07:23:03'),(782,1,123,1653937200000,635,'2017-05-23 07:23:04','2017-05-23 07:23:04'),(783,1,123,1654023600000,635,'2017-05-23 07:23:05','2017-05-23 07:23:05'),(784,1,123,1654110000000,590,'2017-05-23 07:23:06','2017-05-23 07:23:06'),(785,1,123,1654196400000,350,'2017-05-23 07:23:07','2017-05-23 07:23:07'),(786,1,123,1654282800000,815,'2017-05-23 07:23:08','2017-05-23 07:23:08'),(787,1,123,1654369200000,475,'2017-05-23 07:23:09','2017-05-23 07:23:09'),(788,1,123,1654455600000,490,'2017-05-23 07:23:10','2017-05-23 07:23:10'),(789,1,123,1654542000000,612,'2017-05-23 07:23:11','2017-05-23 07:23:11'),(790,1,123,1654628400000,635,'2017-05-23 07:23:12','2017-05-23 07:23:12'),(791,1,123,1654714800000,460,'2017-05-23 07:23:13','2017-05-23 07:23:13'),(792,1,123,1654801200000,500,'2017-05-23 07:23:14','2017-05-23 07:23:14'),(793,1,123,1654887600000,815,'2017-05-23 07:23:15','2017-05-23 07:23:15'),(794,1,123,1654974000000,660,'2017-05-23 07:23:16','2017-05-23 07:23:16'),(795,1,123,1655060400000,815,'2017-05-23 07:23:17','2017-05-23 07:23:17'),(796,1,123,1655146800000,710,'2017-05-23 07:23:18','2017-05-23 07:23:18'),(797,1,123,1655233200000,350,'2017-05-23 07:23:19','2017-05-23 07:23:19'),(798,1,123,1655319600000,500,'2017-05-23 07:23:20','2017-05-23 07:23:20'),(799,1,123,1655406000000,590,'2017-05-23 07:23:21','2017-05-23 07:23:21'),(800,1,123,1655492400000,475,'2017-05-23 07:23:22','2017-05-23 07:23:22'),(801,1,123,1655578800000,635,'2017-05-23 07:23:23','2017-05-23 07:23:23'),(802,1,123,1655665200000,350,'2017-05-23 07:23:24','2017-05-23 07:23:24'),(803,1,123,1655751600000,750,'2017-05-23 07:23:25','2017-05-23 07:23:25'),(804,1,123,1655838000000,635,'2017-05-23 07:23:26','2017-05-23 07:23:26'),(805,1,123,1655924400000,500,'2017-05-23 07:23:27','2017-05-23 07:23:27'),(806,1,123,1656010800000,460,'2017-05-23 07:23:28','2017-05-23 07:23:28'),(807,1,123,1656097200000,475,'2017-05-23 07:23:29','2017-05-23 07:23:29'),(808,1,123,1656183600000,475,'2017-05-23 07:23:30','2017-05-23 07:23:30'),(809,1,123,1656270000000,635,'2017-05-23 07:23:31','2017-05-23 07:23:31'),(810,1,123,1656356400000,635,'2017-05-23 07:23:32','2017-05-23 07:23:32'),(811,1,123,1656442800000,350,'2017-05-23 07:23:33','2017-05-23 07:23:33'),(812,1,123,1656529200000,220,'2017-05-23 07:23:34','2017-05-23 07:23:34'),(813,1,123,1656615600000,590,'2017-05-23 07:23:35','2017-05-23 07:23:35'),(814,1,123,1656702000000,612,'2017-05-23 07:23:36','2017-05-23 07:23:36'),(815,1,123,1656788400000,220,'2017-05-23 07:23:37','2017-05-23 07:23:37'),(816,1,123,1656874800000,220,'2017-05-23 07:23:38','2017-05-23 07:23:38'),(817,1,123,1656961200000,590,'2017-05-23 07:23:39','2017-05-23 07:23:39'),(818,1,123,1657047600000,510,'2017-05-23 07:23:40','2017-05-23 07:23:40'),(819,1,123,1657134000000,815,'2017-05-23 07:23:41','2017-05-23 07:23:41'),(820,1,123,1657220400000,590,'2017-05-23 07:23:42','2017-05-23 07:23:42'),(821,1,123,1657306800000,720,'2017-05-23 07:23:43','2017-05-23 07:23:43'),(822,1,123,1657393200000,660,'2017-05-23 07:23:44','2017-05-23 07:23:44'),(823,1,123,1657479600000,720,'2017-05-23 07:23:45','2017-05-23 07:23:45'),(824,1,123,1657566000000,500,'2017-05-23 07:23:46','2017-05-23 07:23:46'),(825,1,123,1657652400000,400,'2017-05-23 07:23:47','2017-05-23 07:23:47'),(826,1,123,1657738800000,510,'2017-05-23 07:23:48','2017-05-23 07:23:48'),(827,1,123,1657825200000,710,'2017-05-23 07:23:49','2017-05-23 07:23:49'),(828,1,123,1657911600000,710,'2017-05-23 07:23:50','2017-05-23 07:23:50'),(829,1,123,1657998000000,680,'2017-05-23 07:23:51','2017-05-23 07:23:51'),(830,1,123,1658084400000,500,'2017-05-23 07:23:52','2017-05-23 07:23:52'),(831,1,123,1658170800000,612,'2017-05-23 07:23:53','2017-05-23 07:23:53'),(832,1,123,1658257200000,612,'2017-05-23 07:23:54','2017-05-23 07:23:54'),(833,1,123,1658343600000,400,'2017-05-23 07:23:55','2017-05-23 07:23:55'),(834,1,123,1658430000000,710,'2017-05-23 07:23:56','2017-05-23 07:23:56'),(835,1,123,1658516400000,815,'2017-05-23 07:23:57','2017-05-23 07:23:57'),(836,1,123,1658602800000,680,'2017-05-23 07:23:58','2017-05-23 07:23:58'),(837,1,123,1658689200000,635,'2017-05-23 07:23:59','2017-05-23 07:23:59'),(838,1,123,1658775600000,720,'2017-05-23 07:24:00','2017-05-23 07:24:00'),(839,1,123,1658862000000,510,'2017-05-23 07:24:01','2017-05-23 07:24:01'),(840,1,123,1658948400000,220,'2017-05-23 07:24:02','2017-05-23 07:24:02'),(841,1,123,1659034800000,490,'2017-05-23 07:24:03','2017-05-23 07:24:03'),(842,1,123,1659121200000,635,'2017-05-23 07:24:04','2017-05-23 07:24:04'),(843,1,123,1659207600000,660,'2017-05-23 07:24:05','2017-05-23 07:24:05'),(844,1,123,1659294000000,660,'2017-05-23 07:24:06','2017-05-23 07:24:06'),(845,1,123,1659380400000,635,'2017-05-23 07:24:07','2017-05-23 07:24:07'),(846,1,123,1659466800000,660,'2017-05-23 07:24:08','2017-05-23 07:24:08'),(847,1,123,1659553200000,635,'2017-05-23 07:24:09','2017-05-23 07:24:09'),(848,1,123,1659639600000,500,'2017-05-23 07:24:10','2017-05-23 07:24:10'),(849,1,123,1659726000000,815,'2017-05-23 07:24:11','2017-05-23 07:24:11'),(850,1,123,1659812400000,500,'2017-05-23 07:24:12','2017-05-23 07:24:12'),(851,1,123,1659898800000,550,'2017-05-23 07:24:13','2017-05-23 07:24:13'),(852,1,123,1659985200000,660,'2017-05-23 07:24:14','2017-05-23 07:24:14'),(853,1,123,1660071600000,680,'2017-05-23 07:24:15','2017-05-23 07:24:15'),(854,1,123,1660158000000,750,'2017-05-23 07:24:16','2017-05-23 07:24:16'),(855,1,123,1660244400000,612,'2017-05-23 07:24:17','2017-05-23 07:24:17'),(856,1,123,1660330800000,680,'2017-05-23 07:24:18','2017-05-23 07:24:18'),(857,1,123,1660417200000,660,'2017-05-23 07:24:19','2017-05-23 07:24:19'),(858,1,123,1660503600000,220,'2017-05-23 07:24:20','2017-05-23 07:24:20'),(859,1,123,1660590000000,510,'2017-05-23 07:24:21','2017-05-23 07:24:21'),(860,1,123,1660676400000,750,'2017-05-23 07:24:22','2017-05-23 07:24:22'),(861,1,123,1660762800000,750,'2017-05-23 07:24:23','2017-05-23 07:24:23'),(862,1,123,1660849200000,400,'2017-05-23 07:24:24','2017-05-23 07:24:24'),(863,1,123,1660935600000,612,'2017-05-23 07:24:25','2017-05-23 07:24:25'),(864,1,123,1661022000000,590,'2017-05-23 07:24:26','2017-05-23 07:24:26'),(865,1,123,1661108400000,400,'2017-05-23 07:24:27','2017-05-23 07:24:27'),(866,1,123,1661194800000,500,'2017-05-23 07:24:28','2017-05-23 07:24:28'),(867,1,123,1661281200000,400,'2017-05-23 07:24:29','2017-05-23 07:24:29'),(868,1,123,1661367600000,635,'2017-05-23 07:24:30','2017-05-23 07:24:30'),(869,1,123,1661454000000,590,'2017-05-23 07:24:31','2017-05-23 07:24:31'),(870,1,123,1661540400000,550,'2017-05-23 07:24:32','2017-05-23 07:24:32'),(871,1,123,1661626800000,750,'2017-05-23 07:24:33','2017-05-23 07:24:33'),(872,1,123,1661713200000,350,'2017-05-23 07:24:34','2017-05-23 07:24:34'),(873,1,123,1661799600000,750,'2017-05-23 07:24:35','2017-05-23 07:24:35'),(874,1,123,1661886000000,500,'2017-05-23 07:24:36','2017-05-23 07:24:36'),(875,1,123,1661972400000,680,'2017-05-23 07:24:37','2017-05-23 07:24:37'),(876,1,123,1662058800000,460,'2017-05-23 07:24:38','2017-05-23 07:24:38'),(877,1,123,1662145200000,475,'2017-05-23 07:24:39','2017-05-23 07:24:39'),(878,1,123,1662231600000,660,'2017-05-23 07:24:40','2017-05-23 07:24:40'),(879,1,123,1662318000000,475,'2017-05-23 07:24:41','2017-05-23 07:24:41'),(880,1,123,1662404400000,490,'2017-05-23 07:24:42','2017-05-23 07:24:42'),(881,1,123,1662490800000,400,'2017-05-23 07:24:44','2017-05-23 07:24:44'),(882,1,123,1662577200000,750,'2017-05-23 07:24:45','2017-05-23 07:24:45'),(883,1,123,1662750000000,680,'2017-05-23 07:24:47','2017-05-23 07:24:47'),(884,1,123,1662836400000,500,'2017-05-23 07:24:48','2017-05-23 07:24:48'),(885,1,123,1662922800000,612,'2017-05-23 07:24:49','2017-05-23 07:24:49'),(886,1,123,1663009200000,500,'2017-05-23 07:24:50','2017-05-23 07:24:50'),(887,1,123,1663095600000,590,'2017-05-23 07:24:51','2017-05-23 07:24:51'),(888,1,123,1663182000000,635,'2017-05-23 07:24:52','2017-05-23 07:24:52'),(889,1,123,1663268400000,750,'2017-05-23 07:24:53','2017-05-23 07:24:53'),(890,1,123,1663354800000,635,'2017-05-23 07:24:54','2017-05-23 07:24:54'),(891,1,123,1663441200000,400,'2017-05-23 07:24:55','2017-05-23 07:24:55'),(892,1,123,1663527600000,460,'2017-05-23 07:24:56','2017-05-23 07:24:56'),(893,1,123,1663614000000,710,'2017-05-23 07:24:57','2017-05-23 07:24:57'),(894,1,123,1663700400000,500,'2017-05-23 07:24:58','2017-05-23 07:24:58'),(895,1,123,1663786800000,510,'2017-05-23 07:24:59','2017-05-23 07:24:59'),(896,1,123,1663873200000,750,'2017-05-23 07:25:00','2017-05-23 07:25:00'),(897,1,123,1663959600000,400,'2017-05-23 07:25:01','2017-05-23 07:25:01'),(898,1,123,1664046000000,510,'2017-05-23 07:25:02','2017-05-23 07:25:02'),(899,1,123,1664132400000,490,'2017-05-23 07:25:03','2017-05-23 07:25:03'),(900,1,123,1664218800000,490,'2017-05-23 07:25:04','2017-05-23 07:25:04'),(901,1,123,1664305200000,490,'2017-05-23 07:25:05','2017-05-23 07:25:05'),(902,1,123,1664391600000,510,'2017-05-23 07:25:06','2017-05-23 07:25:06'),(903,1,123,1664478000000,680,'2017-05-23 07:25:07','2017-05-23 07:25:07'),(904,1,123,1664564400000,400,'2017-05-23 07:25:08','2017-05-23 07:25:08'),(905,1,123,1664650800000,720,'2017-05-23 07:25:09','2017-05-23 07:25:09'),(906,1,123,1664737200000,510,'2017-05-23 07:25:10','2017-05-23 07:25:10'),(907,1,123,1664823600000,500,'2017-05-23 07:25:11','2017-05-23 07:25:11'),(908,1,123,1664910000000,475,'2017-05-23 07:25:12','2017-05-23 07:25:12'),(909,1,123,1664996400000,510,'2017-05-23 07:25:13','2017-05-23 07:25:13'),(910,1,123,1665082800000,750,'2017-05-23 07:25:14','2017-05-23 07:25:14'),(911,1,123,1665169200000,220,'2017-05-23 07:25:15','2017-05-23 07:25:15'),(912,1,123,1665255600000,500,'2017-05-23 07:25:16','2017-05-23 07:25:16'),(913,1,123,1665342000000,500,'2017-05-23 07:25:17','2017-05-23 07:25:17'),(914,1,123,1665428400000,550,'2017-05-23 07:25:18','2017-05-23 07:25:18'),(915,1,123,1665514800000,475,'2017-05-23 07:25:19','2017-05-23 07:25:19'),(916,1,123,1665601200000,550,'2017-05-23 07:25:20','2017-05-23 07:25:20'),(917,1,123,1665687600000,635,'2017-05-23 07:25:21','2017-05-23 07:25:21'),(918,1,123,1665774000000,750,'2017-05-23 07:25:26','2017-05-23 07:25:26'),(919,1,123,1665860400000,350,'2017-05-23 07:25:27','2017-05-23 07:25:27'),(920,1,123,1665946800000,750,'2017-05-23 07:25:28','2017-05-23 07:25:28'),(921,1,123,1666033200000,500,'2017-05-23 07:25:29','2017-05-23 07:25:29'),(922,1,123,1666033200000,750,'2017-05-23 07:25:30','2017-05-23 07:25:30'),(923,1,123,1666119600000,720,'2017-05-23 07:25:31','2017-05-23 07:25:31'),(924,1,123,1666206000000,680,'2017-05-23 07:25:32','2017-05-23 07:25:32'),(925,1,123,1666292400000,350,'2017-05-23 07:25:33','2017-05-23 07:25:33'),(926,1,123,1666378800000,590,'2017-05-23 07:25:34','2017-05-23 07:25:34'),(927,1,123,1666465200000,660,'2017-05-23 07:25:35','2017-05-23 07:25:35'),(928,1,123,1666551600000,460,'2017-05-23 07:25:36','2017-05-23 07:25:36'),(929,1,123,1666638000000,635,'2017-05-23 07:25:37','2017-05-23 07:25:37'),(930,1,123,1666724400000,680,'2017-05-23 07:25:38','2017-05-23 07:25:38'),(931,1,123,1666810800000,460,'2017-05-23 07:25:39','2017-05-23 07:25:39'),(932,1,123,1666897200000,815,'2017-05-23 07:25:40','2017-05-23 07:25:40'),(933,1,123,1666983600000,350,'2017-05-23 07:25:41','2017-05-23 07:25:41'),(934,1,123,1667070000000,612,'2017-05-23 07:25:42','2017-05-23 07:25:42'),(935,1,123,1667156400000,500,'2017-05-23 07:25:43','2017-05-23 07:25:43'),(936,1,123,1667242800000,550,'2017-05-23 07:25:44','2017-05-23 07:25:44'),(937,1,123,1667329200000,460,'2017-05-23 07:25:45','2017-05-23 07:25:45'),(938,1,123,1667415600000,400,'2017-05-23 07:25:46','2017-05-23 07:25:46'),(939,1,123,1667502000000,550,'2017-05-23 07:25:47','2017-05-23 07:25:47'),(940,1,123,1667588400000,475,'2017-05-23 07:25:48','2017-05-23 07:25:48'),(941,1,123,1667674800000,710,'2017-05-23 07:25:49','2017-05-23 07:25:49'),(942,1,123,1667761200000,350,'2017-05-23 07:25:50','2017-05-23 07:25:50'),(943,1,123,1667847600000,500,'2017-05-23 07:25:51','2017-05-23 07:25:51'),(944,1,123,1667934000000,490,'2017-05-23 07:25:52','2017-05-23 07:25:52'),(945,1,123,1668020400000,710,'2017-05-23 07:25:53','2017-05-23 07:25:53'),(946,1,123,1668106800000,660,'2017-05-23 07:25:54','2017-05-23 07:25:54'),(947,1,123,1668193200000,660,'2017-05-23 07:25:55','2017-05-23 07:25:55'),(948,1,123,1668279600000,220,'2017-05-23 07:25:56','2017-05-23 07:25:56'),(949,1,123,1668366000000,750,'2017-05-23 07:25:57','2017-05-23 07:25:57'),(950,1,123,1668452400000,660,'2017-05-23 07:25:58','2017-05-23 07:25:58'),(951,1,123,1668538800000,550,'2017-05-23 07:25:59','2017-05-23 07:25:59'),(952,1,123,1668625200000,720,'2017-05-23 07:26:00','2017-05-23 07:26:00'),(953,1,123,1668711600000,460,'2017-05-23 07:26:01','2017-05-23 07:26:01'),(954,1,123,1668798000000,550,'2017-05-23 07:26:02','2017-05-23 07:26:02'),(955,1,123,1668884400000,500,'2017-05-23 07:27:44','2017-05-23 07:27:44'),(956,1,123,1668970800000,350,'2017-05-23 07:27:45','2017-05-23 07:27:45'),(957,1,123,1669057200000,400,'2017-05-23 07:27:46','2017-05-23 07:27:46'),(958,1,123,1669143600000,750,'2017-05-23 07:27:47','2017-05-23 07:27:47'),(959,1,123,1669230000000,510,'2017-05-23 07:27:48','2017-05-23 07:27:48'),(960,1,123,1669316400000,720,'2017-05-23 07:27:49','2017-05-23 07:27:49'),(961,1,123,1669489200000,750,'2017-05-23 07:27:51','2017-05-23 07:27:51'),(962,1,123,1669575600000,612,'2017-05-23 07:27:52','2017-05-23 07:27:52'),(963,1,123,1669662000000,720,'2017-05-23 07:27:53','2017-05-23 07:27:53'),(964,1,123,1669748400000,510,'2017-05-23 07:27:54','2017-05-23 07:27:54'),(965,1,123,1669834800000,750,'2017-05-23 07:27:55','2017-05-23 07:27:55'),(966,1,123,1669921200000,475,'2017-05-23 07:27:56','2017-05-23 07:27:56'),(967,1,123,1670007600000,490,'2017-05-23 07:27:57','2017-05-23 07:27:57'),(968,1,123,1670094000000,500,'2017-05-23 07:27:58','2017-05-23 07:27:58'),(969,1,123,1670180400000,815,'2017-05-23 07:27:59','2017-05-23 07:27:59'),(970,1,123,1670266800000,510,'2017-05-23 07:28:00','2017-05-23 07:28:00'),(971,1,123,1670353200000,720,'2017-05-23 07:28:01','2017-05-23 07:28:01'),(972,1,123,1670439600000,750,'2017-05-23 07:28:02','2017-05-23 07:28:02'),(973,1,123,1670526000000,500,'2017-05-23 07:28:03','2017-05-23 07:28:03'),(974,1,123,1670612400000,350,'2017-05-23 07:28:04','2017-05-23 07:28:04'),(975,1,123,1670698800000,612,'2017-05-23 07:28:05','2017-05-23 07:28:05'),(976,1,123,1670785200000,660,'2017-05-23 07:28:06','2017-05-23 07:28:06'),(977,1,123,1670871600000,710,'2017-05-23 07:28:07','2017-05-23 07:28:07'),(978,1,123,1670958000000,475,'2017-05-23 07:28:08','2017-05-23 07:28:08'),(979,1,123,1671044400000,490,'2017-05-23 07:28:09','2017-05-23 07:28:09'),(980,1,123,1671130800000,590,'2017-05-23 07:30:30','2017-05-23 07:30:30'),(981,1,123,1671217200000,720,'2017-05-23 07:30:31','2017-05-23 07:30:31'),(982,1,123,1671303600000,710,'2017-05-23 07:30:32','2017-05-23 07:30:32'),(983,1,123,1671390000000,815,'2017-05-23 07:30:33','2017-05-23 07:30:33'),(984,1,123,1671476400000,550,'2017-05-23 07:30:34','2017-05-23 07:30:34'),(985,1,123,1671562800000,750,'2017-05-23 07:30:35','2017-05-23 07:30:35'),(986,1,123,1671649200000,590,'2017-05-23 07:30:36','2017-05-23 07:30:36'),(987,1,123,1671735600000,815,'2017-05-23 07:30:37','2017-05-23 07:30:37'),(988,1,123,1671822000000,350,'2017-05-23 07:30:38','2017-05-23 07:30:38'),(989,1,123,1671908400000,220,'2017-05-23 07:30:39','2017-05-23 07:30:39'),(990,1,123,1671994800000,510,'2017-05-23 07:30:40','2017-05-23 07:30:40'),(991,1,123,1672081200000,750,'2017-05-23 07:30:41','2017-05-23 07:30:41'),(992,1,123,1672167600000,710,'2017-05-23 07:30:42','2017-05-23 07:30:42'),(993,1,123,1672254000000,590,'2017-05-23 07:30:43','2017-05-23 07:30:43'),(994,1,123,1672340400000,815,'2017-05-23 07:31:25','2017-05-23 07:31:25'),(995,1,123,1672426800000,400,'2017-05-23 07:31:26','2017-05-23 07:31:26'),(996,1,123,1672513200000,220,'2017-05-23 07:31:27','2017-05-23 07:31:27'),(997,1,123,1672599600000,590,'2017-05-23 07:31:28','2017-05-23 07:31:28'),(998,1,123,1672686000000,680,'2017-05-23 07:31:29','2017-05-23 07:31:29'),(999,1,123,1672772400000,490,'2017-05-23 07:31:30','2017-05-23 07:31:30'),(1000,1,123,1672858800000,635,'2017-05-23 07:31:31','2017-05-23 07:31:31'),(1001,1,123,1672945200000,490,'2017-05-23 07:31:32','2017-05-23 07:31:32'),(1002,1,123,1673031600000,510,'2017-05-23 07:31:33','2017-05-23 07:31:33'),(1003,1,123,1673118000000,490,'2017-05-23 07:31:34','2017-05-23 07:31:34'),(1004,1,123,1673204400000,612,'2017-05-23 07:31:35','2017-05-23 07:31:35'),(1005,1,123,1673290800000,590,'2017-05-23 07:31:36','2017-05-23 07:31:36'),(1006,1,123,1673377200000,350,'2017-05-23 07:31:37','2017-05-23 07:31:37'),(1007,1,123,1673463600000,500,'2017-05-23 07:31:38','2017-05-23 07:31:38'),(1008,1,123,1673550000000,750,'2017-05-23 07:31:39','2017-05-23 07:31:39'),(1009,1,123,1673636400000,460,'2017-05-23 07:32:08','2017-05-23 07:32:08'),(1010,1,123,1673722800000,710,'2017-05-23 07:32:09','2017-05-23 07:32:09'),(1011,1,123,1673809200000,612,'2017-05-23 07:32:10','2017-05-23 07:32:10'),(1012,1,123,1673895600000,660,'2017-05-23 07:32:11','2017-05-23 07:32:11'),(1013,1,123,1673982000000,815,'2017-05-23 07:32:12','2017-05-23 07:32:12'),(1014,1,123,1674068400000,680,'2017-05-23 07:32:13','2017-05-23 07:32:13'),(1015,1,123,1674154800000,475,'2017-05-23 07:32:14','2017-05-23 07:32:14'),(1016,1,123,1674241200000,550,'2017-05-23 07:32:15','2017-05-23 07:32:15'),(1017,1,123,1674327600000,460,'2017-05-23 07:32:16','2017-05-23 07:32:16'),(1018,1,123,1674414000000,710,'2017-05-23 07:32:17','2017-05-23 07:32:17'),(1019,1,123,1674500400000,590,'2017-05-23 07:32:18','2017-05-23 07:32:18'),(1020,1,123,1674586800000,720,'2017-05-23 07:32:19','2017-05-23 07:32:19'),(1021,1,123,1674673200000,550,'2017-05-23 07:32:20','2017-05-23 07:32:20'),(1022,1,123,1674759600000,720,'2017-05-23 07:32:21','2017-05-23 07:32:21'),(1023,1,123,1674846000000,612,'2017-05-23 07:32:22','2017-05-23 07:32:22'),(1024,1,123,1674932400000,750,'2017-05-23 07:32:23','2017-05-23 07:32:23'),(1025,1,106,1582484400000,510,'2017-05-23 07:32:44','2017-05-23 07:32:44'),(1026,1,106,1582570800000,550,'2017-05-23 07:33:00','2017-05-23 07:33:00'),(1027,1,106,1582570800000,710,'2017-05-23 07:33:00','2017-05-23 07:33:00'),(1028,1,106,1582657200000,710,'2017-05-23 07:33:02','2017-05-23 07:33:02'),(1029,1,106,1582743600000,490,'2017-05-23 07:33:04','2017-05-23 07:33:04'),(1030,1,106,1582830000000,460,'2017-05-23 07:33:06','2017-05-23 07:33:06'),(1031,1,106,1582916400000,635,'2017-05-23 07:33:08','2017-05-23 07:33:08'),(1032,1,106,1582916400000,475,'2017-05-23 07:33:08','2017-05-23 07:33:08'),(1033,1,106,1583002800000,475,'2017-05-23 07:33:10','2017-05-23 07:33:10'),(1034,1,106,1583089200000,500,'2017-05-23 07:33:12','2017-05-23 07:33:12'),(1035,1,106,1583175600000,490,'2017-05-23 07:33:14','2017-05-23 07:33:14'),(1036,1,106,1583175600000,815,'2017-05-23 07:33:14','2017-05-23 07:33:14'),(1037,1,222,1583262000000,475,'2017-05-24 06:58:52','2017-05-24 06:58:52'),(1038,1,222,1583262000000,815,'2017-05-24 06:58:52','2017-05-24 06:58:52'),(1039,1,222,1583348400000,815,'2017-05-24 06:58:53','2017-05-24 06:58:53'),(1040,1,222,1583434800000,635,'2017-05-24 06:58:55','2017-05-24 06:58:55'),(1041,1,222,1583434800000,220,'2017-05-24 06:58:55','2017-05-24 06:58:55'),(1042,1,222,1583521200000,710,'2017-05-24 06:58:57','2017-05-24 06:58:57'),(1043,1,222,1583607600000,220,'2017-05-24 06:58:59','2017-05-24 06:58:59'),(1044,1,222,1583607600000,475,'2017-05-24 06:58:59','2017-05-24 06:58:59'),(1045,1,222,1583694000000,590,'2017-05-24 06:59:03','2017-05-24 06:59:03'),(1046,1,222,1583694000000,550,'2017-05-24 06:59:03','2017-05-24 06:59:03'),(1047,1,222,1583780400000,635,'2017-05-24 06:59:25','2017-05-24 06:59:25'),(1048,1,222,1583780400000,660,'2017-05-24 06:59:26','2017-05-24 06:59:26'),(1049,1,222,1583866800000,220,'2017-05-24 06:59:28','2017-05-24 06:59:28'),(1050,1,222,1583953200000,400,'2017-05-24 06:59:30','2017-05-24 06:59:30'),(1051,1,222,1583953200000,635,'2017-05-24 06:59:32','2017-05-24 06:59:32'),(1052,1,222,1583953200000,500,'2017-05-24 06:59:34','2017-05-24 06:59:34'),(1053,1,222,1584039600000,710,'2017-05-24 06:59:36','2017-05-24 06:59:36'),(1054,1,222,1584126000000,720,'2017-05-24 06:59:38','2017-05-24 06:59:38'),(1055,1,222,1584212400000,460,'2017-05-24 06:59:40','2017-05-24 06:59:40'),(1056,1,222,1584298800000,680,'2017-05-24 06:59:42','2017-05-24 06:59:42'),(1057,1,222,1584385200000,590,'2017-05-24 06:59:44','2017-05-24 06:59:44'),(1058,1,222,1584385200000,500,'2017-05-24 06:59:44','2017-05-24 06:59:44'),(1059,1,222,1584471600000,490,'2017-05-24 06:59:46','2017-05-24 06:59:46'),(1060,1,222,1584471600000,220,'2017-05-24 06:59:48','2017-05-24 06:59:48'),(1061,1,222,1584558000000,750,'2017-05-24 06:59:50','2017-05-24 06:59:50'),(1062,1,222,1584644400000,660,'2017-05-24 06:59:52','2017-05-24 06:59:52'),(1063,1,222,1584644400000,500,'2017-05-24 06:59:54','2017-05-24 06:59:54'),(1064,1,222,1584730800000,550,'2017-05-24 06:59:56','2017-05-24 06:59:56'),(1065,1,222,1584730800000,500,'2017-05-24 06:59:58','2017-05-24 06:59:58'),(1066,1,222,1584817200000,680,'2017-05-24 07:00:00','2017-05-24 07:00:00'),(1067,1,222,1584817200000,460,'2017-05-24 07:00:00','2017-05-24 07:00:00'),(1068,1,222,1584903600000,460,'2017-05-24 07:00:02','2017-05-24 07:00:02'),(1069,1,222,1584990000000,220,'2017-05-24 07:00:04','2017-05-24 07:00:04'),(1070,1,222,1584990000000,660,'2017-05-24 07:00:06','2017-05-24 07:00:06'),(1071,1,111,1675018800000,475,'2017-05-24 07:26:49','2017-05-24 07:26:49'),(1072,1,111,1675018800000,815,'2017-05-24 07:26:49','2017-05-24 07:26:49'),(1073,1,111,1675105200000,710,'2017-05-24 07:26:57','2017-05-24 07:26:57'),(1074,1,111,1675191600000,815,'2017-05-24 07:26:59','2017-05-24 07:26:59'),(1075,1,111,1675278000000,460,'2017-05-24 07:27:01','2017-05-24 07:27:01'),(1076,1,111,1675278000000,460,'2017-05-24 07:27:01','2017-05-24 07:27:01'),(1077,1,111,1675364400000,550,'2017-05-24 07:27:03','2017-05-24 07:27:03'),(1078,1,111,1675364400000,490,'2017-05-24 07:27:03','2017-05-24 07:27:03'),(1079,1,111,1675450800000,350,'2017-05-24 07:27:05','2017-05-24 07:27:05'),(1080,1,111,1675537200000,750,'2017-05-24 07:27:07','2017-05-24 07:27:07'),(1081,1,111,1675537200000,750,'2017-05-24 07:27:07','2017-05-24 07:27:07'),(1082,1,111,1675623600000,400,'2017-05-24 07:27:09','2017-05-24 07:27:09'),(1083,1,111,1675710000000,400,'2017-05-24 07:27:11','2017-05-24 07:27:11'),(1084,1,111,1675710000000,635,'2017-05-24 07:27:11','2017-05-24 07:27:11'),(1085,1,111,1675796400000,680,'2017-05-24 07:27:13','2017-05-24 07:27:13'),(1086,1,111,1675796400000,490,'2017-05-24 07:27:15','2017-05-24 07:27:15'),(1087,1,111,1675882800000,350,'2017-05-24 07:27:17','2017-05-24 07:27:17'),(1088,1,111,1675969200000,550,'2017-05-24 07:27:19','2017-05-24 07:27:19'),(1089,1,111,1675969200000,680,'2017-05-24 07:27:19','2017-05-24 07:27:19'),(1090,1,111,1676055600000,680,'2017-05-24 07:27:21','2017-05-24 07:27:21'),(1091,1,111,1676142000000,400,'2017-05-24 07:27:23','2017-05-24 07:27:23'),(1092,1,111,1676228400000,720,'2017-05-24 07:27:25','2017-05-24 07:27:25'),(1093,1,111,1676228400000,550,'2017-05-24 07:27:25','2017-05-24 07:27:25'),(1094,1,111,1676314800000,660,'2017-05-24 07:27:27','2017-05-24 07:27:27'),(1095,1,111,1676314800000,710,'2017-05-24 07:27:27','2017-05-24 07:27:27'),(1096,1,111,1676401200000,500,'2017-05-24 07:27:29','2017-05-24 07:27:29'),(1097,1,111,1676401200000,720,'2017-05-24 07:27:29','2017-05-24 07:27:29'),(1098,1,111,1676487600000,400,'2017-05-24 07:27:31','2017-05-24 07:27:31'),(1099,1,111,1676487600000,490,'2017-05-24 07:27:31','2017-05-24 07:27:31'),(1100,1,111,1676574000000,815,'2017-05-24 07:27:33','2017-05-24 07:27:33'),(1101,1,111,1676574000000,680,'2017-05-24 07:27:33','2017-05-24 07:27:33'),(1102,1,111,1676660400000,720,'2017-05-24 07:27:35','2017-05-24 07:27:35');
/*!40000 ALTER TABLE `readings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_user`
--
DROP TABLE IF EXISTS `role_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_user` (
`role_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`role_id`,`user_id`),
KEY `role_user_user_id_foreign` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_user`
--
LOCK TABLES `role_user` WRITE;
/*!40000 ALTER TABLE `role_user` DISABLE KEYS */;
INSERT INTO `role_user` VALUES (1,451,NULL,NULL);
/*!40000 ALTER TABLE `role_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'Super Admin','Super administrator of the applications',NULL,'2017-02-14 01:36:25'),(2,'Admin','Administrator of the application',NULL,'2016-07-06 06:58:15'),(33,'Roles and Permissions Manager','Can manage all the roles and permissions of the application','2016-07-31 14:53:36','2016-07-31 14:53:36'),(34,'Users Manager','Can manage all the users on the application','2016-07-31 14:56:18','2017-02-14 01:36:20'),(35,'Configuration Manager','Administrator for Configuration','2017-02-26 02:03:50','2017-02-26 02:03:50');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`ip_address` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_agent` text COLLATE utf8_unicode_ci,
`payload` text COLLATE utf8_unicode_ci NOT NULL,
`last_activity` int(11) NOT NULL,
UNIQUE KEY `sessions_id_unique` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_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 */;
INSERT INTO `sessions` VALUES ('2cf06346a7a7a4d4c8da35823f87db42a3b9e277',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','YTo1OntzOjY6Il90b2tlbiI7czo0MDoiam5GQXRINFhtNTNScHBRS0ZtOExtMHF6aGo2VlVLRjJQWFF3VFdibSI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czoxMzoiaHR0cDovL3hpcy1ociI7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjE5OiJodHRwOi8veGlzLWhyL2xvZ2luIjt9czo1OiJmbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjk6Il9zZjJfbWV0YSI7YTozOntzOjE6InUiO2k6MTQ3MzA0NjA2NTtzOjE6ImMiO2k6MTQ3MzA0NjA2NTtzOjE6ImwiO3M6MToiMCI7fX0=',1473046065),('42d9795e169e919055f2cd43e4f22a0bba6b6c46',NULL,'127.0.0.1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0','<KEY>',1470053819),('4764908d116b4912ca502b54f2adf7f57882cdee',451,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','YTo2OntzOjY6Il90b2tlbiI7czo0MDoiRTRMa2E1eE1PMjFLZUgyVHpBSnI5eGExclFndXdPTTR4Y2ZBUkpleSI7czozOiJ1cmwiO2E6MDp7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIxOiJodHRwOi8vYXV0aC91c2Vycy80NTEiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjQ1MTtzOjk6Il9zZjJfbWV0YSI7YTozOntzOjE6InUiO2k6MTQ3MjM5NjA3OTtzOjE6ImMiO2k6MTQ3MjM5NjA3MztzOjE6ImwiO3M6MToiMCI7fX0=',1472396079),('4a721221d41baa4e28ddc877820c0c2cb8511ab8',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','<KEY>',1473046459),('741d334677fa1fd699bb2975ab2bec86311b269a',451,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.100 Safari/537.36','<KEY>),('81d3386e769848203b0265940adba5d2ab5c4d86',451,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','YTo2OntzOjY6Il90b2tlbiI7czo0MDoib3g5aFhJdktUYXVEcXFxNmJJczZ3THFhbTI0cmc2NW9KQkZhSXhVMyI7czozOiJ1cmwiO2E6MDp7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIxOiJodHRwOi8vYXV0aC91c2Vycy80NjUiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjQ1MTtzOjk6Il9zZjJfbWV0YSI7YTozOntzOjE6InUiO2k6MTQ3MzA0NTI4MTtzOjE6ImMiO2k6MTQ3MzA0NTI0NDtzOjE6ImwiO3M6MToiMCI7fX0=',1473045281),('9cdc4eb6cfd89b951702afeeed076d61e30f63a1',NULL,'127.0.0.1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0','YTo0OntzOjY6Il90b2tlbiI7czo0MDoiTU9GQXBDTGgyNWZpVWNzWm5QVmVBNFM5WDJNeTR2b1Rva2w1bHU2byI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MTc6Imh0dHA6Ly9hdXRoL2xvZ2luIjt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NzAwNTM4MTk7czoxOiJjIjtpOjE0NzAwNTM4MTk7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1470053819),('e0761be1ce7f06822b1c4753a2b0200dd14664ab',451,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','<KEY>',1470051874),('e450bf873c96e679fea15bd91912de4fcfbb4e42',NULL,'1172.16.31.10','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0','<KEY>',1470066105),('f08b06a8d8c5248144bd289c25c615609fa8eb01',NULL,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','<KEY>=',1473046476);
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `settings`
--
DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app_name` varchar(45) DEFAULT NULL,
`app_logo` varchar(45) DEFAULT NULL,
`app_footer_name` varchar(145) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `settings`
--
LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (1,'LIBRARY MANAGER',NULL,'Xillion Information Systems (c) 2017 | Custom Name | For support: 7783031','0000-00-00 00:00:00',NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `supervisors`
--
DROP TABLE IF EXISTS `supervisors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supervisors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`supervisor_id` int(11) DEFAULT NULL,
`supervisor_name` varchar(45) DEFAULT NULL,
`supervisor_avatar` varchar(45) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `supervisors`
--
LOCK TABLES `supervisors` WRITE;
/*!40000 ALTER TABLE `supervisors` DISABLE KEYS */;
INSERT INTO `supervisors` VALUES (1,451,354,'<NAME>','354.jpg',NULL,NULL),(2,452,354,'<NAME>','354.jpg',NULL,NULL),(3,451,473,'<NAME>','473.jpg',NULL,NULL),(4,452,451,'<NAME>','451.jpg',NULL,NULL);
/*!40000 ALTER TABLE `supervisors` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`avatar` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=473 DEFAULT CHARSET=utf8 COLLATE=utf8_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 (451,'<NAME>','<EMAIL>','$2y$10$lhsZrAdUniDSKxh2ee/N/usxbG6tiJ8gnHkaYj./oK6X2hCNb4krm','4T6ufwMSHxGYZUyRQVkHjtFzSdb2OKN6gCk7nlQ8RDjrQmeW2QXQvoDZI5S0','1469877640.jpg',NULL,'2017-05-24 02:00:32'),(472,'<NAME>','<EMAIL>','$2y$10$P84p51kGUhNt4d8Hw2xV9etLRd.n5R8845dmahQtwRxm15WaAdesK',NULL,'placeholder.png','2017-05-23 01:10:25','2017-05-23 01:10:25'),(471,'Azma','<EMAIL>','$2y$10$DNKUOl1Rc.6l2syDZpmnP.b0ZeLJYEfvSJJ6Gv0UvlYEv15dMz7qC',NULL,'placeholder.png','2017-05-23 01:10:11','2017-05-23 01:10:11'),(470,'<NAME>','<EMAIL>','$2y$10$rMbsVcAxuE9gpcWYMIA8Duu7HCJcpxGH5/2xzhhrhYsy4icWddi8G',NULL,'placeholder.png','2017-05-23 01:09:52','2017-05-23 01:09:52');
/*!40000 ALTER TABLE `users` 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 2017-05-24 12:28:52
|
<filename>instancias.sql
USE FBD;
-- -- PAÍS
INSERT INTO `FBD`.`pais` (`siglaPais`, `nome`, `idioma`) VALUES ('BRA', 'BRASIL', 'PORTUGUES');
INSERT INTO `FBD`.`pais` (`siglaPais`, `nome`, `idioma`) VALUES ('JPN', 'JAPÃO', 'JAPONES');
INSERT INTO `FBD`.`pais` (`siglaPais`, `nome`, `idioma`) VALUES ('KRS', 'COREIA DO SUL', 'COREANO');
INSERT INTO `FBD`.`pais` (`siglaPais`, `nome`, `idioma`) VALUES ('EUA', 'ESTADO UNIDOS', 'INGLES');
INSERT INTO `FBD`.`pais` (`siglaPais`, `nome`, `idioma`) VALUES ('IND', 'INDIA', 'HINDU');
-- -- GÊNERO MUSICAL
INSERT INTO `FBD`.`genero` (`nome`) VALUES ('Gospel');
INSERT INTO `FBD`.`genero` (`nome`) VALUES ('Rock');
INSERT INTO `FBD`.`genero` (`nome`) VALUES ('Pop');
INSERT INTO `FBD`.`genero` (`nome`) VALUES ('Kpop');
INSERT INTO `FBD`.`genero` (`nome`) VALUES ('Classica');
-- -- PESSOA
INSERT INTO `FBD`.`pessoa` (`nome`, `nacionalidade`) VALUES ('Aoi', '2');
INSERT INTO `FBD`.`pessoa` (`nome`, `nacionalidade`) VALUES ('<NAME>', '1');
INSERT INTO `FBD`.`pessoa` (`nome`, `nacionalidade`) VALUES ('<NAME>', '4');
INSERT INTO `FBD`.`pessoa` (`nome`, `nacionalidade`) VALUES ('Pedro', '1');
INSERT INTO `FBD`.`pessoa` (`nome`, `nacionalidade`) VALUES ('Kishan', '5');
-- -- MUSICO
INSERT INTO `FBD`.`musico` (`pessoa`, `nome`) VALUES ('2', '<NAME>');
INSERT INTO `FBD`.`musico` (`pessoa`, `nome`) VALUES ('3', 'Faith');
INSERT INTO `FBD`.`musico` (`pessoa`, `nome`) VALUES ('5', 'Kamakawiwo');
INSERT INTO `FBD`.`musico` (`pessoa`, `nome`) VALUES ('1', 'Moon');
INSERT INTO `FBD`.`musico` (`pessoa`, `nome`) VALUES ('4', 'Rock');
-- -- ARTISTA
INSERT INTO `FBD`.`artista` (`nome`, `nacionalidade`) VALUES ('Adoradores', '1');
INSERT INTO `FBD`.`artista` (`nome`, `nacionalidade`) VALUES ('BTS', '3');
INSERT INTO `FBD`.`artista` (`nome`, `nacionalidade`) VALUES ('Salaam', '5');
INSERT INTO `FBD`.`artista` (`nome`, `nacionalidade`) VALUES ('Bethoven', '2');
INSERT INTO `FBD`.`artista` (`nome`, `nacionalidade`) VALUES ('DestinyChild', '4');
-- -- Álbum
INSERT INTO `FBD`.`album` (`titulo`, `ano`, `genero`, `compositor`, `artista`, `repeticoes`) VALUES ('SeiLa', '2019', '1', '1', '1', '0');
INSERT INTO `FBD`.`album` (`titulo`, `ano`, `genero`, `compositor`, `artista`, `repeticoes`) VALUES ('Talvez', '2019', '3', '1', '4', '0');
INSERT INTO `FBD`.`album` (`titulo`, `ano`, `genero`, `compositor`, `artista`, `repeticoes`) VALUES ('Inspirado', '2019', '1', '5', '1', '0');
INSERT INTO `FBD`.`album` (`titulo`, `ano`, `genero`, `compositor`, `artista`, `repeticoes`) VALUES ('Sora', '2019', '2', '4', '2', '0');
INSERT INTO `FBD`.`album` (`titulo`, `ano`, `genero`, `compositor`, `artista`, `repeticoes`) VALUES ('Re', '2019', '1', '3', '1', '0');
-- -- Musica
INSERT INTO `FBD`.`musica` (`titulo`, `estilo`, `ano`, `repeticoes`) VALUES ('<NAME>', '1', '2016', '0');
INSERT INTO `FBD`.`musica` (`titulo`, `estilo`, `ano`, `repeticoes`) VALUES ('<NAME>', '3', '2016', '0');
INSERT INTO `FBD`.`musica` (`titulo`, `estilo`, `ano`, `repeticoes`) VALUES ('<NAME>', '3', '2016', '0');
INSERT INTO `FBD`.`musica` (`titulo`, `estilo`, `ano`, `repeticoes`) VALUES ('<NAME>', '2', '2016', '0');
INSERT INTO `FBD`.`musica` (`titulo`, `estilo`, `ano`, `repeticoes`) VALUES ('<NAME>', '5', '1910', '0');
-- -- Playlist
INSERT INTO `FBD`.`playlist` (`titulo`, `data_criacao`, `repeticoes`, `descricao`, `criador`, `genero`) VALUES ('SoBrasil', '2019-3-13', '0', 'Só musicas de cantores brasileiros', '1', '1');
INSERT INTO `FBD`.`playlist` (`titulo`, `data_criacao`, `repeticoes`, `descricao`, `criador`, `genero`) VALUES ('Animadas', '2019-3-13', '0', 'Musicas com ritmo mais rapido', '4', '3');
INSERT INTO `FBD`.`playlist` (`titulo`, `data_criacao`, `repeticoes`, `descricao`, `criador`, `genero`) VALUES ('Estrangeiras', '2019-3-13', '0', 'Musicas Estrangeiras', '2', '5');
INSERT INTO `FBD`.`playlist` (`titulo`, `data_criacao`, `repeticoes`, `descricao`, `criador`, `genero`) VALUES ('Nacionais', '2019-3-13', '0', 'Musicas da minha terra', '2', '2');
INSERT INTO `FBD`.`playlist` (`titulo`, `data_criacao`, `repeticoes`, `descricao`, `criador`, `genero`) VALUES ('Favoritas', '2019-2-19', '0', 'Só musicas de cantores brasileiros', '5', '3');
-- -- ArtistaMusica
INSERT INTO `FBD`.`ArtistaMusica` (`artista`, `musica`) VALUES ('1', '1');
INSERT INTO `FBD`.`ArtistaMusica` (`artista`, `musica`) VALUES ('4', '2');
INSERT INTO `FBD`.`ArtistaMusica` (`artista`, `musica`) VALUES ('5', '4');
INSERT INTO `FBD`.`ArtistaMusica` (`artista`, `musica`) VALUES ('3', '3');
INSERT INTO `FBD`.`ArtistaMusica` (`artista`, `musica`) VALUES ('4', '5');
-- -- Membro
INSERT INTO `FBD`.`Membro` (`musico`, `artista`) VALUES ('1', '1');
INSERT INTO `FBD`.`Membro` (`musico`, `artista`) VALUES ('2', '4');
INSERT INTO `FBD`.`Membro` (`musico`, `artista`) VALUES ('3', '3');
INSERT INTO `FBD`.`Membro` (`musico`, `artista`) VALUES ('4', '2');
INSERT INTO `FBD`.`Membro` (`musico`, `artista`) VALUES ('5', '5');
-- -- ListaItem
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('1', '1');
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('2', '2');
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('2', '3');
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('3', '2');
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('3', '5');
INSERT INTO `FBD`.`ListaItem` (`lista`, `musica`) VALUES ('3', '1');
-- -- PessoaAlbum
INSERT INTO `FBD`.`PessoaAlbum` (`pessoa`, `album`) VALUES ('5', '5');
INSERT INTO `FBD`.`PessoaAlbum` (`pessoa`, `album`) VALUES ('1', '4');
INSERT INTO `FBD`.`PessoaAlbum` (`pessoa`, `album`) VALUES ('3', '2');
INSERT INTO `FBD`.`PessoaAlbum` (`pessoa`, `album`) VALUES ('3', '3');
INSERT INTO `FBD`.`PessoaAlbum` (`pessoa`, `album`) VALUES ('2', '1');
-- -- ArtistaÁlbum
INSERT INTO `FBD`.`ArtistaAlbum` (`artista`, `album`) VALUES ('1', '3');
INSERT INTO `FBD`.`ArtistaAlbum` (`artista`, `album`) VALUES ('2', '4');
INSERT INTO `FBD`.`ArtistaAlbum` (`artista`, `album`) VALUES ('3', '5');
INSERT INTO `FBD`.`ArtistaAlbum` (`artista`, `album`) VALUES ('4', '1');
INSERT INTO `FBD`.`ArtistaAlbum` (`artista`, `album`) VALUES ('5', '2');
-- -- MusicoMusica
INSERT INTO `FBD`.`MusicoMusica` (`musico`, `musica`) VALUES ('4', '5'); |
CREATE PROCEDURE [dbo].[prcSaveGpsLocation]
@latitude DECIMAL(10,7),
@longitude DECIMAL(10,7),
@speed INT,
@direction INT,
@distance DECIMAL(10,1),
@date DATETIME,
@locationMethod NVARCHAR(100),
@phoneNumber NVARCHAR(50),
@userName NVARCHAR(50),
@sessionID NVARCHAR(50),
@accuracy INT,
@eventType NVARCHAR(50),
@extraInfo NVARCHAR(255),
@appId NVARCHAR(50)
AS
SET NOCOUNT ON
INSERT INTO gpslocations (Latitude, Longitude, speed, direction, distance, gpsTime, locationMethod,
phoneNumber, userName, sessionID, accuracy, eventType, extraInfo, appID)
VALUES (@latitude, @longitude, @speed, @direction, @distance, @date, @locationMethod,
@phoneNumber, @userName, @sessionID, @accuracy, @eventType, @extraInfo, @appId)
SELECT CAST(GetDate() AS NVARCHAR(50))
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.5.4.1deb2ubuntu2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 24, 2017 at 10:23 PM
-- Server version: 10.1.22-MariaDB-1~xenial
-- PHP Version: 7.0.17-2+deb.sury.org~xenial+1
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 utf8mb4 */;
--
-- Database: `sepatukaca`
--
-- --------------------------------------------------------
--
-- Table structure for table `mk`
--
CREATE TABLE `mk` (
`id` int(11) NOT NULL,
`hari` varchar(255) DEFAULT NULL,
`jam` varchar(255) DEFAULT NULL,
`ruang` varchar(255) DEFAULT NULL,
`matakuliah` varchar(255) DEFAULT NULL,
`keterangan` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `mk`
--
-- --------------------------------------------------------
--
-- Table structure for table `perpus`
--
CREATE TABLE `perpus` (
`id` int(11) NOT NULL,
`judul` varchar(255) DEFAULT NULL,
`pinjam` varchar(255) DEFAULT NULL,
`kembali` varchar(255) DEFAULT NULL,
`denda` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `perpus`
--
--
-- Indexes for dumped tables
--
--
-- Indexes for table `mk`
--
ALTER TABLE `mk`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `perpus`
--
ALTER TABLE `perpus`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `mk`
--
ALTER TABLE `mk`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `perpus`
--
ALTER TABLE `perpus`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
/*!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
CREATE DATABASE IF NOT EXISTS RecipeDelight;
USE RecipeDelight;
-- Personell -------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS Person(
personID INT AUTO_INCREMENT PRIMARY KEY,
firstName VARCHAR(255),
lastName VARCHAR(255),
streetAddress VARCHAR(255),
city VARCHAR(255),
state VARCHAR(255),
zip VARCHAR(32),
phone VARCHAR(32),
email VARCHAR(255)
);
CREATE TABLE IF NOT EXISTS Chef(
chefID INT AUTO_INCREMENT PRIMARY KEY,
specialty VARCHAR(255),
salary VARCHAR(32)
) SELECT * FROM Person;
CREATE TABLE IF NOT EXISTS Student(
studentID INT AUTO_INCREMENT PRIMARY KEY,
major VARCHAR(255),
expectedGrad DATE
) SELECT * FROM Person;
-- Recipe ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS Recipe(
recipeID INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
pubDate DATE,
category VARCHAR(255),
cuisine VARCHAR(255),
numberServed INT,
instructions VARCHAR(1024),
specialTools VARCHAR(255)
);
CREATE TABLE IF NOT EXISTS Ingredient(
name VARCHAR(32) NOT NULL PRIMARY KEY
);
CREATE TABLE IF NOT EXISTS RecipeIngredient(
recipeID INT NOT NULL,
ingredientName VARCHAR(100) NOT NULL,
PRIMARY KEY(recipeID, ingredientName),
units VARCHAR(32)
);
CREATE TABLE IF NOT EXISTS RecipeChef(
recipeID INT NOT NULL,
chefID INT NOT NULL,
PRIMARY KEY(recipeID, chefID)
);
CREATE TABLE IF NOT EXISTS RecipeStudent(
recipeID INT NOT NULL,
studentID INT NOT NULL,
PRIMARY KEY(recipeID, studentID)
);
-- Cookbook --------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS Cookbook(
cookbookID INT NOT NULL,
name VARCHAR(255)
);
CREATE TABLE IF NOT EXISTS CookbookRecipe(
cookbookID INT NOT NULL,
recipeID INT NOT NULL,
PRIMARY KEY(cookbookID, recipeID)
);
-- Awards ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS Award(
recipeID INT NOT NULL,
awardName VARCHAR(255),
PRIMARY KEY(recipeID, awardName),
year INT
);
|
<reponame>vipcoin-gold/bdjuno
-- +migrate Up
CREATE TABLE IF NOT EXISTS vipcoin_chain_assets_assets
(
name TEXT NOT NULL PRIMARY KEY, -- assets name
issuer TEXT NOT NULL, -- assets issuer
policies INT[], -- assets policies
state INT, -- assets state
issued BIGINT, -- assets issued
burned BIGINT, -- assets burned
withdrawn BIGINT, -- assets withdrawn
in_circulation BIGINT, -- assets in_circulation
precision INT, -- assets precision
fee_percent INT, -- assets fee_percent
extras JSONB -- assets extras
);
CREATE TABLE IF NOT EXISTS vipcoin_chain_assets_set_extra
(
creator TEXT NOT NULL, -- set extra creator
name TEXT NOT NULL, -- set extra name
extras JSONB -- set extra extras
);
CREATE TABLE IF NOT EXISTS vipcoin_chain_assets_manage
(
creator TEXT NOT NULL, -- manage assets creator
name TEXT NOT NULL, -- manage assets extra name
policies INT[], -- manage assets policies
state INT, -- manage assets state
precision INT, -- assets precision
fee_percent INT, -- assets fee_percent
issued BIGINT, -- manage assets issued
burned BIGINT, -- manage assets burned
withdrawn BIGINT, -- manage assets withdrawn
in_circulation BIGINT -- manage assets in_circulation
);
CREATE TABLE IF NOT EXISTS vipcoin_chain_assets_create
(
creator TEXT NOT NULL, -- create assets creator
name TEXT NOT NULL, -- create assets extra name
issuer TEXT NOT NULL, -- create assets issuer
policies INT[], -- create assets policies
state INT, -- create assets state
precision INT, -- assets precision
fee_percent INT, -- assets fee_percent
extras JSONB -- create assets extras
);
-- +migrate Down
DROP TABLE IF EXISTS vipcoin_chain_assets_assets CASCADE;
DROP TABLE IF EXISTS vipcoin_chain_assets_set_extra CASCADE;
DROP TABLE IF EXISTS vipcoin_chain_assets_manage CASCADE;
DROP TABLE IF EXISTS vipcoin_chain_assets_create CASCADE;
|
-- If you are using Hibernate as the JPA provider, you can use this file to load seed data into the database using SQL statements
-- The portable approach is to use a startup component (such as the @PostConstruct method of a @Startup @Singleton) |
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 24, 2019 at 02:30 PM
-- Server version: 10.3.16-MariaDB
-- PHP Version: 7.3.7
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: `nsbmedge`
--
CREATE DATABASE IF NOT EXISTS `nsbmedge` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `nsbmedge`;
-- --------------------------------------------------------
--
-- Table structure for table `foods`
--
DROP TABLE IF EXISTS `foods`;
CREATE TABLE `foods` (
`fid` int(4) NOT NULL,
`fname` text NOT NULL,
`fdescription` text NOT NULL,
`fimage` longblob NOT NULL,
`favailability` int(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `login`
--
DROP TABLE IF EXISTS `login`;
CREATE TABLE `login` (
`userid` int(11) NOT NULL,
`username` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `foods`
--
ALTER TABLE `foods`
ADD PRIMARY KEY (`fid`);
--
-- Indexes for table `login`
--
ALTER TABLE `login`
ADD PRIMARY KEY (`userid`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `foods`
--
ALTER TABLE `foods`
MODIFY `fid` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `login`
--
ALTER TABLE `login`
MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT;
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 4.5.1
-- http://www.phpmyadmin.net
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 07-04-2017 a las 20:04:16
-- Versión del servidor: 10.1.16-MariaDB
-- Versión de PHP: 5.6.24
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 utf8mb4 */;
--
-- Base de datos: `funcionarios`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `cargo`
--
CREATE TABLE `cargo` (
`idcargo` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(150) NOT NULL,
`estado` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `cargo`
--
INSERT INTO `cargo` (`idcargo`, `nombre`, `descripcion`, `estado`) VALUES
(1, 'Ing. en Informática', 'Descripción 1 ', 1),
(2, 'Analista Programador', 'Descripción 2', 1),
(3, 'Enfermero', 'Descripción 3', 1),
(4, 'Secretaria', 'Descripción 4', 1),
(5, NULL, 'ddd', 0),
(6, 'Cargo 5', 'Descripción 5', 1),
(7, 'Cargo 6', 'Descripción 6', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `cargo_respaldo`
--
CREATE TABLE `cargo_respaldo` (
`idcargo` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `cargo_respaldo`
--
INSERT INTO `cargo_respaldo` (`idcargo`, `nombre`, `descripcion`) VALUES
(1, 'Ing. en Informática', 'Descripción 1'),
(2, 'Analista Programador', 'Descripción 2'),
(3, 'Enfermero', 'Descripción 3'),
(4, 'Secretaria', 'Descripción 4'),
(5, NULL, 'ddd'),
(6, NULL, 'Descripción 5'),
(7, NULL, 'Descripción 6');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `departamento`
--
CREATE TABLE `departamento` (
`iddepartamento` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(100) DEFAULT NULL,
`subdirecciones_idsubdirecciones` int(11) NOT NULL,
`estado` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `departamento`
--
INSERT INTO `departamento` (`iddepartamento`, `nombre`, `descripcion`, `subdirecciones_idsubdirecciones`, `estado`) VALUES
(1, 'Departamento 1', 'Descripción 1', 1, 1),
(2, 'Departamento 2', 'Descripción 2', 2, 1),
(3, 'Departamento 3', 'Descripción 3', 3, 1),
(4, 'Departamento 4', 'Descripción 4', 2, 1),
(13, 'Departamento 5', 'Descripción 3', 3, 1),
(14, 'iiii', 'iiiii', 1, 0),
(15, 'Departamento 6', 'Descripción 6', 2, 1),
(16, 'Departamento 7', 'Descripción 7', 3, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `departamento_respaldo`
--
CREATE TABLE `departamento_respaldo` (
`iddepartamento` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(100) DEFAULT NULL,
`subdirecciones` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `departamento_respaldo`
--
INSERT INTO `departamento_respaldo` (`iddepartamento`, `nombre`, `descripcion`, `subdirecciones`) VALUES
(1, 'Departamento 1', 'Descripción 1', 'Subsecretaria 1'),
(2, 'Departamento 2', 'Descripción 2', 'Subsecretaria 2'),
(3, 'Departamento 3', 'Descripción 3', 'Subsecretaria 3'),
(4, 'Departamento 4', 'Descripción 4', 'Subsecretaria 3'),
(7, 'Departamento 4', 'Descripción 4', '1'),
(8, 'iiii', 'iiiii', '1'),
(9, 'Departamento 6', 'Descripción 6', '2'),
(10, 'Departamento 7', 'Descripción 7', '3');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `funcionario`
--
CREATE TABLE `funcionario` (
`idfuncionario` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`apellidoP` varchar(45) DEFAULT NULL,
`apellidoM` varchar(45) DEFAULT NULL,
`rut` varchar(45) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`anexo` varchar(45) DEFAULT NULL,
`imagen` varchar(45) DEFAULT NULL,
`jefe` varchar(5) DEFAULT NULL,
`unidad_idunidad` int(11) NOT NULL,
`cargo_idcargo` int(11) NOT NULL,
`estado` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `funcionario`
--
INSERT INTO `funcionario` (`idfuncionario`, `nombre`, `apellidoP`, `apellidoM`, `rut`, `email`, `anexo`, `imagen`, `jefe`, `unidad_idunidad`, `cargo_idcargo`, `estado`) VALUES
(23, 'Isabella', 'López', 'Salvatierra', '25.132.256-9', '<EMAIL>', '+56988847851', 'ISAA.jpg', '24', 1, 1, 1),
(24, 'Lucas', 'Silva', 'López', '24.137.056-9', '<EMAIL>', '+56956948532', 'empleado.jpg', '27', 2, 2, 1),
(27, 'Nicolas', 'López', 'Tapia', '16.798.516-5', '<EMAIL>', '+225469874', 'default.jpg', '23', 4, 3, 1),
(28, 'Catherine', 'Muñoz', 'Millane', '17.652.348-K', '<EMAIL>', '+56963263256', 'ISAA1.jpg', '23', 4, 4, 1),
(29, 'Sirone ', 'Marambio', 'Perez', '19.963.254-8', '<EMAIL>', '+56936932236', '', '23', 3, 1, 1),
(30, 'ttttt', 'ffff', 'ffff', '12.456.789-5', 'sdfsd<EMAIL>', '+56956956569', '', '23', 2, 1, 1),
(32, 'Catherine', 'wwwwwwwwww', 'Millalen', '22.222.222-K', '<EMAIL>', '+56966644447', '', '24', 1, 1, 1),
(33, 'Sirone ', 'Muñoz', 'Millane', '77.777.777-7', '<EMAIL>', '+56966644447', '', '23', 1, 1, 1),
(34, 'Nicolas', 'López', '1456456', '99.999.999-9', '<EMAIL>', '+225469874', 'default.jpg', '23', 1, 1, 1),
(36, 'jkjjj', 'jjjj', 'jjjj', '44.444.444-4', '<EMAIL>', '+56966644447', 'LOGO.png', '23', 1, 1, 1),
(37, 'qqq', 'sss', 'ssss', '55.555.555-5', '<EMAIL>', '12365478', '', '23', 1, 1, 1),
(38, 'AAAA', 'unu', 'unu', '55.577.766-6', '<EMAIL>', '+56999985745', '', '23', 1, 1, 1),
(39, 'yyyy', 'yyy', 'yyyy', '88.888.888-8', '<EMAIL>', '+56956996326', 'icon_users9.png', '24', 1, 1, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `funcionario_respaldo`
--
CREATE TABLE `funcionario_respaldo` (
`idfuncionario` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`apellidoP` varchar(45) DEFAULT NULL,
`apellidoM` varchar(45) DEFAULT NULL,
`rut` varchar(45) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`anexo` varchar(45) DEFAULT NULL,
`imagen` varchar(45) DEFAULT NULL,
`jefe` varchar(45) NOT NULL,
`unidad` varchar(45) NOT NULL,
`cargo` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `funcionario_respaldo`
--
INSERT INTO `funcionario_respaldo` (`idfuncionario`, `nombre`, `apellidoP`, `apellidoM`, `rut`, `email`, `anexo`, `imagen`, `jefe`, `unidad`, `cargo`) VALUES
(17, 'Catherine', 'Muñoz', 'Millane', '17.652.348-5', '<EMAIL>', '+56963263256', 'default.jpg', '23', '4', '4'),
(18, 'Sirone ', 'Marambio', 'Perez', '19.963.254-8', '<EMAIL>', '+56936932236', '', '23', '3', '1'),
(19, 'fffffff', 'ffff', 'ffff', '12.456.789-5', '<EMAIL>', '+56956956569', '', '23', '2', '1'),
(20, 'Catherine', 'wwwwwwwwww', 'Millalen', '22.222.222-K', '<EMAIL>', '+56966644447', '', '24', '1', '1'),
(21, 'Sirone ', 'Muñoz', 'Millane', '77.777.777-7', '<EMAIL>', '+56966644447', '', '23', '1', '1'),
(22, 'Nicolas', 'López', '1456456', '99.999.999-9', '<EMAIL>', '+225469874', 'default.jpg', '23', '1', '1'),
(23, 'jkjjj', 'jjjj', 'jjjj', '44.444.444-4', '<EMAIL>', '+56966644447', 'LOGO.png', '23', '1', '1'),
(24, 'qqq', 'sss', 'ssss', '55.555.555-5', '<EMAIL>', '12365478', 'cabecera.png', '23', '1', '1'),
(25, 'unu', 'unu', 'unu', '55.577.766-6', '<EMAIL>', '+56999985745', '12670947-businesswoman-Stock-Vector-cartoon-e', '23', '1', '1'),
(26, 'yyyy', 'yyy', 'yyyy', '88.888.888-8', '<EMAIL>', '+56956996326', 'icon_users8.png', '24', '1', '1');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `subdirecciones`
--
CREATE TABLE `subdirecciones` (
`idsubdirecciones` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(45) DEFAULT NULL,
`estado` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `subdirecciones`
--
INSERT INTO `subdirecciones` (`idsubdirecciones`, `nombre`, `descripcion`, `estado`) VALUES
(1, 'Subsecretaria 1', 'Descripción', 1),
(2, 'Subsecretaria 2', 'Descripción', 1),
(3, 'Subsecretaría 3', 'Descripción', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `subdirecciones_respaldo`
--
CREATE TABLE `subdirecciones_respaldo` (
`idsubdirecciones` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `unidad`
--
CREATE TABLE `unidad` (
`idunidad` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(45) DEFAULT NULL,
`departamento_iddepartamento` int(11) NOT NULL,
`estado` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `unidad`
--
INSERT INTO `unidad` (`idunidad`, `nombre`, `descripcion`, `departamento_iddepartamento`, `estado`) VALUES
(1, 'Unidad 1', 'Descripción 1', 1, 1),
(2, 'Unidad 2', 'Descripción 3', 2, 1),
(3, 'Unidad 3', 'Descripción 3', 3, 1),
(4, 'Unidad 4', 'Descripción 4', 4, 1),
(5, 'Unidad 5', 'Descripción 5', 13, 1),
(6, 'Unidad 6', 'Descripción 6', 15, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `unidad_respaldo`
--
CREATE TABLE `unidad_respaldo` (
`idunidad` int(11) NOT NULL,
`nombre` varchar(45) DEFAULT NULL,
`descripcion` varchar(45) DEFAULT NULL,
`departamento` varchar(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `unidad_respaldo`
--
INSERT INTO `unidad_respaldo` (`idunidad`, `nombre`, `descripcion`, `departamento`) VALUES
(1, 'dsfsf', 'wefef', ''),
(2, 'kmkm', 'kmkmk', ''),
(3, 'fsdf', 'sdf', ''),
(4, 'dddd', 'dddd', ''),
(5, 'bbbb', 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb', '10'),
(6, 'ñññ', 'ñññ', '6'),
(7, 'uuuu', '<PASSWORD>', '7'),
(8, 'erfer', 'erfe', '3'),
(9, 'sssssssssssssssss', 'ssssssssssssss', '3'),
(10, '111111111', '11111111111', '3'),
(11, 'unidad 10', 'Descripcion 20', '6'),
(12, 'kkk', 'kkk', '7'),
(13, 'j', 'jjj', '1'),
(14, 'Unidad 6', 'Descripción 6', '15');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuario`
--
CREATE TABLE `usuario` (
`idusuario` int(11) NOT NULL,
`nombre` varchar(45) NOT NULL,
`apellido` varchar(45) NOT NULL,
`rut` varchar(15) NOT NULL,
`correo` varchar(20) NOT NULL,
`password` varchar(20) NOT NULL,
`estado` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `usuario`
--
INSERT INTO `usuario` (`idusuario`, `nombre`, `apellido`, `rut`, `correo`, `password`, `estado`) VALUES
(2, 'Lucas', 'Silva', '24137056-9', '<EMAIL>', '123456', 0),
(3, 'wwww', 'www', 'www', 'ww', '123456', 0),
(4, 'uno', 'uno', '', '', '123456', 0),
(5, 'Daniel', 'Muñoz', '12.365.478-9', '<EMAIL>', '', 1),
(6, 'uuu', 'uuu', '17730652-5', 'uuu', '123456', 0),
(7, 'Laura', 'Vilches', '85.478.549-8', '<EMAIL>', '', 1),
(8, 'Lucas', 'Silva', '21.542.365-9', '<EMAIL>', '123456', 1),
(9, 'italia', 'lopez', '12.444.444-1', 'ww@@', '123456', 0),
(10, 'Nicolas', 'López', '16.798.516-5', '<EMAIL>', '123456', 1),
(11, 'ppp', 'kkkk', '77.766.655-5', '<EMAIL>', '', 0),
(12, 'Danilo', 'Hormazabal', '44.444.457-7', '<EMAIL>', '', 1),
(13, 'ñ', 'ññ', '', '', '', 0),
(14, 'dfdd', 'dd', 'D-D', 'dd', 'dd', 0),
(15, 'Danilo', 'Rivadeneira', '96.336.996-9', '<EMAIL>', '', 1),
(16, 'uuu', 'uuu', '12.345.698-7', '<EMAIL>', '123456789', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuario_respaldo`
--
CREATE TABLE `usuario_respaldo` (
`idusuario` int(11) NOT NULL,
`nombre` varchar(45) NOT NULL,
`apellido` varchar(45) NOT NULL,
`rut` varchar(45) NOT NULL,
`password` int(45) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `usuario_respaldo`
--
INSERT INTO `usuario_respaldo` (`idusuario`, `nombre`, `apellido`, `rut`, `password`) VALUES
(1, '', '', '17730652-5', 0),
(2, 'yy', 'yy', '24.137.056-9', 0),
(3, '', '', '21.254.698-5', 0),
(4, 'italia', 'lopez', '<PASSWORD>44.444-1', 123),
(5, 'Nicolas', 'López', '16.798.516-5', 123456),
(6, '6u67u467u', 'opop', '77.766.655-5', 0),
(7, 'ññññ', 'ññññ', '44.444.457-5', 123456),
(8, 'ñ', 'ññ', '', 0),
(9, 'dfdd', 'dd', 'D-D', 0),
(10, 'Danilo', 'Hormazabal', '96.336.996-3', 123456789),
(11, 'uuu', 'uuu', '12.345.698-7', 123456789);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `cargo`
--
ALTER TABLE `cargo`
ADD PRIMARY KEY (`idcargo`);
--
-- Indices de la tabla `cargo_respaldo`
--
ALTER TABLE `cargo_respaldo`
ADD PRIMARY KEY (`idcargo`);
--
-- Indices de la tabla `departamento`
--
ALTER TABLE `departamento`
ADD PRIMARY KEY (`iddepartamento`),
ADD KEY `fk_departamento_subdirecciones1_idx` (`subdirecciones_idsubdirecciones`);
--
-- Indices de la tabla `departamento_respaldo`
--
ALTER TABLE `departamento_respaldo`
ADD PRIMARY KEY (`iddepartamento`);
--
-- Indices de la tabla `funcionario`
--
ALTER TABLE `funcionario`
ADD PRIMARY KEY (`idfuncionario`),
ADD UNIQUE KEY `rut` (`rut`),
ADD KEY `fk_funcionario_Cargo1_idx` (`cargo_idcargo`),
ADD KEY `fk_funcionario_unidad1_idx` (`unidad_idunidad`);
--
-- Indices de la tabla `funcionario_respaldo`
--
ALTER TABLE `funcionario_respaldo`
ADD PRIMARY KEY (`idfuncionario`);
--
-- Indices de la tabla `subdirecciones`
--
ALTER TABLE `subdirecciones`
ADD PRIMARY KEY (`idsubdirecciones`);
--
-- Indices de la tabla `subdirecciones_respaldo`
--
ALTER TABLE `subdirecciones_respaldo`
ADD PRIMARY KEY (`idsubdirecciones`);
--
-- Indices de la tabla `unidad`
--
ALTER TABLE `unidad`
ADD PRIMARY KEY (`idunidad`),
ADD KEY `fk_unidad_departamento1_idx` (`departamento_iddepartamento`);
--
-- Indices de la tabla `unidad_respaldo`
--
ALTER TABLE `unidad_respaldo`
ADD PRIMARY KEY (`idunidad`);
--
-- Indices de la tabla `usuario`
--
ALTER TABLE `usuario`
ADD PRIMARY KEY (`idusuario`);
--
-- Indices de la tabla `usuario_respaldo`
--
ALTER TABLE `usuario_respaldo`
ADD PRIMARY KEY (`idusuario`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `cargo`
--
ALTER TABLE `cargo`
MODIFY `idcargo` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT de la tabla `cargo_respaldo`
--
ALTER TABLE `cargo_respaldo`
MODIFY `idcargo` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT de la tabla `departamento`
--
ALTER TABLE `departamento`
MODIFY `iddepartamento` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT de la tabla `departamento_respaldo`
--
ALTER TABLE `departamento_respaldo`
MODIFY `iddepartamento` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT de la tabla `funcionario`
--
ALTER TABLE `funcionario`
MODIFY `idfuncionario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40;
--
-- AUTO_INCREMENT de la tabla `funcionario_respaldo`
--
ALTER TABLE `funcionario_respaldo`
MODIFY `idfuncionario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- AUTO_INCREMENT de la tabla `subdirecciones`
--
ALTER TABLE `subdirecciones`
MODIFY `idsubdirecciones` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT de la tabla `subdirecciones_respaldo`
--
ALTER TABLE `subdirecciones_respaldo`
MODIFY `idsubdirecciones` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `unidad`
--
ALTER TABLE `unidad`
MODIFY `idunidad` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT de la tabla `unidad_respaldo`
--
ALTER TABLE `unidad_respaldo`
MODIFY `idunidad` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT de la tabla `usuario`
--
ALTER TABLE `usuario`
MODIFY `idusuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT de la tabla `usuario_respaldo`
--
ALTER TABLE `usuario_respaldo`
MODIFY `idusuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `departamento`
--
ALTER TABLE `departamento`
ADD CONSTRAINT `fk_departamento_subdirecciones1` FOREIGN KEY (`subdirecciones_idsubdirecciones`) REFERENCES `subdirecciones` (`idsubdirecciones`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Filtros para la tabla `funcionario`
--
ALTER TABLE `funcionario`
ADD CONSTRAINT `fk_funcionario_Cargo1` FOREIGN KEY (`cargo_idcargo`) REFERENCES `cargo` (`idcargo`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_funcionario_unidad1` FOREIGN KEY (`unidad_idunidad`) REFERENCES `unidad` (`idunidad`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Filtros para la tabla `unidad`
--
ALTER TABLE `unidad`
ADD CONSTRAINT `fk_unidad_departamento1` FOREIGN KEY (`departamento_iddepartamento`) REFERENCES `departamento` (`iddepartamento`) ON DELETE NO ACTION ON UPDATE NO ACTION;
/*!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 */;
|
USE inithub;
UPDATE `django_site` SET `domain`='inithub.com', `name`='InitHub' WHERE `id`='1';
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (1,'Mobile Technology','2012-07-31 17:50:07','2012-07-31 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (2,'Web Technology','2012-07-31 17:50:58','2012-07-31 17:50:58');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (3,'Retail','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (4,'Cloud Technology','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (5,'Manufacturing','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (6,'Marketing','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (7,'Environment','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (8,'Social Media','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (9,'Recreation','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (10,'Software','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (11,'Consumer Electronics','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (12,'Transportation','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (13,'Health','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (14,'Education','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_interest` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (15,'Fitness','2013-08-06 17:50:07','2013-08-06 17:50:07');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (1,'Incorporate','2012-08-02 22:12:17','2012-08-02 22:12:17');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (2,'Develop Prototype','2012-08-02 22:13:21','2012-09-22 14:28:59');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (3,'Mobile Application','2012-09-22 14:28:04','2012-09-22 14:28:04');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (4,'Raise Money','2012-09-22 14:28:15','2012-09-22 14:28:15');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (5,'Fist Paying Customer','2012-09-22 14:29:16','2012-09-22 14:29:16');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (6,'Social Media Presence','2012-09-22 14:29:50','2012-09-22 14:29:50');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (7,'Profitable','2012-09-22 14:30:27','2012-09-22 14:30:27');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (8,'First Employee','2012-09-22 14:30:56','2012-09-22 14:30:56');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (9,'Assemble Core Team','2012-09-22 14:31:09','2012-09-22 14:31:09');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (10,'Launch Web Site','2012-09-22 14:31:30','2012-09-22 14:31:30');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (11,'Press/Blog Coverage','2012-09-22 14:32:15','2012-09-22 14:32:15');
INSERT INTO `manager_milestone` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (12,'Launch Crowdfunding Campaign','2013-10-25 14:32:15','2013-10-25 14:32:15');
INSERT INTO `manager_promotion` (`id`,`short_desc`,`long_desc`,`code`,`start_date`,`end_date`,`create_date`,`modified_date`) VALUES (1,'Solutiosoft Promo','default Solutiosoft promo','INNOHUB','2012-07-26 13:55:50','2015-07-26 13:55:50','2012-07-26 13:55:50','2012-07-26 13:55:50');
INSERT INTO `manager_promotion` (`id`,`short_desc`,`long_desc`,`code`,`start_date`,`end_date`,`create_date`,`modified_date`) VALUES (2,'User Invite','Existing user invitation','USER','2013-07-15 13:55:50','2050-07-15 13:55:50','2013-07-15 13:55:50','2013-07-15 13:55:50');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (1,'Mentor/Advisor','2012-07-25 12:28:56','2012-07-25 12:28:56');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (2,'Legal','2012-07-25 12:29:07','2012-07-25 12:29:07');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (3,'Accounting','2012-07-25 12:30:44','2012-07-25 12:30:44');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (4,'Marketing','2012-07-25 12:33:46','2012-07-25 12:33:46');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (5,'Design','2012-07-25 12:34:45','2012-07-25 12:34:45');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (6,'Development','2012-07-25 12:34:51','2012-07-25 12:34:51');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (7,'Customer Support','2012-09-22 14:27:01','2012-09-22 14:27:01');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (8,'Quality Assurance/Testing','2012-09-22 14:27:21','2012-09-22 14:27:21');
INSERT INTO `manager_service` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (9,'Operations/System Admin','2012-09-22 14:33:15','2012-09-22 14:33:15');
INSERT INTO `manager_subscription` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (1,'InitHub Updates','2012-10-30 21:17:35','2012-10-30 21:17:35');
INSERT INTO `support_item_type` (`id`,`short_desc`,`create_date`,`modified_date`) VALUES (1,'Internal','2012-09-05 22:05:12','2013-01-12 08:05:12');
|
CREATE PROC dbo.InstanceTags_Del(
@Instance SYSNAME,
@TagName VARCHAR(50),
@TagValue VARCHAR(50)
)
AS
DECLARE @TagID INT
SELECT @TagID = TagID
FROM dbo.Tags
WHERE TagName = @TagName
AND TagValue = @TagValue
IF @TagID IS NOT NULL
BEGIN
DELETE dbo.InstanceTags
WHERE Instance =@Instance
AND TagID = @TagID
IF NOT EXISTS(SELECT 1 FROM dbo.InstanceTags WHERE TagID=@TagID)
BEGIN
DELETE dbo.Tags
WHERE TagID = @TagID
END
END |
<filename>db/schema.sql<gh_stars>0
### Schema
CREATE TABLE ManagerAccounts
(
id INTEGER NOT NULL AUTO_INCREMENT,
managerName varchar(255) NOT NULL,
managerPassword varchar(255) NOT NULL,
managerImage varchar(255) NOT NULL,
locationName varchar(255) NOT NULL,
locationCity varchar(255) NOT NULL,
locationStreetName varchar(255) NOT NULL,
locationImage varchar(255) NOT NULL,
locationZipCode Integer(10) NOT NULL,
PRIMARY KEY (id)
);
CREATE TABLE beverages
(
id INTEGER NOT NULL AUTO_INCREMENT,
beverage varchar(255) NOT NULL,
beverageCost Integer(10) NOT NULL,
beverageLocation varchar(255),
PRIMARY KEY (id)
);
|
<filename>src/modules/cargoagent/cargo_agent.sql
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for agent_config
-- ----------------------------
DROP TABLE IF EXISTS `agent_config`;
CREATE TABLE `agent_config` (
`KeyID` varchar(50) NOT NULL,
`Config` text,
`Description` varchar(255) DEFAULT NULL,
`Created_at` datetime DEFAULT NULL,
`Created_by` varchar(50) DEFAULT NULL,
`Updated_at` datetime DEFAULT NULL,
`Updated_by` varchar(50) DEFAULT NULL,
PRIMARY KEY (`KeyID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for agent_log_data
-- ----------------------------
DROP TABLE IF EXISTS `agent_log_data`;
CREATE TABLE `agent_log_data` (
`ItemID` bigint(20) NOT NULL AUTO_INCREMENT,
`Created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`CodeID` varchar(50) NOT NULL,
`Description` varchar(255) NOT NULL,
`StatusID` int(11) NOT NULL,
`Username` varchar(50) NOT NULL,
`Updated_at` datetime DEFAULT NULL,
`Updated_by` varchar(50) DEFAULT NULL,
`Updated_sys` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`ItemID`),
KEY `StatusID` (`StatusID`),
KEY `CodeID` (`CodeID`) USING BTREE,
KEY `ItemID` (`ItemID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for agent_transaction_waybill
-- ----------------------------
DROP TABLE IF EXISTS `agent_transaction_waybill`;
CREATE TABLE `agent_transaction_waybill` (
`Waybill` varchar(20) NOT NULL,
`CustomerID` varchar(20) DEFAULT NULL,
`Consignor_name` varchar(50) NOT NULL,
`Consignor_alias` varchar(50) DEFAULT NULL,
`Consignor_address` varchar(255) NOT NULL,
`Consignor_phone` varchar(15) NOT NULL,
`Consignor_fax` varchar(15) DEFAULT NULL,
`Consignor_email` varchar(50) DEFAULT NULL,
`ReferenceID` varchar(20) DEFAULT NULL,
`Consignee_name` varchar(50) NOT NULL,
`Consignee_attention` varchar(50) DEFAULT NULL,
`Consignee_address` varchar(255) NOT NULL,
`Consignee_phone` varchar(15) NOT NULL,
`Consignee_fax` varchar(15) DEFAULT NULL,
`Mode` varchar(50) NOT NULL,
`Instruction` varchar(255) DEFAULT NULL,
`Description` varchar(255) NOT NULL,
`Goods_data` varchar(1000) NOT NULL,
`Goods_koli` decimal(5,0) NOT NULL,
`Goods_value` decimal(10,0) NOT NULL,
`Weight` decimal(7,2) NOT NULL,
`Weight_real` decimal(7,2) NOT NULL,
`Origin` varchar(50) NOT NULL,
`Destination` varchar(50) NOT NULL,
`Estimation` varchar(7) NOT NULL,
`Insurance_rate` decimal(7,2) NOT NULL,
`Shipping_cost` decimal(10,0) NOT NULL,
`Shipping_insurance` decimal(10,0) NOT NULL,
`Shipping_packing` decimal(10,0) NOT NULL,
`Shipping_forward` decimal(10,0) NOT NULL,
`Shipping_handling` decimal(10,0) NOT NULL,
`Shipping_surcharge` decimal(10,0) NOT NULL,
`Shipping_admin` decimal(10,0) NOT NULL,
`Shipping_discount` decimal(10,0) NOT NULL,
`Shipping_cost_total` decimal(10,0) NOT NULL,
`Payment` varchar(50) NOT NULL,
`Signature` varchar(50) NOT NULL,
`StatusID` int(11) NOT NULL,
`Created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`Created_by` varchar(50) NOT NULL,
`Updated_at` datetime DEFAULT NULL,
`Updated_by` varchar(50) DEFAULT NULL,
`Updated_sys` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Company_logo` varchar(255) DEFAULT NULL,
`Company_name` varchar(50) DEFAULT NULL,
`Company_address` varchar(255) DEFAULT NULL,
`Company_phone` varchar(15) DEFAULT NULL,
`Company_fax` varchar(15) DEFAULT NULL,
`Company_email` varchar(50) DEFAULT NULL,
`Company_TIN` varchar(50) DEFAULT NULL,
`Recipient` varchar(50) DEFAULT NULL,
`Relation` varchar(50) DEFAULT NULL,
PRIMARY KEY (`Waybill`),
KEY `Waybill` (`Waybill`),
KEY `CustomerID` (`CustomerID`),
KEY `Consignor_name` (`Consignor_name`),
KEY `Consignor_phone` (`Consignor_phone`),
KEY `ReferenceID` (`ReferenceID`),
KEY `Consignee_name` (`Consignee_name`),
KEY `Consignee_phone` (`Consignee_phone`),
KEY `Destination` (`Destination`),
KEY `StatusID` (`StatusID`),
KEY `Created_at` (`Created_at`),
KEY `Created_by` (`Created_by`),
KEY `Mode` (`Mode`),
KEY `Payment` (`Payment`),
KEY `Signature` (`Signature`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO core_status (StatusID, Status)
SELECT * FROM (SELECT '53', 'return') AS tmp
WHERE NOT EXISTS (
SELECT StatusID,Status FROM core_status WHERE StatusID ='53'
) LIMIT 1;
SET FOREIGN_KEY_CHECKS=1; |
-- noinspection SqlNoDataSourceInspectionForFile
-- noinspection SqlDialectInspectionForFile
create table categories(
id serial PRIMARY KEY,
Name varchar(50) not null
)
insert into categories (Name) values ('Театр'),('Магазин'),('Достопримечательность'),('Парк'),('Музей')
CREATE TABLE area(
id serial PRIMARY KEY,
Name varchar(50) not null
)
insert into areas(Name) values ('Москва'),('Санкт-Петербург')
CREATE TABLE persona(
id serial PRIMARY KEY,
Name varchar(50) not null
)
CREATE TABLE places_of_interest(
place_id serial NOT null PRIMARY KEY,
Name VARCHAR(100) NOT null,
category int4 references categories(id) NOT null,
description varchar(100),
latitude double precision,
longitude double precision,
Area_id int4 references areas(id) NOT null,
Date varchar(20) NOT null
)
insert into places_of_interest (Name, category, description, latitude, longitude, Area_id, Date)
values
('Государственный академический малый театр', 1, 'Государственный академический малый театр…',55.760176,37.619699, 1,'20190201'),
('<NAME>', 5, '<NAME>…',55.757666,37.634706, 1,'20190201'),
('Театр Эстрады', 1, 'Московский театр Эстрады',55.757666,37.634706, 1,'20190201'),
('ГУМ', 2, 'Торговый Центр ГУМ',55.754572,37.621182, 1,'20190203'),
('<NAME>', 4, '<NAME>...',55.751264,37.628510,1,'20190202'),
('Эрмитаж', 5, 'Государственный Эрмитаж',59.939864,30.314566,2,'20190201'),
('<NAME>', 1, 'Остров Новая Голландия',59.929605,30.287086,2,'20190201'),
('Петропавловская крепость', 3, 'Петропавловская крепость...',59.950186,30.317488, 2,'20190203')
CREATE TABLE persona_locations (
persona_id serial NOT null,
Date_time varchar(20) NOT null,
latitude double precision,
longitude double precision,
Area_id int4 references areas(id) NOT null,
Date varchar(20) NOT null
) |
-- Comando básico para criação de um schema em determinado banco de dados.
-- Schema ou Esquemas tem a função de agrupar certo grupo de tabelas, facilitando sua localidade.
-- Criaremos um banco de dados (MARKETING) e criaremos um schema (MARKETING_ANALISE_CAMPANHA) dentro deste banco criado.
--------------------------------------------------------------------------------------------------------------------------------------
-- Criação do database.
USE master;
GO
CREATE DATABASE MARKETING;
GO
-- Caso queira excluir o database criado.
USE master;
GO
DROP DATABASE MARKETING;
GO
--------------------------------------------------------------------------------------------------------------------------------------
-- Criação do schema.
USE MARKETING;
GO
CREATE SCHEMA MARKETING_ANALISE_CAMPANHA;
GO
-- Caso queira excluir o schema criado.
USE MARKETING;
GO
DROP SCHEMA MARKETING_ANALISE_CAMPANHA;
GO
-------------------------------------------------------------------------------------------------------------------------------------- |
REPLACE INTO `sw_connect_shop_config` VALUES ('_price_type', 2, '2017-10-11 12:12:12');
UPDATE s_plugin_connect_config SET value = 'price' WHERE name = 'priceFieldForPriceExport';
UPDATE s_plugin_connect_config SET value = 'EK' WHERE name = 'priceGroupForPriceExport';
UPDATE s_filter SET sortmode = 0; |
create table time_dim(
t_time_sk integer not null,
t_time_id varchar(16) not null,
t_time integer,
t_hour integer,
t_minute integer,
t_second integer,
t_am_pm varchar(2),
t_shift varchar(20),
t_sub_shift varchar(20),
t_meal_time varchar(20)
);
|
-- MySQL dump 10.13 Distrib 5.5.28, for osx10.8 (i386)
--
-- Host: localhost Database: test_uzuralabo
-- ------------------------------------------------------
-- Server version 5.5.19-log
/*!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 `admin_user`
--
DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`group` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`last_login` datetime NOT NULL,
`login_hash` varchar(255) NOT NULL,
`profile_fields` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username_UNIQUE_idx` (`username`),
UNIQUE KEY `email_UNIQUE_idx` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_user`
--
LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'admin','DsquwM8wYGIuc0SZ+hbXjkNWkkVNT0eWXR/ab8E8k5I=',100,'<EMAIL>','0000-00-00 00:00:00','','a:0:{}','2014-08-15 23:43:38','2014-08-15 23:43:38');
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `album`
--
DROP TABLE IF EXISTS `album`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `album` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`name` text NOT NULL,
`body` text,
`public_flag` tinyint(2) NOT NULL DEFAULT '0',
`cover_album_image_id` int(11) DEFAULT NULL,
`foreign_table` varchar(20) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `created_at_idx` (`created_at`),
KEY `member_id_created_at_idx` (`member_id`,`created_at`),
KEY `public_flag_craeted_at_idx` (`public_flag`,`created_at`),
KEY `member_id_foreign_table_idx` (`member_id`,`foreign_table`),
KEY `member_id_idx` (`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `album`
--
LOCK TABLES `album` WRITE;
/*!40000 ALTER TABLE `album` DISABLE KEYS */;
/*!40000 ALTER TABLE `album` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `album_image`
--
DROP TABLE IF EXISTS `album_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `album_image` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`album_id` int(11) NOT NULL,
`file_id` varchar(255) NOT NULL,
`name` text,
`public_flag` tinyint(2) NOT NULL DEFAULT '0',
`comment_count` int(11) NOT NULL DEFAULT '0',
`shot_at` datetime NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`sort_datetime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `album_id_public_flag_id` (`album_id`,`public_flag`,`id`),
KEY `album_id_public_flag_shot_at` (`album_id`,`public_flag`,`shot_at`),
KEY `sort_datetime_idx` (`sort_datetime`),
KEY `file_id_idx` (`file_id`),
CONSTRAINT `album_image_album_id_album_id` FOREIGN KEY (`album_id`) REFERENCES `album` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `album_image`
--
LOCK TABLES `album_image` WRITE;
/*!40000 ALTER TABLE `album_image` DISABLE KEYS */;
/*!40000 ALTER TABLE `album_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `album_image_comment`
--
DROP TABLE IF EXISTS `album_image_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `album_image_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`album_image_id` int(11) NOT NULL,
`member_id` int(11) DEFAULT NULL,
`body` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `album_image_id_created_at` (`album_image_id`,`created_at`),
KEY `album_image_id_idx` (`album_image_id`),
CONSTRAINT `album_image_comment_album_image_id_album_image_id` FOREIGN KEY (`album_image_id`) REFERENCES `album_image` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `album_image_comment`
--
LOCK TABLES `album_image_comment` WRITE;
/*!40000 ALTER TABLE `album_image_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `album_image_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`email` varchar(255) NOT NULL,
`subject` varchar(255) NOT NULL DEFAULT '',
`body` text NOT NULL,
`ip` varchar(255) DEFAULT NULL,
`ua` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file`
--
DROP TABLE IF EXISTS `file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'File name',
`path` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'File path',
`type` varchar(256) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Type of this file',
`filesize` int(11) NOT NULL DEFAULT '0' COMMENT 'File size',
`original_filename` text COLLATE utf8_unicode_ci COMMENT 'Original filename',
`member_id` int(11) DEFAULT NULL,
`exif` text COLLATE utf8_unicode_ci,
`shot_at` datetime DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`),
KEY `member_id_idx` (`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Saves informations of files uploaded';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `file`
--
LOCK TABLES `file` WRITE;
/*!40000 ALTER TABLE `file` DISABLE KEYS */;
/*!40000 ALTER TABLE `file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file_tmp`
--
DROP TABLE IF EXISTS `file_tmp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_tmp` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'File name',
`path` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'File path',
`type` varchar(256) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Type of this file',
`filesize` int(11) NOT NULL DEFAULT '0' COMMENT 'File size',
`original_filename` text COLLATE utf8_unicode_ci COMMENT 'Original filename',
`member_id` int(11) DEFAULT NULL,
`user_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: site member, 1:admin_user',
`description` text COLLATE utf8_unicode_ci,
`exif` text COLLATE utf8_unicode_ci,
`shot_at` datetime DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`),
KEY `name_user_type_member_id_idx` (`name`,`user_type`,`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Saves informations of temporary files uploaded';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `file_tmp`
--
LOCK TABLES `file_tmp` WRITE;
/*!40000 ALTER TABLE `file_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_tmp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `file_tmp_config`
--
DROP TABLE IF EXISTS `file_tmp_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_tmp_config` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`file_tmp_id` int(11) NOT NULL COMMENT 'file_tmp id',
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Configuration name',
`value` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'Configuration value',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `file_tmp_id_name_UNIQUE_idx` (`file_tmp_id`,`name`),
KEY `file_tmp_id_idx` (`file_tmp_id`),
CONSTRAINT `file_tmp_config_file_tmp_id_file_tmp_id` FOREIGN KEY (`file_tmp_id`) REFERENCES `file_tmp` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Saves configurations of each temporary files';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `file_tmp_config`
--
LOCK TABLES `file_tmp_config` WRITE;
/*!40000 ALTER TABLE `file_tmp_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_tmp_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member`
--
DROP TABLE IF EXISTS `member`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`last_login` datetime DEFAULT NULL,
`login_hash` varchar(255) DEFAULT NULL,
`file_id` varchar(255) DEFAULT NULL,
`filesize_total` int(11) NOT NULL DEFAULT '0' COMMENT 'Total file size',
`register_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: normal, 1:facebook, 2:twitter, 3:google',
`sex` varchar(16) DEFAULT NULL,
`sex_public_flag` tinyint(2) NOT NULL DEFAULT '0',
`birthyear` int(4) DEFAULT NULL,
`birthyear_public_flag` tinyint(2) NOT NULL DEFAULT '0',
`birthday` varchar(5) DEFAULT NULL,
`birthday_public_flag` tinyint(2) NOT NULL DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `birthday_id` (`birthday`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member`
--
LOCK TABLES `member` WRITE;
/*!40000 ALTER TABLE `member` DISABLE KEYS */;
INSERT INTO `member` VALUES (1,'初期メンバー',NULL,NULL,NULL,0,0,'',0,0,0,NULL,0,'2014-08-15 23:43:06','2014-08-15 23:43:06'),(2,'メンバー2',NULL,NULL,NULL,0,0,'',0,0,0,NULL,0,'2014-08-15 23:43:17','2014-08-15 23:43:17'),(3,'メンバー3',NULL,NULL,NULL,0,0,'',0,0,0,NULL,0,'2014-08-15 23:43:24','2014-08-15 23:43:24');
/*!40000 ALTER TABLE `member` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_auth`
--
DROP TABLE IF EXISTS `member_auth`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_auth` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_UNIQUE_idx` (`member_id`),
UNIQUE KEY `email_UNIQUE_idx` (`email`),
CONSTRAINT `member_auth_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_auth`
--
LOCK TABLES `member_auth` WRITE;
/*!40000 ALTER TABLE `member_auth` DISABLE KEYS */;
INSERT INTO `member_auth` VALUES (1,1,'<EMAIL>','DsquwM8wYGIuc0SZ+hbXjkNWkkVNT0eWXR/ab8E8k5I=','2014-08-15 23:43:06','2014-08-15 23:43:06'),(2,2,'<EMAIL>','DsquwM8wYGIuc0SZ+hbXjkNWkkVNT0eWXR/ab8E8k5I=','2014-08-15 23:43:17','2014-08-15 23:43:17'),(3,3,'<EMAIL>','DsquwM8wYGIuc0SZ+hbXjkNWkkVNT0eWXR/ab8E8k5I=','2014-08-15 23:43:24','2014-08-15 23:43:24');
/*!40000 ALTER TABLE `member_auth` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_config`
--
DROP TABLE IF EXISTS `member_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_config` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`member_id` int(11) NOT NULL COMMENT 'Member id',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT 'Configuration name',
`value` text NOT NULL COMMENT 'Configuration value',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_name_UNIQUE_idx` (`member_id`,`name`),
KEY `member_id_idx` (`member_id`),
CONSTRAINT `member_config_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_config`
--
LOCK TABLES `member_config` WRITE;
/*!40000 ALTER TABLE `member_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_email_pre`
--
DROP TABLE IF EXISTS `member_email_pre`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_email_pre` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_UNIQUE_idx` (`member_id`),
UNIQUE KEY `token_UNIQUE_idx` (`token`),
KEY `email_idx` (`email`),
CONSTRAINT `member_email_pre_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_email_pre`
--
LOCK TABLES `member_email_pre` WRITE;
/*!40000 ALTER TABLE `member_email_pre` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_email_pre` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_follow_timeline`
--
DROP TABLE IF EXISTS `member_follow_timeline`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_follow_timeline` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`timeline_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_timeline_id_UNIQUE_idx` (`member_id`,`timeline_id`),
KEY `member_follow_timeline_timeline_id_timeline_id` (`timeline_id`),
CONSTRAINT `member_follow_timeline_member_id_timeline_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE,
CONSTRAINT `member_follow_timeline_timeline_id_timeline_id` FOREIGN KEY (`timeline_id`) REFERENCES `timeline` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_follow_timeline`
--
LOCK TABLES `member_follow_timeline` WRITE;
/*!40000 ALTER TABLE `member_follow_timeline` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_follow_timeline` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_oauth`
--
DROP TABLE IF EXISTS `member_oauth`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_oauth` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`oauth_provider_id` tinyint(2) NOT NULL,
`uid` varchar(50) NOT NULL,
`token` varchar(255) NOT NULL,
`secret` varchar(255) DEFAULT NULL,
`expires` int(11) DEFAULT NULL,
`service_name` varchar(255) DEFAULT NULL,
`service_url` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `oauth_provider_id_uid_idx` (`oauth_provider_id`,`uid`),
KEY `oauth_provider_id_uid_member_idx` (`oauth_provider_id`,`uid`,`member_id`),
KEY `member_oauth_member_id_member_id` (`member_id`),
CONSTRAINT `member_oauth_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE,
CONSTRAINT `oauth_provider_id_oauth_provider_id` FOREIGN KEY (`oauth_provider_id`) REFERENCES `oauth_provider` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_oauth`
--
LOCK TABLES `member_oauth` WRITE;
/*!40000 ALTER TABLE `member_oauth` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_oauth` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_password_pre`
--
DROP TABLE IF EXISTS `member_password_pre`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_password_pre` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_UNIQUE_idx` (`member_id`),
UNIQUE KEY `token_UNIQUE_idx` (`token`),
CONSTRAINT `member_password_pre_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_password_pre`
--
LOCK TABLES `member_password_pre` WRITE;
/*!40000 ALTER TABLE `member_password_pre` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_password_pre` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_pre`
--
DROP TABLE IF EXISTS `member_pre`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_pre` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `token_UNIQUE_idx` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_pre`
--
LOCK TABLES `member_pre` WRITE;
/*!40000 ALTER TABLE `member_pre` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_pre` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_profile`
--
DROP TABLE IF EXISTS `member_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_profile` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`member_id` int(11) NOT NULL COMMENT 'Member id',
`profile_id` int(11) NOT NULL COMMENT 'Profile id',
`profile_option_id` int(11) DEFAULT NULL COMMENT 'Profile option id',
`value` text NOT NULL COMMENT 'Text content for this profile item',
`public_flag` tinyint(4) DEFAULT NULL COMMENT 'Public flag',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `member_id_idx` (`member_id`),
KEY `profile_id_idx` (`profile_id`),
KEY `profile_option_id_idx` (`profile_option_id`),
CONSTRAINT `member_profile_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE,
CONSTRAINT `member_profile_profile_id_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `profile` (`id`) ON DELETE CASCADE,
CONSTRAINT `member_profile_profile_option_id_profile_option_id` FOREIGN KEY (`profile_option_id`) REFERENCES `profile_option` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Saves informations of every member''''s profile';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_profile`
--
LOCK TABLES `member_profile` WRITE;
/*!40000 ALTER TABLE `member_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `member_relation`
--
DROP TABLE IF EXISTS `member_relation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_relation` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`member_id_to` int(11) NOT NULL COMMENT 'Target member id',
`member_id_from` int(11) NOT NULL COMMENT 'Subject member id',
`is_follow` tinyint(1) DEFAULT NULL COMMENT 'The subject member is followed the target',
`is_friend` tinyint(1) DEFAULT NULL COMMENT 'The members are friends',
`is_friend_pre` tinyint(1) DEFAULT NULL COMMENT 'The members are going to be friends',
`is_access_block` tinyint(1) DEFAULT NULL COMMENT 'The subject member is blocked the target',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `member_id_to_from_UNIQUE_idx` (`member_id_to`,`member_id_from`),
UNIQUE KEY `member_id_from_to_UNIQUE_idx` (`member_id_from`,`member_id_to`),
KEY `member_id_to_idx` (`member_id_to`),
KEY `member_id_from_idx` (`member_id_from`),
CONSTRAINT `member_relationship_member_id_from_member_id` FOREIGN KEY (`member_id_from`) REFERENCES `member` (`id`) ON DELETE CASCADE,
CONSTRAINT `member_relationship_member_id_to_member_id` FOREIGN KEY (`member_id_to`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Saves ralationships of each members';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `member_relation`
--
LOCK TABLES `member_relation` WRITE;
/*!40000 ALTER TABLE `member_relation` DISABLE KEYS */;
/*!40000 ALTER TABLE `member_relation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migration`
--
DROP TABLE IF EXISTS `migration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migration` (
`name` varchar(50) NOT NULL,
`type` varchar(25) NOT NULL,
`version` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migration`
--
LOCK TABLES `migration` WRITE;
/*!40000 ALTER TABLE `migration` DISABLE KEYS */;
INSERT INTO `migration` VALUES ('default','app',4);
/*!40000 ALTER TABLE `migration` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS `news`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_category_id` int(11) DEFAULT NULL COMMENT 'News category id',
`slug` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Identified news (ASCII)',
`title` text NOT NULL,
`body` text NOT NULL,
`importance_level` tinyint(2) NOT NULL DEFAULT '0',
`is_published` tinyint(2) NOT NULL DEFAULT '0',
`published_at` datetime DEFAULT NULL,
`users_id` int(11) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `slug_UNIQUE_idx` (`slug`),
KEY `created_at_idx` (`created_at`),
KEY `published_at_idx` (`published_at`),
KEY `is_published_published_at_idx` (`is_published`,`published_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news`
--
LOCK TABLES `news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_category`
--
DROP TABLE IF EXISTS `news_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_category` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`name` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Identified news category name (ASCII)',
`label` text NOT NULL,
`sort_order` int(11) DEFAULT NULL COMMENT 'Order to sort',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`),
KEY `sort_order_idx` (`sort_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Saves categories of news';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_category`
--
LOCK TABLES `news_category` WRITE;
/*!40000 ALTER TABLE `news_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `news_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_file`
--
DROP TABLE IF EXISTS `news_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_file` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_id` int(11) NOT NULL,
`file_id` varchar(255) NOT NULL,
`name` text,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `news_id_created_at` (`news_id`,`created_at`),
KEY `news_id_idx` (`news_id`),
KEY `file_id_idx` (`file_id`),
CONSTRAINT `news_file_news_id_news_id` FOREIGN KEY (`news_id`) REFERENCES `news` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_file`
--
LOCK TABLES `news_file` WRITE;
/*!40000 ALTER TABLE `news_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `news_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_image`
--
DROP TABLE IF EXISTS `news_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_image` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_id` int(11) NOT NULL,
`file_id` varchar(255) NOT NULL,
`name` text,
`shot_at` datetime NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `news_id_created_at` (`news_id`,`created_at`),
KEY `news_id_idx` (`news_id`),
KEY `file_id_idx` (`file_id`),
CONSTRAINT `news_image_news_id_news_id` FOREIGN KEY (`news_id`) REFERENCES `news` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_image`
--
LOCK TABLES `news_image` WRITE;
/*!40000 ALTER TABLE `news_image` DISABLE KEYS */;
/*!40000 ALTER TABLE `news_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news_link`
--
DROP TABLE IF EXISTS `news_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news_link` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`news_id` int(11) NOT NULL,
`uri` text NOT NULL,
`label` text,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `news_id_idx` (`news_id`),
CONSTRAINT `news_link_news_id_news_id` FOREIGN KEY (`news_id`) REFERENCES `news` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news_link`
--
LOCK TABLES `news_link` WRITE;
/*!40000 ALTER TABLE `news_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `news_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `note`
--
DROP TABLE IF EXISTS `note`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `note` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`title` text NOT NULL,
`body` text NOT NULL,
`public_flag` tinyint(2) NOT NULL DEFAULT '0',
`is_published` tinyint(2) NOT NULL DEFAULT '0',
`published_at` datetime DEFAULT NULL,
`comment_count` int(11) NOT NULL DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`sort_datetime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `published_at_idx` (`published_at`),
KEY `member_id_is_published_published_at_public_flag_idx` (`member_id`,`is_published`,`published_at`,`public_flag`),
KEY `member_id_created_at_idx` (`member_id`,`created_at`),
KEY `public_flag_craeted_at_idx` (`public_flag`,`created_at`),
KEY `is_published_published_at_public_flag_idx` (`is_published`,`published_at`,`public_flag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `note`
--
LOCK TABLES `note` WRITE;
/*!40000 ALTER TABLE `note` DISABLE KEYS */;
/*!40000 ALTER TABLE `note` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `note_album_image`
--
DROP TABLE IF EXISTS `note_album_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `note_album_image` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`note_id` int(11) NOT NULL,
`album_image_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `note_id_idx` (`note_id`),
KEY `note_album_image_album_image_id_album_image_id` (`album_image_id`),
CONSTRAINT `note_album_image_note_id_note_id` FOREIGN KEY (`note_id`) REFERENCES `note` (`id`) ON DELETE CASCADE,
CONSTRAINT `note_album_image_album_image_id_album_image_id` FOREIGN KEY (`album_image_id`) REFERENCES `album_image` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `note_album_image`
--
LOCK TABLES `note_album_image` WRITE;
/*!40000 ALTER TABLE `note_album_image` DISABLE KEYS */;
/*!40000 ALTER TABLE `note_album_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `note_comment`
--
DROP TABLE IF EXISTS `note_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `note_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`note_id` int(11) NOT NULL,
`member_id` int(11) DEFAULT NULL,
`body` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `note_id_created_at` (`note_id`,`created_at`),
KEY `note_id_idx` (`note_id`),
KEY `member_id_idx` (`member_id`),
CONSTRAINT `note_comment_note_id_note_id` FOREIGN KEY (`note_id`) REFERENCES `note` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `note_comment`
--
LOCK TABLES `note_comment` WRITE;
/*!40000 ALTER TABLE `note_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `note_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_provider`
--
DROP TABLE IF EXISTS `oauth_provider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_provider` (
`id` tinyint(2) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_provider`
--
LOCK TABLES `oauth_provider` WRITE;
/*!40000 ALTER TABLE `oauth_provider` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_provider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `posts`
--
DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`summary` text NOT NULL,
`body` text NOT NULL,
`user_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `posts`
--
LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `profile`
--
DROP TABLE IF EXISTS `profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `profile` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`name` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Identified profile name (ASCII)',
`caption` text NOT NULL,
`display_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0: display at detail, 2:display at summary, 3:always',
`information` text,
`placeholder` text,
`is_required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'This is a required',
`is_unique` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Cannot select duplicate item',
`is_edit_public_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Settable public flag',
`default_public_flag` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'Default of public flag',
`is_disp_regist` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Shows when registeration',
`is_disp_config` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Shows when edit',
`is_disp_search` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Shows when searching',
`form_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Form type to input/select',
`value_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Type of input value',
`value_regexp` text CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT 'Regular expression',
`value_min` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Minimum value',
`value_max` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Maximum value',
`sort_order` int(11) DEFAULT NULL COMMENT 'Order to sort',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`),
KEY `display_type_id` (`display_type`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Saves input/select items for the member profile';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `profile`
--
LOCK TABLES `profile` WRITE;
/*!40000 ALTER TABLE `profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `profile_option`
--
DROP TABLE IF EXISTS `profile_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `profile_option` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`label` text NOT NULL COMMENT 'Choice',
`profile_id` int(11) NOT NULL COMMENT 'Profile id',
`sort_order` int(11) DEFAULT NULL COMMENT 'Order to sort',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `profile_id_idx` (`profile_id`),
CONSTRAINT `profile_option_profile_id_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `profile` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Saves options of profile items';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `profile_option`
--
LOCK TABLES `profile_option` WRITE;
/*!40000 ALTER TABLE `profile_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `profile_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `site_config`
--
DROP TABLE IF EXISTS `site_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `site_config` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Serial number',
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Configuration name',
`value` text COLLATE utf8_unicode_ci COMMENT 'Configuration value',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE_idx` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Saves configurations of this site';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `site_config`
--
LOCK TABLES `site_config` WRITE;
/*!40000 ALTER TABLE `site_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `site_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `timeline`
--
DROP TABLE IF EXISTS `timeline`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timeline` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) DEFAULT NULL,
`member_id_to` int(11) DEFAULT NULL,
`group_id` int(11) DEFAULT NULL,
`page_id` int(11) DEFAULT NULL,
`type` tinyint(2) NOT NULL DEFAULT '0',
`body` text,
`foreign_table` varchar(20) DEFAULT NULL COMMENT 'Reference table name',
`foreign_id` int(11) DEFAULT NULL COMMENT 'The id of reference table',
`source` varchar(64) DEFAULT NULL COMMENT 'The source caption',
`source_uri` text COMMENT 'The source URI',
`public_flag` tinyint(2) NOT NULL DEFAULT '0',
`comment_count` int(11) NOT NULL DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`sort_datetime` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `member_id_idx` (`member_id`),
KEY `group_id_idx` (`group_id`),
KEY `page_id_idx` (`page_id`),
KEY `foreign_table_foreign_id_type_idx` (`foreign_table`,`foreign_id`,`type`),
CONSTRAINT `timeline_member_id_member_id` FOREIGN KEY (`member_id`) REFERENCES `member` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `timeline`
--
LOCK TABLES `timeline` WRITE;
/*!40000 ALTER TABLE `timeline` DISABLE KEYS */;
/*!40000 ALTER TABLE `timeline` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `timeline_cache`
--
DROP TABLE IF EXISTS `timeline_cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timeline_cache` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timeline_id` int(11) NOT NULL,
`member_id` int(11) DEFAULT NULL,
`member_id_to` int(11) DEFAULT NULL,
`group_id` int(11) DEFAULT NULL,
`page_id` int(11) DEFAULT NULL,
`is_follow` tinyint(1) NOT NULL DEFAULT '0',
`public_flag` tinyint(2) NOT NULL DEFAULT '0',
`type` tinyint(2) NOT NULL DEFAULT '0',
`comment_count` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `timeline_id_is_follow_UNIQUE_idx` (`timeline_id`,`is_follow`),
KEY `timeline_id_idx` (`timeline_id`),
CONSTRAINT `timeline_cache_timeline_id_timeline_id` FOREIGN KEY (`timeline_id`) REFERENCES `timeline` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `timeline_cache`
--
LOCK TABLES `timeline_cache` WRITE;
/*!40000 ALTER TABLE `timeline_cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `timeline_cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `timeline_child_data`
--
DROP TABLE IF EXISTS `timeline_child_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timeline_child_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timeline_id` int(11) NOT NULL,
`foreign_table` varchar(20) DEFAULT NULL COMMENT 'Reference table name',
`foreign_id` int(11) DEFAULT NULL COMMENT 'The id of reference table',
PRIMARY KEY (`id`),
KEY `timeline_id_idx` (`timeline_id`),
KEY `foreign_table_foreign_id_timeline_id_idx` (`foreign_table`,`foreign_id`,`timeline_id`),
CONSTRAINT `timeline_child_data_timeline_id_timeline_id` FOREIGN KEY (`timeline_id`) REFERENCES `timeline` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `timeline_child_data`
--
LOCK TABLES `timeline_child_data` WRITE;
/*!40000 ALTER TABLE `timeline_child_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `timeline_child_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `timeline_comment`
--
DROP TABLE IF EXISTS `timeline_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timeline_comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timeline_id` int(11) NOT NULL,
`member_id` int(11) DEFAULT NULL,
`body` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `timeline_id_created_at` (`timeline_id`,`created_at`),
CONSTRAINT `timeline_comment_timeline_id_timeline_id` FOREIGN KEY (`timeline_id`) REFERENCES `timeline` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `timeline_comment`
--
LOCK TABLES `timeline_comment` WRITE;
/*!40000 ALTER TABLE `timeline_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `timeline_comment` 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 2014-08-15 23:44:38
|
USE [FoodApp]
GO
--Insert into Ingredients table
INSERT [product].[Ingredients] ([Name], [Price]) VALUES (N'Tomato sauce', CAST(0.00 AS Decimal(18, 2)))
GO
INSERT [product].[Ingredients] ([Name], [Price]) VALUES (N'Mozzarella cheese', CAST(0.00 AS Decimal(18, 2)))
GO
INSERT [product].[Ingredients] ([Name], [Price]) VALUES (N'Pepperoni', CAST(0.00 AS Decimal(18, 2)))
GO
--Insert into ProductDetails table
INSERT [product].[ProductDetails] ([Name], [Description], [Comment]) VALUES (N'Pepperoni', N'Tomato sauce, mozzarella cheese, pepperoni', NULL)
GO
--Insert into ProductIngredients table
INSERT [product].[ProductIngredients] ([ProductDetailId], [IngredientId]) VALUES (1, 1)
GO
INSERT [product].[ProductIngredients] ([ProductDetailId], [IngredientId]) VALUES (1, 2)
GO
INSERT [product].[ProductIngredients] ([ProductDetailId], [IngredientId]) VALUES (1, 3)
GO
--Insert into Products table
INSERT [product].[Products] ([ProductDetailId], [Photo], [Price], [Energy], [Protein], [Fat], [Carbohydrate], [Weight], [Comment], [Diameter], [Kind], [IsArchived]) VALUES (1, NULL, CAST(14.90 AS Decimal(18, 2)), 1370, 14, 13, 40, 360, NULL, 25, 1, 0)
GO
INSERT [product].[Products] ([ProductDetailId], [Photo], [Price], [Energy], [Protein], [Fat], [Carbohydrate], [Weight], [Comment], [Diameter], [Kind], [IsArchived]) VALUES (1, NULL, CAST(23.10 AS Decimal(18, 2)), 1380, 15, 14, 37, 600, NULL, 30, 1, 0)
GO
INSERT [product].[Products] ([ProductDetailId], [Photo], [Price], [Energy], [Protein], [Fat], [Carbohydrate], [Weight], [Comment], [Diameter], [Kind], [IsArchived]) VALUES (1, NULL, CAST(27.40 AS Decimal(18, 2)), 1260, 13, 12, 35, 850, NULL, 35, 1, 0)
GO
INSERT [product].[Products] ([ProductDetailId], [Photo], [Price], [Energy], [Protein], [Fat], [Carbohydrate], [Weight], [Comment], [Diameter], [Kind], [IsArchived]) VALUES (1, NULL, CAST(23.10 AS Decimal(18, 2)), 1510, 16, 17, 36, 400, NULL, 30, 2, 0)
GO
INSERT [product].[Products] ([ProductDetailId], [Photo], [Price], [Energy], [Protein], [Fat], [Carbohydrate], [Weight], [Comment], [Diameter], [Kind], [IsArchived]) VALUES (1, NULL, CAST(27.40 AS Decimal(18, 2)), 1390, 14, 15, 36, 600, NULL, 35, 2, 0)
GO
--Insert into PromoCode table
INSERT [ad].[PromoCodes] ([Code], [Value], [Comment]) VALUES (N'PROMO123', CAST(20.0000 AS Decimal(18, 4)), NULL)
GO
|
<reponame>SQLUndercover/UndercoverToolbox
--Undercover Catalogue
--<NAME>
--Version 0.4.2 - 07 February 2020
--Module: Cluster
--Script: Get
SELECT cluster_name AS ClusterName,
quorum_type_desc AS QuorumType,
quorum_state_desc AS QuorumState,
member_name AS MemberName,
member_type_desc AS MemberType,
number_of_quorum_votes AS QuorumVotes
FROM sys.dm_hadr_cluster
,sys.dm_hadr_cluster_members
|
<filename>benchmarks/ssb/sql/queries_raw.sql<gh_stars>10-100
select sum(lo_extendedprice*lo_discount)
from lineorder, dwdate
where lo_orderdate = d_datekey
and d_year = 1993
and lo_discount>=1
and lo_discount<=3
and lo_quantity < 25;
select sum(lo_extendedprice*lo_discount)
from lineorder, dwdate
where lo_orderdate = d_datekey
and d_yearmonthnum = 199401
and lo_discount>=4
and lo_discount<=6
and lo_quantity>=26
and lo_quantity<=35;
select sum(lo_extendedprice*lo_discount)
from lineorder, dwdate
where lo_orderdate = d_datekey
and d_weeknuminyear = 6
and d_year = 1994
and lo_discount>=5
and lo_discount<=7
and lo_quantity>=26
and lo_quantity<=35;
select d_year, p_brand1, sum(lo_revenue)
from lineorder, dwdate, part, supplier
where lo_orderdate = d_datekey
and lo_partkey = p_partkey
and lo_suppkey = s_suppkey
and p_category = 'MFGR#12'
and s_region = 'AMERICA'
group by d_year, p_brand1
order by d_year, p_brand1;
select d_year, p_brand1, sum(lo_revenue)
from lineorder, dwdate, part, supplier
where lo_orderdate = d_datekey
and lo_partkey = p_partkey
and lo_suppkey = s_suppkey
and p_brand1 in ('MFGR#2221','MFGR#2222','MFGR#2223','MFGR#2224','MFGR#2225','MFGR#2226','MFGR#2227','MFGR#2228')
and s_region = 'ASIA'
group by d_year, p_brand1
order by d_year, p_brand1;
select d_year, p_brand1, sum(lo_revenue)
from lineorder, dwdate, part, supplier
where lo_orderdate = d_datekey
and lo_partkey = p_partkey
and lo_suppkey = s_suppkey
and p_brand1 = 'MFGR#2221'
and s_region = 'EUROPE'
group by d_year, p_brand1
order by d_year, p_brand1;
select c_nation, s_nation, d_year, sum(lo_revenue)
from customer, lineorder, supplier, dwdate
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_orderdate = d_datekey
and c_region = 'ASIA' and s_region = 'ASIA'
and d_year >= 1992 and d_year <= 1997
group by c_nation, s_nation, d_year
order by d_year asc;
select c_city, s_city, d_year, sum(lo_revenue)
from customer, lineorder, supplier, dwdate
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_orderdate = d_datekey
and c_nation = 'UNITED STATES'
and s_nation = 'UNITED STATES'
and d_year >= 1992 and d_year <= 1997
group by c_city, s_city, d_year
order by d_year asc;
select c_city, s_city, d_year, sum(lo_revenue)
from customer, lineorder, supplier, dwdate
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_orderdate = d_datekey
and c_city IN ('UNITED KI1', 'UNITED KI5')
and s_city IN ('UNITED KI1', 'UNITED KI5')
and d_year >= 1992 and d_year <= 1997
group by c_city, s_city, d_year
order by d_year asc;
select c_city, s_city, d_year, sum(lo_revenue)
from customer, lineorder, supplier, dwdate
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_orderdate = d_datekey
and c_city IN ('UNITED KI1', 'UNITED KI5')
and s_city IN ('UNITED KI1', 'UNITED KI5')
and d_yearmonth = 'Dec1997'
group by c_city, s_city, d_year
order by d_year asc;
select d_year, c_nation, sum(lo_revenue) - sum(lo_supplycost)
from dwdate, customer, supplier, part, lineorder
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_partkey = p_partkey
and lo_orderdate = d_datekey
and c_region = 'AMERICA'
and s_region = 'AMERICA'
and p_mfgr IN ('MFGR#1', 'MFGR#2')
group by d_year, c_nation
order by d_year, c_nation;
select d_year, s_nation, p_category, sum(lo_revenue) - sum(lo_supplycost)
from dwdate, customer, supplier, part, lineorder
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_partkey = p_partkey
and lo_orderdate = d_datekey
and c_region = 'AMERICA'
and s_region = 'AMERICA'
and d_year >= 1997 and d_year <= 1998
and p_mfgr IN ('MFGR#1', 'MFGR#2')
group by d_year, s_nation, p_category order by d_year, s_nation, p_category;
select d_year, s_city, p_brand1, sum(lo_revenue) - sum(lo_supplycost)
from dwdate, customer, supplier, part, lineorder
where lo_custkey = c_custkey
and lo_suppkey = s_suppkey
and lo_partkey = p_partkey
and lo_orderdate = d_datekey
and c_region = 'AMERICA'
and s_nation = 'UNITED STATES'
and d_year >= 1997 and d_year <= 1998
and p_category = 'MFGR#14'
group by d_year, s_city, p_brand1 order by d_year, s_city, p_brand1; |
<gh_stars>0
-- -----------------------------------------------------------------------------------
-- File Name : http://www.oracle-base.com/dba/monitoring/synonyms_to_missing_objects.sql
-- Author : <NAME>
-- Description : Lists all synonyms that point to missing objects.
-- Call Syntax : @synonyms_to_missing_objects(object-schema-name or all)
-- Requirements : Access to the DBA views.
-- Last Modified: 07/10/2013
-- -----------------------------------------------------------------------------------
SET LINESIZE 1000 VERIFY OFF
SELECT s.owner,
s.synonym_name,
s.table_owner,
s.table_name
FROM dba_synonyms s
WHERE s.db_link IS NULL
AND s.table_owner NOT IN ('SYS','SYSTEM')
AND NOT EXISTS (SELECT 1
FROM dba_objects o
WHERE o.owner = s.table_owner
AND o.object_name = s.table_name
AND o.object_type != 'SYNONYM')
AND s.table_owner = DECODE(UPPER('&1'), 'ALL', s.table_owner, UPPER('&1'))
ORDER BY s.owner, s.synonym_name;
SET LINESIZE 80 VERIFY ON
|
<gh_stars>0
prompt --application/shared_components/navigation/lists/desktop_navigation_menu
begin
-- Manifest
-- LIST: Desktop Navigation Menu
-- Manifest End
wwv_flow_api.component_begin (
p_version_yyyy_mm_dd=>'2021.04.15'
,p_release=>'21.1.7'
,p_default_workspace_id=>9690978936188613
,p_default_application_id=>116
,p_default_id_offset=>0
,p_default_owner=>'ILA'
);
wwv_flow_api.create_list(
p_id=>wwv_flow_api.id(100447720650839084)
,p_name=>'Desktop Navigation Menu'
,p_list_status=>'PUBLIC'
);
wwv_flow_api.create_list_item(
p_id=>wwv_flow_api.id(100598839229840224)
,p_list_item_display_sequence=>10
,p_list_item_link_text=>'Home'
,p_list_item_link_target=>'f?p=&APP_ID.:1:&APP_SESSION.::&DEBUG.:'
,p_list_item_icon=>'fa-home'
,p_list_item_current_type=>'TARGET_PAGE'
);
wwv_flow_api.create_list_item(
p_id=>wwv_flow_api.id(100661767348876846)
,p_list_item_display_sequence=>20
,p_list_item_link_text=>'report'
,p_list_item_link_target=>'f?p=&APP_ID.:2:&APP_SESSION.::&DEBUG.:::'
,p_list_item_current_type=>'COLON_DELIMITED_PAGE_LIST'
,p_list_item_current_for_pages=>'2,3'
);
wwv_flow_api.create_list_item(
p_id=>wwv_flow_api.id(100640956810845249)
,p_list_item_display_sequence=>10000
,p_list_item_link_text=>'Administration'
,p_list_item_link_target=>'f?p=&APP_ID.:10000:&APP_SESSION.::&DEBUG.:'
,p_list_item_icon=>'fa-user-wrench'
,p_security_scheme=>wwv_flow_api.id(100590711921840005)
,p_list_item_current_type=>'TARGET_PAGE'
);
wwv_flow_api.component_end;
end;
/
|
<reponame>ptrick/hdfs-hive-sql-playground
version https://git-lfs.github.com/spec/v1
oid sha256:681808fe4e5217c7929a2273e7607e294c9750e6c7c4e23b4e2a8f4653f75268
size 255
|
<reponame>rrmave/course-dbt-rijesh
{{
config(
materialized='table'
)
}}
/*
{% set event_types = dbt_utils.get_query_results_as_dict(
"SELECT DISTINCT event_type FROM" ~ ref('stg_events')) %}
*/
select user_guid,
{% for event_type in event_types['event_type'] %}
SUM(CASE WHEN event_type='{{event_type}}' THEN 1 ELSE 0 END) as total_{{event_type}}
{% if not loop.last %},{% endif %}
{% endfor %}
FROM {{ref('stg_events')}}
group by user_guid |
<filename>src/test/resources/com/foundationdb/sql/unparser/set-isolation-1.sql<gh_stars>10-100
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE |
create type status as enum ('active', 'inactive'); |
INSERT INTO Lead VALUES (default, 'Bishoy', 'Sefin','1111111111','<EMAIL>','1900-10-28','30 Northpole Road', 'NorthPole City','N0R1H','ON','Canada') |
<gh_stars>1-10
{% macro pivot_json_extract(string, list_of_properties) %}
{%- for property in list_of_properties -%}
replace( {{ fivetran_utils.json_extract(string, property) }}, '"', '') as {{ property | replace(' ', '_') | lower }}
{%- if not loop.last -%},{%- endif %}
{% endfor -%}
{% endmacro %} |
<reponame>cb-deepak/pgcodekeeper<gh_stars>10-100
SET search_path = pg_catalog;
DROP TRIGGER test_table_trigger ON public.test_table;
DROP TRIGGER test_view_trigger1 ON public.test_view;
CREATE TRIGGER test_table_trigger
BEFORE INSERT OR UPDATE OF id ON public.test_table
FOR EACH STATEMENT
EXECUTE PROCEDURE public.test_table_trigger();
CREATE TRIGGER test_view_trigger1
BEFORE INSERT OR UPDATE ON public.test_view
FOR EACH STATEMENT
EXECUTE PROCEDURE public.test_table_trigger();
|
UPDATE mac_pool_ranges
SET from_mac = lower(from_mac),
to_mac = lower(to_mac);
|
<gh_stars>0
/*
* This file is released under the terms of the Artistic License. Please see
* the file LICENSE, included in this package, for details.
*
* Copyright (C) 2007 <NAME>
*/
CREATE OR REPLACE FUNCTION DataMaintenanceFrame1 (
IN acct_id IDENT_T,
IN c_id IDENT_T,
IN co_id IDENT_T,
IN day_of_month INTEGER,
IN symbol VARCHAR(15),
IN table_name VARCHAR,
IN tx_id VARCHAR(4),
IN vol_incr INTEGER,
OUT status INTEGER)
RETURNS INTEGER AS '$libdir/data_maintenance', 'DataMaintenanceFrame1'
LANGUAGE C IMMUTABLE STRICT;
|
--
-- hpc_data_dictionary.sql
--
-- Copyright SVG, Inc.
-- Copyright Leidos Biomedical Research, Inc
--
-- Distributed under the OSI-approved BSD 3-Clause License.
-- See http://ncip.github.com/HPC/LICENSE.txt for details.
--
--
-- @author <a href="mailto:<EMAIL>"><NAME></a>
--
COMMENT ON TABLE public."HPC_DATA_OBJECT_DOWNLOAD_TASK" IS
'Active data object download tasks';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."ID" IS
'The download task ID';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."USER_ID" IS
'The user ID who submitted the download request';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."CONFIGURATION_ID" IS
'The configuration ID to use in the downloading the data object';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DATA_TRANSFER_REQUEST_ID" IS
'The data transfer (S3 or Globus) request ID that is currently in progress';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DATA_TRANSFER_TYPE" IS
'The data transfer (S3 or Globus) that is currently in progress';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DATA_TRANSFER_STATUS" IS
'The data transfer status (S3 or Globus)';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DOWNLOAD_FILE_PATH" IS
'The file path used in the 2-hop download';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."ARCHIVE_LOCATION_FILE_CONTAINER_ID" IS
'The archive location container ID of the data object to be downloaded';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."ARCHIVE_LOCATION_FILE_ID" IS
'The archive location file ID of the data object to be downloaded';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DESTINATION_LOCATION_FILE_CONTAINER_ID" IS
'The download destination container ID';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."DESTINATION_LOCATION_FILE_ID" IS
'The download destination file ID';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."COMPLETION_EVENT" IS
'An indicator whether a completion event needs to be generated when the task is completed';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."CREATED" IS
'The date and time the task was created';
COMMENT ON TABLE public."HPC_COLLECTION_DOWNLOAD_TASK" IS
'Active collection or bulk download tasks';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."ID" IS
'The download task ID';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."USER_ID" IS
'The user ID who submitted the download request';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."TYPE" IS
'The type of the request - collection or bulk (list of data objects)';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."PATH" IS
'The collection path to download';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."DATA_OBJECT_PATHS" IS
'The list of data object paths to download';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."DESTINATION_LOCATION_FILE_CONTAINER_ID" IS
'The download destination container ID';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."DESTINATION_LOCATION_FILE_ID" IS
'The download destination file ID';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."STATUS" IS
'The download task status';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."ITEMS" IS
'The download items included in this collection / bulk download request';
COMMENT ON COLUMN public."HPC_COLLECTION_DOWNLOAD_TASK"."CREATED" IS
'The date and time the task was created';
COMMENT ON TABLE public."HPC_DOWNLOAD_TASK_RESULT" IS
'Download task (single file, collection, bulk) results';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."ID" IS
'The download task ID';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."USER_ID" IS
'The user ID who submitted the download request';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."TYPE" IS
'The type of the request - data object, collection or bulk (list of data objects)';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."PATH" IS
'The data object or collection path requested';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."DATA_TRANSFER_REQUEST_ID" IS
'The data transfer (S3 or Globus) request ID that was last used';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."DATA_TRANSFER_TYPE" IS
'The data transfer (S3 or Globus) that was last used';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."DESTINATION_LOCATION_FILE_CONTAINER_ID" IS
'The download destination container ID';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."DESTINATION_LOCATION_FILE_ID" IS
'The download destination file ID';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."RESULT" IS
'The download task success/fail indicator';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."MESSAGE" IS
'An error message in case the task failed';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."ITEMS" IS
'The download items included in this collection / bulk download request';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DOWNLOAD_TASK"."COMPLETION_EVENT" IS
'An indicator whether a completion event was generated when the task completed';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."CREATED" IS
'The date and time the task was created';
COMMENT ON COLUMN public."HPC_DOWNLOAD_TASK_RESULT"."COMPLETED" IS
'The date and time the task was completed';
COMMENT ON TABLE public."HPC_DATA_MANAGEMENT_CONFIGURATION" IS
'The data management configurations supported by HPC-DME';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."ID" IS
'The configuration ID';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."BASE_PATH" IS
'The base path to apply this configuration to';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."DOC" IS
'The DOC that own this configuration';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."S3_URL" IS
'The S3 archive (Cleversafe) URL';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."S3_VAULT" IS
'The S3 archive (Cleversafe) vault';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."S3_OBJECT_ID" IS
'The S3 archive (Cleversafe) object id prefix';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."S3_ARCHIVE_TYPE" IS
'The S3 archive type (Archive / Temp Archive). Note: Temp Archive is currently not used';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."DATA_HIERARCHY" IS
'The data hierarchy policy';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."COLLECTION_METADATA_VALIDATION_RULES" IS
'The collection metadata validation rules';
COMMENT ON COLUMN public."HPC_DATA_MANAGEMENT_CONFIGURATION"."DATA_OBJECT_METADATA_VALIDATION_RULES" IS
'The data object metadata validation rules';
COMMENT ON TABLE public."HPC_DATA_OBJECT_DELETION_HISTORY" IS
'Data object deletion requests';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."USER_ID" IS
'The user ID who submitted the request';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."PATH" IS
'The data object path';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."METADATA" IS
'The data object metadata at the time of deletion';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."ARCHIVE_FILE_CONTAINER_ID" IS
'The data object archive container ID';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."ARCHIVE_FILE_ID" IS
'The data object archive file ID';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."ARCHIVE_DELETE_STATUS" IS
'Deletion from archive (Cleversafe) success/fail indicator';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."DATA_MANAGEMENT_DELETE_STATUS" IS
'Deletion from data management (iRODS) success/fail indicator';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."MESSAGE" IS
'Error message if the deletion failed (iRODS or Cleversafe)';
COMMENT ON COLUMN public."HPC_DATA_OBJECT_DELETION_HISTORY"."DELETED" IS
'The date/time the request was submitted';
COMMENT ON TABLE public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK" IS
'Bulk data object registration tasks';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK"."ID" IS
'The bulk registration task ID';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK"."USER_ID" IS
'The user ID who submitted the request';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK"."STATUS" IS
'The bulk registration task status';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK"."ITEMS" IS
'The list individual data object registrations included in this bulk registration request, in JSON format';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_TASK"."CREATED" IS
'The data/time the bulk registration request was submitted';
COMMENT ON TABLE public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT" IS
'Bulk data object registration task results';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."ID" IS
'The bulk registration task ID';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."USER_ID" IS
'The user ID who submitted the request';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."RESULT" IS
'Task success/failure indicator';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."MESSAGE" IS
'An error message if the task failed';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."ITEMS" IS
'The list individual data object registrations included in this bulk registration request, in JSON format';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."CREATED" IS
'The data/time the bulk registration request was submitted';
COMMENT ON COLUMN public."HPC_BULK_DATA_OBJECT_REGISTRATION_RESULT"."COMPLETED" IS
'The data/time the bulk registration request was completed';
COMMENT ON TABLE public."HPC_NOTIFICATION_SUBSCRIPTION" IS
'Notification subscriptions';
COMMENT ON COLUMN public."HPC_NOTIFICATION_SUBSCRIPTION"."ID" IS
'The notification subscription ID';
COMMENT ON COLUMN public."HPC_NOTIFICATION_SUBSCRIPTION"."USER_ID" IS
'The user ID that is subscribed for this notification';
COMMENT ON COLUMN public."HPC_NOTIFICATION_SUBSCRIPTION"."EVENT_TYPE" IS
'The event type to trigger the notification';
COMMENT ON COLUMN public."HPC_NOTIFICATION_SUBSCRIPTION"."NOTIFICATION_DELIVERY_METHODS" IS
'The delivery methods the user would like to receive notifications';
COMMENT ON TABLE public."HPC_NOTIFICATION_TRIGGER" IS
'Notification triggers - rules to determine if the notification needs to be sent';
COMMENT ON COLUMN public."HPC_NOTIFICATION_TRIGGER"."NOTIFICATION_SUBSCRIPTION_ID" IS
'The notification subscription ID to apply the trigger rules';
COMMENT ON COLUMN public."HPC_NOTIFICATION_TRIGGER"."NOTIFICATION_TRIGGER" IS
'A list of rules that operate on event payload data to determine if the notification should be sent';
COMMENT ON TABLE public."HPC_EVENT" IS
'Active events';
COMMENT ON COLUMN public."HPC_EVENT"."ID" IS
'The event ID';
COMMENT ON COLUMN public."HPC_EVENT"."USER_IDS" IS
'A list of user ID that are subscribed to be notified for this event';
COMMENT ON COLUMN public."HPC_EVENT"."TYPE" IS
'The event type';
COMMENT ON COLUMN public."HPC_EVENT"."PAYLOAD" IS
'The event payload';
COMMENT ON COLUMN public."HPC_EVENT"."CREATED" IS
'The date/time the event was created';
COMMENT ON TABLE public."HPC_EVENT_HISTORY" IS
'Event history - i.e. events that processed';
COMMENT ON COLUMN public."HPC_EVENT_HISTORY"."ID" IS
'The event ID';
COMMENT ON COLUMN public."HPC_EVENT_HISTORY"."USER_IDS" IS
'A list of user ID that are subscribed to be notified for this event';
COMMENT ON COLUMN public."HPC_EVENT_HISTORY"."TYPE" IS
'The event type';
COMMENT ON COLUMN public."HPC_EVENT_HISTORY"."PAYLOAD" IS
'The event payload';
COMMENT ON COLUMN public."HPC_EVENT_HISTORY"."CREATED" IS
'The date/time the event was created';
COMMENT ON TABLE public."HPC_NOTIFICATION_DELIVERY_RECEIPT" IS
'Notification delivery receipts - i.e. a list of all notifications the system sent out';
COMMENT ON COLUMN public."HPC_NOTIFICATION_DELIVERY_RECEIPT"."EVENT_ID" IS
'The event ID that notification was sent for';
COMMENT ON COLUMN public."HPC_NOTIFICATION_DELIVERY_RECEIPT"."USER_ID" IS
'The user ID that was notified';
COMMENT ON COLUMN public."HPC_NOTIFICATION_DELIVERY_RECEIPT"."NOTIFICATION_DELIVERY_METHOD" IS
'The notification delivery method';
COMMENT ON COLUMN public."HPC_NOTIFICATION_DELIVERY_RECEIPT"."DELIVERY_STATUS" IS
'Notification delivery success / failure indicator';
COMMENT ON COLUMN public."HPC_NOTIFICATION_DELIVERY_RECEIPT"."DELIVERED" IS
'The data / time the delivery attempt was performed';
COMMENT ON TABLE public."HPC_SYSTEM_ACCOUNT" IS
'System accounts';
COMMENT ON COLUMN public."HPC_SYSTEM_ACCOUNT"."USERNAME" IS
'The user name';
COMMENT ON COLUMN public."HPC_SYSTEM_ACCOUNT"."PASSWORD" IS
'<PASSWORD>';
COMMENT ON COLUMN public."HPC_SYSTEM_ACCOUNT"."SYSTEM" IS
'The system';
COMMENT ON COLUMN public."HPC_SYSTEM_ACCOUNT"."DATA_TRANSFER_TYPE" IS
'The data transfer type (S3 for Cleversafe etc)';
COMMENT ON TABLE public."HPC_USER_BOOKMARK" IS
'User bookmarks';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."USER_ID" IS
'The user ID that owns this bookmark';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."BOOKMARK_NAME" IS
'The bookmark name';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."BOOKMARK_GROUP" IS
'The bookmark group';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."PATH" IS
'The bookmark path';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."CREATED" IS
'The date / time the bookmark was created';
COMMENT ON COLUMN public."HPC_USER_BOOKMARK"."UPDATED" IS
'The date / time the bookmark was updated';
COMMENT ON TABLE public."HPC_USER_QUERY" IS
'User queries';
COMMENT ON COLUMN public."HPC_USER_QUERY"."USER_ID" IS
'The user ID that owns this query';
COMMENT ON COLUMN public."HPC_USER_QUERY"."QUERY" IS
'The compound metadata query';
COMMENT ON COLUMN public."HPC_USER_QUERY"."DETAILED_RESPONSE" IS
'Detailed response indicator to request when using this query';
COMMENT ON COLUMN public."HPC_USER_QUERY"."TOTAL_COUNT" IS
'Total count parameter to set when using this query';
COMMENT ON COLUMN public."HPC_USER_QUERY"."QUERY_TYPE" IS
'The query type - collection or data object';
COMMENT ON COLUMN public."HPC_USER_QUERY"."CREATED" IS
'The date / time the query was created';
COMMENT ON COLUMN public."HPC_USER_QUERY"."UPDATED" IS
'The date / time the query was updated';
COMMENT ON TABLE public."HPC_USER" IS
'HPC-DME Users';
COMMENT ON COLUMN public."HPC_USER"."USER_ID" IS
'The user ID';
COMMENT ON COLUMN public."HPC_USER"."FIRST_NAME" IS
'The user first name';
COMMENT ON COLUMN public."HPC_USER"."LAST_NAME" IS
'The user last name';
COMMENT ON COLUMN public."HPC_USER"."DOC" IS
'The DOC the user belongs to';
COMMENT ON COLUMN public."HPC_USER"."DEFAULT_CONFIGURATION_ID" IS
'The default configuration ID associated with the user';
COMMENT ON COLUMN public."HPC_USER"."ACTIVE" IS
'User active indicator';
COMMENT ON COLUMN public."HPC_USER"."CREATED" IS
'The date / time the user was created';
COMMENT ON COLUMN public."HPC_USER"."LAST_UPDATED" IS
'The date / time the user was updated';
COMMENT ON COLUMN public."HPC_USER"."ACTIVE_UPDATED_BY" IS
'The administrator user ID that activated this user';
|
<gh_stars>100-1000
-- Copyright 2021 The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.
BEGIN;
ALTER TABLE documentation ADD COLUMN id INTEGER;
ALTER TABLE documentation ADD COLUMN new_goos goos;
ALTER TABLE documentation ADD COLUMN new_goarch goarch;
CREATE SEQUENCE sequence_documentation_id START 1;
CREATE OR REPLACE FUNCTION update_documentation_id() RETURNS TRIGGER AS $BODY$
BEGIN
NEW.id=nextval('sequence_documentation_id');
RETURN NEW;
END
$BODY$ LANGUAGE PLPGSQL;
ALTER SEQUENCE sequence_documentation_id OWNED BY documentation.id;
CREATE TRIGGER documentation_id_update
BEFORE INSERT OR UPDATE ON documentation
FOR EACH ROW EXECUTE PROCEDURE update_documentation_id();
END;
|
<gh_stars>0
INSERT INTO public.violations (cam_numeric_id,violation_type_id,creation_datetime,violation_datetime_start,violation_datetime_end,status_id,blocked)
VALUES
(9,5,'2021-07-17 17:54:04.665808','2020-09-11 10:07:01.71','2020-09-11 10:07:01.71',1,false),
(4,6,'2021-07-17 14:54:04.665808','2020-09-13 20:05:01.71',null,1,false),
(44,1,'2021-07-17 14:54:04.665808','2020-09-11 13:07:01.71','2020-09-11 16:54:48.51',1,false),
(2,4,'2021-07-17 14:54:04.665808','2020-09-11 13:07:01.71',null,5,false),
(19,5,'2021-07-22 15:22:05','2021-07-17 15:58:39.896413',null,1,false),
(20,5,'2021-07-22 15:23:27','2021-07-17 16:00:11.013635',null,1,false)
|
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Хост: 127.0.0.1:3306
-- Время создания: Окт 19 2019 г., 16:48
-- Версия сервера: 5.6.43
-- Версия PHP: 7.0.32
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 */;
--
-- База данных: `sage_db`
--
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_cfs_sessions`
--
CREATE TABLE `3g7cp_cfs_sessions` (
`id` varchar(32) NOT NULL DEFAULT '',
`data` text,
`expires` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `3g7cp_cfs_sessions`
--
INSERT INTO `3g7cp_cfs_sessions` (`id`, `data`, `expires`) VALUES
('06907900b0cff24d12c1ee4d9320e62f', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571491850'),
('1618ab80af0ca984e05b87c0ba7b2db2', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571485066'),
('2041141fbda158fcce1bcc93efc1222a', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571490302'),
('39c47ccb18d0619b5aa04e490c59553a', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571489818'),
('4fce46723e2f7edceed7bcdf9e1eb262', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571492160'),
('5160bc06304af78986e4f7d209f3795b', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571486128'),
('51fbbdd9396a39417eb747bf5bef42c9', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571491470'),
('742c0740c2fb8ca6d55c4c11b82726eb', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571484967'),
('744ef67b9c23af0aeb965661b6d18a50', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571492188'),
('<KEY>', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571491915'),
('866ec95693843526bfdfcae88897448d', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571484341'),
('86cedc714263d6c81a022da822ac0fad', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571486275'),
('893358ad20b6f897f1e2fe6cf0ec504c', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571484875'),
('960e3f437c3c52b622a3c18bcbc3a058', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571490200'),
('c03455dcff58f418f1c4f2ddd5d60cfb', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571489807'),
('cbd20e34015b2dcee95054c6effade43', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571486236'),
('d14e57e607df56682307d125e89a0f6d', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:1:{i:0;i:30;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571484280'),
('d21ed2e3e6cd684037cbc0d95a4e3cfa', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571492205'),
('e12361830a043b7f21d95baf0615fa34', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571491822'),
('e5123fcfb47701983567687cabf79134', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571490592'),
('ee26bf56fd1f7d7773b93bc31fe11978', 'a:7:{s:7:\"post_id\";i:2;s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:5:\"draft\";s:12:\"field_groups\";a:2:{i:0;i:30;i:1;i:32;}s:20:\"confirmation_message\";s:0:\"\";s:16:\"confirmation_url\";s:0:\"\";s:9:\"front_end\";b:0;}', '1571490113');
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_cfs_values`
--
CREATE TABLE `3g7cp_cfs_values` (
`id` int(10) UNSIGNED NOT NULL,
`field_id` int(10) UNSIGNED DEFAULT NULL,
`meta_id` int(10) UNSIGNED DEFAULT NULL,
`post_id` int(10) UNSIGNED DEFAULT NULL,
`base_field_id` int(10) UNSIGNED DEFAULT '0',
`hierarchy` text,
`depth` int(10) UNSIGNED DEFAULT '0',
`weight` int(10) UNSIGNED DEFAULT '0',
`sub_weight` int(10) UNSIGNED DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `3g7cp_cfs_values`
--
INSERT INTO `3g7cp_cfs_values` (`id`, `field_id`, `meta_id`, `post_id`, `base_field_id`, `hierarchy`, `depth`, `weight`, `sub_weight`) VALUES
(99, 1, 248, 2, 0, '', 0, 0, 0),
(100, 3, 249, 2, 0, '', 0, 0, 0),
(101, 4, 250, 2, 0, '', 0, 0, 0),
(102, 5, 251, 2, 0, '', 0, 0, 0),
(103, 6, 252, 2, 0, '', 0, 0, 0),
(104, 7, 253, 2, 0, '', 0, 0, 0),
(105, 9, 254, 2, 8, '8:0:9', 1, 0, 0),
(106, 9, 255, 2, 8, '8:1:9', 1, 1, 0),
(107, 9, 256, 2, 8, '8:2:9', 1, 2, 0),
(108, 9, 257, 2, 8, '8:3:9', 1, 3, 0),
(109, 9, 258, 2, 8, '8:4:9', 1, 4, 0),
(110, 9, 259, 2, 8, '8:5:9', 1, 5, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_commentmeta`
--
CREATE TABLE `3g7cp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_comments`
--
CREATE TABLE `3g7cp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_comments`
--
INSERT INTO `3g7cp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '<EMAIL>', 'https://wordpress.org/', '', '2019-10-16 14:07:26', '2019-10-16 14:07:26', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_links`
--
CREATE TABLE `3g7cp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_options`
--
CREATE TABLE `3g7cp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_options`
--
INSERT INTO `3g7cp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://sage.loc', 'yes'),
(2, 'home', 'http://sage.loc', 'yes'),
(3, 'blogname', '', 'yes'),
(4, 'blogdescription', '', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '<EMAIL>', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '<EMAIL>', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '0', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:91:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:2:{i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:26:\"custom-field-suite/cfs.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'sage-theme/resources', 'yes'),
(41, 'stylesheet', 'sage-theme/resources', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '44719', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '0', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'page', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:46:\"©2019 Lorem ipsum dolor sit amet, consectetur\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '2', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '1', 'yes'),
(93, 'initial_db_version', '44719', 'yes'),
(94, '3g7cp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(95, 'fresh_site', '0', 'yes'),
(96, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(97, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(98, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'sidebars_widgets', 'a:6:{s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:0:{}s:14:\"sidebar-footer\";a:4:{i:0;s:13:\"custom_html-2\";i:1;s:13:\"custom_html-3\";i:2;s:13:\"custom_html-4\";i:3;s:13:\"custom_html-5\";}s:24:\"sidebar-footer-copyright\";a:1:{i:0;s:6:\"text-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(102, 'cron', 'a:4:{i:1571494047;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1571494060;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1571494062;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}', 'yes'),
(103, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(104, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(105, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'nonce_key', '<KEY>', 'no'),
(110, 'nonce_salt', '3SVV1TnA#17l8H[|O4o0M:N)^swf]MF~6hr#o}mzAhnsOl(fO~[Oh)Oksg:8<0Q:', 'no'),
(111, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_custom_html', 'a:5:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:397:\"<div class=\"footer-widget_with-logo\">\r\n<img src=\"/wp-content/uploads/2019/10/logo-1.png\" alt=\"logo\">\r\n<div class=\"footer-widget_text\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusd tempor incididunt ut labore et dolore magna aliqua.\r\n</div>\r\n</div>\";}i:3;a:2:{s:5:\"title\";s:15:\"Contact details\";s:7:\"content\";s:633:\"<div class=\"footer-widget_contact-details\">\r\n<img src=\"/wp-content/uploads/2019/10/clock_icon.png\" alt=\"clock\" class=\"clock\">\r\n<div>\r\n<p>Mon – Fri: 8AM – 7PM</p>\r\n<p>Sat – Sun: 9AM – 5PM</p> \r\n</div> \r\n</div>\r\n<div class=\"footer-widget_contact-details\">\r\n<img src=\"/wp-content/uploads/2019/10/place_icon.png\" alt=\"place\">\r\n<p>Lorem ipsum dolor sit amet, consectetur</p>\r\n</div>\r\n<div class=\"footer-widget_contact-details\">\r\n<a href=\"tel:+1234567890\" title=\"Phone Number\" class=\"contact-details_phone\">\r\n<img src=\"http://sage.loc/wp-content/uploads/2019/10/phone_icon.png\" alt=\"phone\">\r\n<span>700-000-0000</span>\r\n</a>\r\n</div>\";}i:4;a:2:{s:5:\"title\";s:11:\"Quick links\";s:7:\"content\";s:239:\"<ul class=\"footer-widget_quick-links\">\r\n<li>\r\n<a href=\"#\" title=\"Our Services\">Our Services</a>\r\n</li>\r\n<li><a href=\"#\" title=\"Contact US\">Contact US</a>\r\n</li>\r\n<li><a href=\"#\" title=\"Recent Blog Posts\">Resent Blog Posts</a>\r\n</li>\r\n</ul>\";}i:5;a:2:{s:5:\"title\";s:6:\"Conect\";s:7:\"content\";s:881:\"<ul class=\"footer-widget_conect\">\r\n<li class=\"first_line\">\r\n<span><a href=\"#\" title=\"Facebook\"><img src=\"wp-content/uploads/2019/10/fb.png\" alt=\"Facebook\"></a></span>\r\n</li>\r\n<li class=\"first_line\"><span><a href=\"#\" title=\"Twitter\"><img src=\"/wp-content/uploads/2019/10/twi.png\" alt=\"Twitter\"></a></span>\r\n</li>\r\n<li class=\"first_line\"><span><a href=\"#\" title=\"Google+\"><img src=\"wp-content/uploads/2019/10/google.png\" alt=\"Google+\"></a></span></li>\r\n<li class=\"second_line\"><span><a href=\"#\" title=\"Youtube\"><img src=\"wp-content/uploads/2019/10/youtube.png\" alt=\"Youtube\"></a></span>\r\n</li>\r\n<li class=\"second_line\"><span><a href=\"#\" title=\"Pinterest\"><img src=\"wp-content/uploads/2019/10/pint.png\" alt=\"Pint\"></a></span>\r\n</li>\r\n<li class=\"second_line\"><span><a href=\"#\" title=\"Instagram\"><img src=\"wp-content/uploads/2019/10/insta.png\" alt=\"Instagram\"> </a></span>\r\n</li>\r\n</ul>\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'recovery_keys', 'a:0:{}', 'yes'),
(116, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1571469677;s:15:\"version_checked\";s:5:\"5.2.4\";s:12:\"translations\";a:0:{}}', 'no'),
(117, 'theme_mods_twentynineteen', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1571235856;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}', 'yes'),
(122, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1571492768;s:7:\"checked\";a:4:{s:20:\"sage-theme/resources\";s:5:\"9.0.0\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'),
(123, 'auth_key', '<KEY>:,Ozm6nh1x9Mg=<0]:Dz=4VcbKI', 'no'),
(124, 'auth_salt', ';3Q?L*C#WYnd`?V%AkKrd}mZZj3~NxMUp2n_Cb 7VXQ]Y`XC`*}LY?sV7=<Rtj_.', 'no'),
(125, 'logged_in_key', '<KEY>!)||<KEY>', 'no'),
(126, 'logged_in_salt', '#/nAbqU=]*nB1OXoA)b0hR>=s(-$ZU?uxq.?}(V6o.=LSHrE{?:914`U8NKN6rtZ', 'no'),
(127, '_site_transient_timeout_browser_78fe17c4f540c72aa993f78947fa9854', '1571839661', 'no'),
(128, '_site_transient_browser_78fe17c4f540c72aa993f78947fa9854', 'a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"69.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(129, '_site_transient_timeout_php_check_e481018c713db17b5f16f6d87bf44ece', '1571839662', 'no'),
(130, '_site_transient_php_check_e481018c713db17b5f16f6d87bf44ece', 'a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:1;}', 'no'),
(132, 'can_compress_scripts', '1', 'no'),
(147, 'theme_mods_sage-theme/resources', 'a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:18:\"primary_navigation\";i:2;}s:11:\"custom_logo\";i:8;}', 'yes'),
(148, 'current_theme', 'Sage Starter Theme', 'yes'),
(149, 'theme_switched', '', 'yes'),
(150, 'theme_switched_via_customizer', '', 'yes'),
(151, 'customize_stashed_theme_mods', 'a:0:{}', 'no'),
(160, '_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e', '1571431884', 'no'),
(161, '_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e', 'a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}s:6:\"events\";a:0:{}}', 'no'),
(162, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1571431885', 'no');
INSERT INTO `3g7cp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(163, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://wordpress.org/?v=5.3-RC1-46561\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:64:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Empowering Generations of Digital Natives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"digital citizenship week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7413\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens. No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8413:\"\n<p>Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens.</p>\n\n\n\n<p>No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to be an excellent digital citizen. If you’re not confident about your own tech skills, you may wonder how you can help younger generations become savvy digital citizens. But using technology responsibly is about more than just technical skills. By collaborating across generations, you can also strengthen all your family members’ skills, and offer a shared understanding of what the internet can provide and how to use it to help your neighborhoods and wider society. <br></p>\n\n\n\n<h2>Taking Gen Z Beyond Digital Savvy</h2>\n\n\n\n<h3>Open up the dialogue</h3>\n\n\n\n<p>Even if you’re not fully confident in your own tech skills, you can help develop digital citizenship skills in others. If you feel comfortable during everyday conversation, you could describe a tech situation you have come across and ask family members if they have ever experienced something similar. You can give them a chance to share how they handled it or how it made them feel. This can help encourage them to think critically and to react with empathy. And being asked for advice can make them feel appreciated and empowered. But opening up the conversation can also be as simple as asking if they’ve seen anything online lately that they found interesting or wanted to talk about.</p>\n\n\n\n<h3>Share access to free and affordable training</h3>\n\n\n\n<p>Open source content management systems have made online publishing accessible to a more diverse group of people. Dozens of content platforms offer hands-on training at no or low cost. <a href=\"https://wordpress.tv/\">WordPress.tv</a>, <a href=\"https://www.linkedin.com/learning/topics/wordpress\">LinkedIn Learning</a>, and others have low-cost video libraries with thousands of recorded talks and workshops and the WordPress Training team have excellent downloadable lesson plans and materials. These platforms not only feature content that helps develop tech and content creation skills but also content around ethics, diversity and community building. </p>\n\n\n\n<h3>Find a sense of community and belonging</h3>\n\n\n\n<p>One of the disadvantages of increased digitalization is that <a href=\"https://www.theatlantic.com/magazine/archive/2017/09/has-the-smartphone-destroyed-a-generation/534198/\">younger generations and us all may spend less time hanging out in-person.</a> Digital time spent with others is no replacement for in-person interactions. The awareness and mutual understanding which comes from back and forth interaction is needed for positive interpersonal skills. This is hard to replace in digital communities and those skills can only be learned with lots of hands-on practice. </p>\n\n\n\n<h3>Learn the many benefits of volunteering </h3>\n\n\n\n<p>There are WordPress events across the world that provide a great place to learn new skills to share with your families and friends. Some work with schools and colleges to offer special events which are open to all ages. There are also plenty of small ways to volunteer with the WordPress project that can be done at home to practice new skills.</p>\n\n\n\n<p>In addition to attending events where you can learn skills and hang out with others with similar interests, the WordPress ecosystem offers countless opportunities to be actively involved. Professionals, hobbyists, and learners all make a difference by contributing to the ongoing creation of the WordPress platform. Together these people, who are known as contributors, form the <a href=\"https://make.wordpress.org/\">WordPress open source community.</a> </p>\n\n\n\n<h4>WordPress is created by volunteer contributors</h4>\n\n\n\n<p>Not only are these contributors creating an amazingly flexible platform for all to use, it is an environment where you can continue to improve your skills, both technical and interpersonal. Open-source software projects can introduce you to people you would otherwise not get the chance to meet, locally and internationally. If you have a zest for learning, and for finding others to connect with, WordPress has many ways to meet contributors in person!</p>\n\n\n\n<h4>WordPress events are organized by volunteers</h4>\n\n\n\n<p>WordPress community events are volunteer-run. This can be a great way to give back to the project and practice all sorts of skills. Talk to your local event about how you could get involved and if you would like to bring older teenagers and young adults with you. You will not need any pre-existing tech skills to attend these events but they are a great way to discover areas you might want to learn more about. </p>\n\n\n\n<h4>Contributor days offer a great opportunity to get involved</h4>\n\n\n\n<p>These events are specially designed to help you get involved in building the open-source WordPress platform. You can collaborate with other members of its community and find areas that are right for you to use and grow your skills. All of the tasks you will discover at an event can be continued at home and some are easy to get other family members involved in learning and adding in ideas. </p>\n\n\n\n<p>Contributors come from all sorts of backgrounds and locations, some may live near you and others thousands of miles away. Working alongside lots of different cultures and countries can open up new ideas for young people letting them learn new ways of doing things and discover different perspectives. All those different perspectives can cause misunderstandings. But being involved in a global learning community is a great way to practice communicating across cultural boundaries. </p>\n\n\n\n<h4>Getting involved can be rewarding in many (unexpected) ways</h4>\n\n\n\n<p>The most rewarding part of actively taking part in WordPress events is making budding friendships. New connections often turn into long-lasting friendships that are likely to continue for years to come, both online and offline. With a global community, these friendships can potentially lead to lots of international adventures too!</p>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Getting ready for the <a href=\"https://twitter.com/WordCampBTN?ref_src=twsrc%5Etfw\">@WordCampBTN</a>. I’ve got my 5kg backpack and one-way ticket to London in a few days <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f929.png\" alt=\"🤩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> What shall I do after? <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://t.co/cdQqeyNWif\">pic.twitter.com/cdQqeyNWif</a></p>— <NAME> going to #WCKyiv (@sabrina_zeidan) <a href=\"https://twitter.com/sabrina_zeidan/status/1160265428473712640?ref_src=twsrc%5Etfw\">August 10, 2019</a></blockquote>\n\n\n\n<h3>Make our digital world safer and more inclusive</h3>\n\n\n\n<p>Befriending people from a wide variety of cultures and backgrounds can be an enriching experience in itself. It can also help you make us make more informed decisions. The more we interact with a diverse range of people, the more empathic we become. Some of the most valuable learning that can be offered to Gen Z (and probably to all of us at times) is that what we come across in fast-moving digital communities isn’t always the entire view. </p>\n\n\n\n<h2>All things considered….</h2>\n\n\n\n<p>Anyone who is a digital native may not need encouragement to obtain tech skills. But they may not be aware that digital communities are still communities and <a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">we need to use the same sorts of people skills for both offline and online locations</a>. Opening up conversations about situations they may experience online that may require them to (re)act responsibly, can encourage them to think critically and act with empathy. Compared to previous generations, digital natives spend substantially more time by themselves while using devices, so encouraging them to join real-life communities, such as WordPress, could be the first step to learning what it means to be a good digital citizen! </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 21:18:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7397\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The first release candidate for WordPress 5.3 is now available! This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"\n<p>The first release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently scheduled to be released on <strong>November 12, 2019</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate: </p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC1.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<h2>What’s in WordPress 5.3?</h2>\n\n\n\n<p>WordPress 5.3 expands and refines the <strong>Block Editor</strong> introduced in WordPress 5.0 with <strong>new blocks, more intuitive interactions, and improved accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty</strong> theme giving the user more design flexibility and integration with the Block Editor. </p>\n\n\n\n<p>In addition, WordPress 5.3 allows developers to work with <strong>dates and timezones</strong> in a more reliable way and prepares the software to work with <strong>PHP 7.4</strong> to be release later this year. </p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme file to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The WordPress 5.3 Field Guide will be published within the next 24 hours with a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.3 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Responsible Participation In Online Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:41:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:24:\"digital citizenship week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"open source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7386\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:365:\"In our first article in this series, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9139:\"\n<p>In our <a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">first article in this series</a>, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. People have been able to share their enthusiasm for hobbies, causes, products and much more. Through these different voices, we can encourage understanding, spark creativity, and create environments where collaboration can happen. But as we build more digital communities, it’s easy to forget that online safety is a group effort.</p>\n\n\n\n<p>Digital literacy is also part of being a good digital citizen, but it’s more than just being able to do basic actions with your mobile device. Digital literacy refers to the range of skills needed to do online research, set up web accounts, and find solutions for fixing devices among other things. But to be able to enjoy more of the digital world safely and responsibly – to be a good digital citizen – we need to be able to: </p>\n\n\n\n<ul><li><strong>navigate</strong> vast amounts of information without getting overwhelmed;</li><li><strong>evaluate</strong> a variety of perspectives;</li><li><strong>connect</strong> with people with respect and empathy;</li><li><strong>create</strong>, curate and share information.</li></ul>\n\n\n\n<p>We will need our offline analytical and social skills to make that happen. </p>\n\n\n\n<h2>Here’s some best practices our community members have shared!</h2>\n\n\n\n<h3>Online or offline, let empathy be your compass</h3>\n\n\n\n<p>The hardest part about all of this is the anonymity of online interactions. Without that face-to-face feedback of saying something mean to another person’s face, it’s easy to upset the people you’re trying to communicate with.</p>\n\n\n\n<p>In our daily lives in the offline world, comments may be more tempered and slow to anger in disagreements. Visual cues will help us determine how a remark is perceived. That, in turn, helps us adjust our behaviour Action, reaction, it’s how we learn best.</p>\n\n\n\n<p>Online, however, the experience is different. A keyboard does not protest if we type angry, hate-filled messages. A screen does not show any signs of being hurt. The lack of physical human presence combined with the anonymity of online alter-egos can be a formula for disrespectful and unfriendly behavior. It is good to remind ourselves that behind the avatars, nicknames and handles are real people. The same empathy we display in our in-person interactions should apply online as well.</p>\n\n\n\n<h3>Critically evaluate your sources </h3>\n\n\n\n<p>We all have times when we consume information with limited research and fact-checking. For some of us, it feels like there’s no time to research and compare sources when faced by a sea of online information. For others, there may be uncertainty about where to start and what to consider. But, without a bit of skepticism and analytical thinking, we run the risk of creating narrow or incorrect understanding of the world. With a little effort we can curb the sharing of fake news and biased information, particularly on topics that are new to us or that we’re not familiar with.</p>\n\n\n\n<p>Misinformation can spread like wildfire. Ask these simple questions to evaluate information online: </p>\n\n\n\n<ul><li>who is the source of the information?</li><li>is it plausible?</li><li>is the information fact or just an opinion?</li></ul>\n\n\n\n<h3>Own our content</h3>\n\n\n\n<p>In this day and age, it’s never been easier to just copy, paste and publish somebody else’s content. That doesn’t mean that we should! Publishing content that is not truly ‘yours’ in wording and tone of voice is unlikely to build a connection with the right audience. But, just as important, using someone else’s content may breach copyright and potentially intellectual property rights. </p>\n\n\n\n<p>For more information about intellectual property, <a href=\"https://www.wipo.int/about-ip/en/\">visit the World Intellectual Property Organization website</a>.</p>\n\n\n\n<h3>Don’t breeze past terms and conditions</h3>\n\n\n\n<p>Have you ever signed up for an online service (to help you distribute published content or accept payments) that was offered at no cost? In our fast-paced digital lives, we tend to want to breeze past terms and conditions or warning information and often miss important information about what will happen with our data. </p>\n\n\n\n<p>When we are given a contract on paper, we tend to read and re-read it, giving it a greater priority of our time. We may send it to other people for a second opinion or seek further review before signing. Remarkably, we rarely do that with online agreements. As a result, we may be putting our online privacy and security at risk. (WordPress uses a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/gpl-primer/\">GPL license</a>, and only collects usage data that we never share ever.).</p>\n\n\n\n<h3>Keep your website safe and healthy</h3>\n\n\n\n<p>If you would like to own your voice online, you also need to protect your reputation by securing your publishing platform. Websites can face security attacks. Hackers may seek to obtain access through insecure settings, outdated plugins and old software versions, and in extreme cases can try to scam your visitors. And leaking customer data, may even lead to legal consequences.</p>\n\n\n\n<p>On top of that, websites ‘flagged’ for security issues, can lead to high bounce rates and eventual loss of search rankings. This can all affect how search engines rate or even block your site. </p>\n\n\n\n<p>Good practices to keep your website safe include changing your safe password regularly, installing security software, an SSL certificate and keeping the core software, plugins and themes up to date. This will not guarantee that you will keep hackers out, so always keep several backups of your site, ideally both offline and online.</p>\n\n\n\n<p>That is just website security in a tiny nutshell. If you would like to learn more about keeping websites safe, you may want to check out some of these resources and many more videos at WordPress.tv.</p>\n\n\n\n<h2>Join in and help make the web a better place!</h2>\n\n\n\n<p>As part of Digital Citizenship Week, we would like to encourage you to learn and share skills with your colleagues, friends and family members. That way, we all become more informed of potential issues and how to reduce the risks. Together we can make it easier to navigate the web more effectively and securely!</p>\n\n\n\n<h3>Additional resources</h3>\n\n\n\n<h4>Site health check</h4>\n\n\n\n<p>WordPress 5.2 introduced pages in the admin interface to help users run health checks on their sites. They can be found under the Tools menu.</p>\n\n\n\n<h4>Security and SSL </h4>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/01/23/victor-santoyo-security-and-ssl-whats-the-difference/\">Video recording of a presentation by <NAME> about website security and SSL</a>.</li><li><a href=\"https://wordpress.tv/2017/08/31/jessica-gardner-ssl-what-it-is-how-to-do-it-and-why-you-should-care/\">Video recording of a presentation by <NAME> about why you should care about SSL and how to use it.</a></li><li><a href=\"https://wordpress.tv/2018/02/03/adam-warner-the-personal-and-website-security-mindset/\">Video recording of a presentation by <NAME> about the personal and website security mindset</a>.</li><li><a href=\"https://wordpress.tv/2018/07/05/miriam-schwab-content-security-policies-a-whole-new-way-of-securing-your-website-that-no-one-knows/\">Video recording of a presentation by <NAME> about content security policies</a>.</li><li><a href=\"https://en.support.wordpress.com/https-ssl/\">More information about SSL licenses on WordPress.com</a>.</li><li><a href=\"https://wordpress.org/plugins/search/SSL\">SSL plugins in the WordPress plugin repository</a>.</li></ul>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/muzhdekad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>muzhdekad</a> <a href=\'https://profiles.wordpress.org/alexdenning/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alexdenning</a>, <a href=\'https://profiles.wordpress.org/natashadrewnicki/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>natashadrewnicki</a>, <a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, and <NAME>.</p>\n\n\n\n<p><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.2.4 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 21:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7372\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"WordPress 5.2.4 is now available! This security release fixes 6 security issues. WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2. Security Updates Props to Evan Ricafort for finding an […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3652:\"\n<p><a href=\"https://wordpress.org/wordpress-5.2.4.zip\">WordPress 5.2.4</a> is now available! This security release fixes 6 security issues.<br><br>WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\"><NAME></a> for finding an issue where stored XSS (cross-site scripting) could be added via the Customizer.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://codesymphony.co/\"><NAME></a> who found and disclosed a method of viewing unauthenticated posts.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://weston.ruter.net/\">West<NAME>uter</a> for finding a way to create a stored XSS to inject Javascript into style tags.</li><li>Props to <NAME> for highlighting a method to poison the cache of JSON GET requests via the Vary: Origin header.</li><li>Props to <a href=\"http://eugenekolo.com/\"><NAME></a> who found a server-side request forgery in the way that URLs are validated.</li><li>Props to <NAME> of the WordPress Security Team who discovered issues related to referrer validation in the admin.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> the vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">5.2.4 documentation page</a>.<br><br>WordPress 5.2.4 is a short-cycle security release. The next major release will be <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/5-3/\">version 5.3</a>.<br><br>You can <a href=\"https://wordpress.org/wordpress-5.2.4.zip\">download WordPress 5.2.4</a> or visit <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates have already started to update automatically.<br><br>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.2.4:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\"><NAME></a>, <a href=\"https://profiles.wordpress.org/darthhexx\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/davidbinda\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iandunn\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeffpaul\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\"><NAME></a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstant<NAME></a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\"><NAME></a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sstoqnov\"><NAME>yanov</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\"><NAME></a>, <a href=\"https://profiles.wordpress.org/whyisjake\"><NAME></a>, and <a href=\"https://profiles.wordpress.org/xknown\"><NAME></a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Becoming Better Digital Citizens Through Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 07:31:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7353\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9031:\"\n<p>The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as a tool for learners (regardless of age) to practice and model the essential parts of being a good digital citizen.</p>\n\n\n\n<h2>What is digital citizenship?</h2>\n\n\n\n<p>The digital landscape constantly changes and this affects the way we use the internet. New platforms emerge, people find different ways to spread information, communities form, grow and fade away every day. The concepts and practice of promoting civil discourse, critical thinking and safe use of the internet still remain central. And that is exactly what digital citizenship is about.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Put simply, digital citizenship is a lot like citizenship in any other community — the knowledge of how to engage with digital communities you’re part of in a way that is thoughtful, safe, and makes appropriate use of the technology.”</em></p><cite><em><NAME>, Executive Director WordPress Project</em></cite></blockquote>\n\n\n\n<h2>Who is a digital citizen?</h2>\n\n\n\n<p>Digital Citizenship is for all age groups. Anyone who uses the internet on a computer, mobile device or a TV is a digital citizen. You don’t have to be tech-savvy already, maybe you are taking your first steps with technology. Digital Citizenship Week is a chance to reflect together on our impact on the digital world. It can help us to make our consumption more considered and our interaction friendlier. It enables us to make a positive difference to those around us.</p>\n\n\n\n<p>All of us can strive (or learn) to become better digital citizens. It can be affected by the access those teaching have had to digital skills and good practice. Adult education classes and community tech hubs play a part in basic tech skill development. Unfortunately, these are not always accessible to those in less populated geographic locations. </p>\n\n\n\n<p>Open source communities like WordPress already make a difference in encouraging the principles of digital citizenship, from sharing tech skills to improving security knowledge. They give people an opportunity to learn alongside their peers and many of the resources are available regardless of location, resources, or skills.</p>\n\n\n\n<ul><li>WordPress Meetups — locally-based, informal learning sessions — typically take place monthly on weekday evenings. </li><li>WordCamps are city-based conferences that take place in cities worldwide. These events usually last 1-3 days and are organized and run by volunteers.</li><li>The talks are also recorded and made available on the free, online library <a href=\"https://wordpress.tv/\">WordPress.tv</a>. These can be watched from the comfort of your own home, office or during informal get-togethers.</li></ul>\n\n\n\n<h3>What can we do as part of the WordPress community?</h3>\n\n\n\n<p>Digital citizenship skills, like many other skills needed in this tech-focused world, should be kept up-to-date. Open source communities offer unparalleled opportunities to do this and are available in countries across the world. As part of our role as members of WordPress and other communities, we can pass on such skills to others. For instance by working alongside people who have had limited experience of digital skills. Or by finding new ways of making this knowledge sharing fun and accessible. </p>\n\n\n\n<p><strong>Here are just a few of the ways we do and can make an even greater difference:</strong></p>\n\n\n\n<ul><li>as bloggers and writers, we can be more aware of how to write content responsibly.</li><li>as designers, we can think more about how different people will view, understand and respond to the designs and visuals we create or use.</li><li>as developers, we can build systems that make it easier for all users to find information and accomplish their goals, to be secure while visiting our sites, and to model good security and practice.</li><li>as community members, through organizing events like <a href=\"https://www.meetup.com/pro/wordpress\">WordPress Meetups</a> and <a href=\"https://central.wordcamp.org\">WordCamps</a>, we are helping equip those who may not have had access to digital literacy or who lack the confidence to put it into place or share with their family and colleagues. Through these events, the online videos and other resources on <a href=\"https://wordpress.tv/\">WordPress.tv</a> and through the <a href=\"https://make.wordpress.org/\">Make WordPress teams</a>, we are already making a difference every day.</li><li>as individuals, the way we communicate in the community and listen to each other is equally important. This is a vital part of how we grow and model positive digital citizens. Through growing our positive digital skills and a better understanding of online etiquette and challenges, we can make our immediate and wider digital world a more positive and useful environment.</li><li>making it easier to document and share knowledge.</li><li>emphasizing how skills learned within the community can be used in other parts of our digital lives.</li><li>creating and becoming ambassadors for Digital Citizenship.</li></ul>\n\n\n\n<p>You can also get involved with specific events that have grown out of the wider WordPress project, championed by enthusiasts and those wanting to improve specific digital skills and bring wider benefits to society.</p>\n\n\n\n<h2>Community-driven Events</h2>\n\n\n\n<p>For example, <a href=\"https://wptranslationday.org\"><strong>WordPress Translation Day</strong></a> in 2019 had 81 local events worldwide. Running for 24-hours, individuals with language skills translated aspects of the platform into multiple languages with a total of 1181 projects modified. An amazing 221 new translators joined on the day. In addition, there was a live stream with talks, panel discussions, interviews, and sharing of tips and skills to help others learn how to translate. Volunteers are now planning the event for 2020!<br><br><a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">Stories of how people came together for WordPress Translation Day</a></p>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'395\' src=\'https://videopress.com/embed/aiWzATgh?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption><br>Interviews with some of the participants from a previous WordPress Translation Day giving a flavour of how volunteers developed this event.</figcaption></figure>\n\n\n\n<p><strong>Do_action days</strong> are WordPress events organized in local communities to help give charities their own online presence. Each event involves members of the local WordPress community, planning and building new websites for selected local organizations in one day. Some take place in a working day, others on weekends. </p>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'356\' src=\'https://videopress.com/embed/xVwMpeOd?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption>Volunteer <NAME>-Allen talking about how people came together for the first do_action in Europe to help local charities. </figcaption></figure>\n\n\n\n<p><a href=\"https://doaction.org\">Find the next do_action hackaton nearby your home town.</a></p>\n\n\n\n<h3>Improving digital skills through WordPress</h3>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'356\' src=\'https://videopress.com/embed/vwE1MunB?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption><br>In this video clip, Josepha talks about the Digital Divide and what current technological trends mean for it in the future. She explores what it takes to be literate in the digital landscape and how WordPress can be used to build and perfect those skills.</figcaption></figure>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a> for researching and writing this article and <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a> for her supporting work in this series.<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7353\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 20:58:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"WordPress 5.3 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option) […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3765:\"\n<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a> (zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F01%2F2019..10%2F08%2F2019&milestone=5.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">60 tickets have been closed</a> in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: <NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2019/10/people-of-wordpress-alice-orru/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2019 04:24:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7288\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet <NAME>, from Sardinia, Italy. <NAME> was born in Sardinia, an […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10122:\"\n<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet <NAME>, from Sardinia, Italy.</strong></h2>\n\n\n\n<p><NAME> was born in Sardinia, an island in the middle of the Mediterranean Sea. As a child, she dreamt of becoming a flight attendant, traveling the world, and speaking many foreign languages.</p>\n\n\n\n<p>Unable to meet the height requirements of her chosen profession, Orru ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life.”</p>\n\n\n\n<p>The unemployment rate in Sardinia is very high, a challenge shared throughout the surrounding islands. In addition to that, Alice wasn’t that keen on having the same job all her life, as her parents had.</p>\n\n\n\n<p>When Orru was 22 she moved to Siena, Tuscany, to finish her studies. That is when she created her first personal blog. The website was built on an Italian platform named Tiscali, which she later migrated to WordPress.com.</p>\n\n\n\n<p>After 2 years in Tuscany Orru moved to Strasbourg, France. She studied French and worked several jobs while living there. Her first serious job was in Milan – working 40 hours/week in the marketing department of a large, international company. She found herself surrounded by ambitious colleagues and a boss who constantly requested extra —unpaid— working hours per day.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?fit=632%2C422&ssl=1\" alt=\"<NAME>\" class=\"wp-image-7291\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?w=1920&ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption><NAME></figcaption></figure>\n\n\n\n<h2>Choices, choices, choices…</h2>\n\n\n\n<p>Alice gave up blogging because she wasn’t feeling inspired enough to write. She questioned whether she really wanted to do that job forever; working 10 hours per day under the neon lights of an office. It forced her to set aside her dreams for the time being, and for a while, she mainly lived for the weekends.</p>\n\n\n\n<p>Alice decided to leave the job and moved to Barcelona, Spain, all by herself, in 2012.</p>\n\n\n\n<p>After a few months of intense Spanish learning at the university, she found a job in an international clinic as a “Patient Coordinator.” Orru assisted international patients coming to Barcelona for their treatments. She acted as their translator, interpreter and administrative consultant. </p>\n\n\n\n<p>Patients came from Italy, France, England, Morocco, Senegal, and several other countries. Alice was so inspired by some of their stories, that she started to write again: She dusted off her WordPress blog and filled it with stories about her new life in Barcelona and some of the women she met at the clinic. “I was feeling stronger and more independent than ever,” Orru expressed.</p>\n\n\n\n<h2>Technical issues led to unexpected opportunities</h2>\n\n\n\n<p>In the summer of 2015, Alice was writing on her blog and got stuck with a technical problem. While she was searching through the WordPress.com documentation, she saw a pop-up in the bottom right corner of her screen. It was a staff member of Automattic, checking if she needed help. They chatted for a few minutes and the problem was solved. Alice left the chat with one question, though: how did that person on chat find a support job with WordPress?</p>\n\n\n\n<p>Alice found the official WordPress job page: <a href=\"http://jobs.wordpress.net/\"><strong>jobs.wordpress.net</strong></a> and noticed a job offer that caught her attention: WP Media, a French startup, was looking for a polyglot and remote customer service teammate for one of their plugins, WP Rocket. She read their requirements: fluency in English, French and possibly other languages, excellent experience with WordPress, and some coding skills.</p>\n\n\n\n<p>She knew she didn’t meet all the requirements, but could speak 4 languages, and she had a WordPress blog. She didn’t know anything about PHP, though. Orru had been a WordPress.com user for years and knew she was ready to learn more.</p>\n\n\n\n<p>Orru wrote a cover letter and sent her CV. A Skype interview was conducted and several days later she received the news that she had gotten the job! </p>\n\n\n\n<h2><strong>A steep learning curve</strong></h2>\n\n\n\n<p>The early days in her new job were intense. Alice felt inexperienced but was supported by her teammates. She started studying and reading everything about WordPress for beginners. Initially, she answered easy tickets from customers. All the while her teammates were sending useful material to read, setting up video-calls for 1 to 1 training, and encouraging her the entire time.</p>\n\n\n\n<p>Soon, Orru was replying to customers whose first language was either Spanish or Italian in their native language. This was much appreciated and resulted in several happy comments. Until that moment the plugin’s support had been offered only in English and French.</p>\n\n\n\n<h2><strong>Finding her way in the WordPress community</strong></h2>\n\n\n\n<p>At WordCamp Paris 2016, one of Alice’s teammates introduced her to how the WordPress community collaborated and kept in contact through Slack.</p>\n\n\n\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” he asked.</p>\n\n\n\n<p>Alice knew very little about contributing to WordPress. She had only been working for WP Media for 6 months and didn’t feel ready to dive into a new challenge and start also contributing to WordPress.</p>\n\n\n\n<p>Yet, curiosity led her to join both the local Italian and the global WordPress Community on Slack. For the first few months, she mainly observed what was happening the channels. Then, she attended WordCamp Milan and met some members of the Italian Polyglots team.</p>\n\n\n\n<p>It was love at first string! Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\"><strong>General Translation Editors</strong></a> (GTE) for Italy, taught her how to start contributing and translating, following the polyglots guidelines. She also told her about the Italian community’s big efforts to work together, consistently, to boost and grow WordPress related events in Italy.</p>\n\n\n\n<p>With her teammates’ encouragement, Orru applied to WordCamps as a speaker and gave her first talk in December 2016 at WordCamp Barcelona. After that, she both spoke at WordCamp Torino on April 2017 and at WordCamp Europe in 2017.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?fit=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-7292\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?w=1280&ssl=1 1280w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=768%2C432&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption><NAME> speaking at WordCamp Europe, in Paris, in 2017</figcaption></figure>\n\n\n\n<h2><strong>Dreams evolve, all the time!</strong></h2>\n\n\n\n<p>Orru knows that her experiences are not just due to luck. She used her previous skills and passions and adapted them to a new career and life path.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of ‘I can’t do it because I don’t know enough’. So that’s what I did. Without even realizing it, I started putting into reality the dream of the little girl who was born on an island and wanted to travel and speak different languages.WordPress made this possible. I’m now part of a big community, and I am proud of it.”</p><cite><NAME></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?w=1024&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 109px) 100vw, 109px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\"><NAME></a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress: September 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2019/10/the-month-in-wordpress-september-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 08:05:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7280\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month. WordPress 5.2.3 Security and Maintenance Release […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7586:\"\n<p>September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.3 Security and Maintenance Release</h2>\n\n\n\n<p>Early in September, <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">version 5.2.3 of WordPress was released</a> as a security and maintenance release. Sixty-two individuals contributed to its 29 fixes and enhancements.</p>\n\n\n\n<p>The security issues fixed in this release owe thanks to numerous people who disclosed them responsibly. You can read more about the vulnerability reporting process <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">in the Core handbook</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3 Enters Beta</h2>\n\n\n\n<p>WhileWordPress 5.3 is slated for release on November 12, it has already entered the beta phase with <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">the second beta release being made available</a> at the end of September. As this is a major release, it will feature a number of new features and enhancements, including <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">significant improvements to the block editor</a>, <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">updates to the Site Health component</a>, <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">new block APIs</a>, <a href=\"https://make.wordpress.org/core/2019/09/23/core-widgets-new-aria-current-attribute-in-wordpress-5-3/\">accessibility updates</a>, and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">much more</a>.</p>\n\n\n\n<p>You can test the 5.3 beta release by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a> on any WordPress site, although as this is software that is currently in development, we don’t recommend installing it on a live site.</p>\n\n\n\n<p>Want to get involved in building this release? <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Test the beta</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Date/Time Component Improvements</h2>\n\n\n\n<p>For over a year, contributors involved in <a href=\"https://make.wordpress.org/core/components/date-time/\">the Date/Time component</a> of WordPress Core have been working hard on the “wp_date” project. The goal of this project is to fix and streamline the way that Core handles times and dates throughout the platform.</p>\n\n\n\n<p>This ambitious project has seen incremental changes over the last few Core releases. The upcoming 5.3 release <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">will include the final and most significant changes</a> to the component, bringing much-needed stability to time handling in WordPress Core.</p>\n\n\n\n<p>Want to get involved in the Date/Time component of WordPress Core? <a href=\"https://make.wordpress.org/core/components/date-time/\">Learn more about it</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-datetime channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Theme Review Team Structure</h2>\n\n\n\n<p>After recent discussions around the goals of the Theme Review team, <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">some changes have been made</a> to the leadership structure of the team. The team leads are now ‘representatives’ of different areas of the work that they do. This flat structure allows for representatives to work in more loosely defined areas so they contribute to the team in more diverse ways, and helps the team to be more focused on setting and achieving their goals. The new structure is outlined <a href=\"https://make.wordpress.org/themes/handbook/about/members/\">in the team handbook</a>.</p>\n\n\n\n<p>Want to get involved in reviewing themes for WordPress? Follow <a href=\"https://make.wordpress.org/themes/\">the Theme Review team blog</a>, and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Default Theme: Twenty Twenty</h2>\n\n\n\n<p>The upcoming 5.3 release will also include <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">a new default theme for WordPress</a>, <em>Twenty Twenty</em>. This theme will have a strong focus on readability and accessibility while being optimized for the block editor that first shipped with WordPress 5.0.</p>\n\n\n\n<p>Development of <em>Twenty Twenty</em> has been going quickly, with <a href=\"https://make.wordpress.org/core/2019/09/30/twenty-twenty-update/\">a recent update</a> showing more of the design and layouts that you can expect when the theme is released with WordPress 5.3 in November.</p>\n\n\n\n<p>Want to get involved in building <em>Twenty Twenty</em>? You can <a href=\"https://github.com/WordPress/twentytwenty\">contribute on GitHub</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Gutenberg project has continued to see regular updates with <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">the latest version</a> set to be included in WordPress 5.3.</li><li>Members of the Community Team <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\">will run a workshop</a> to help event organizers create welcoming and diverse spaces for attendees. </li><li>There are some <a href=\"https://make.wordpress.org/updates/2019/09/20/wordpress-user-pro-survey-11-questions-and-a-script/\">proposed updates for the annual WordPress user survey</a> that need community feedback.</li><li><a href=\"https://make.wordpress.org/docs/2019/09/23/summary-for-helphub-meeting-23-september-2019/\">Work continues on the HelpHub project</a> where contributors are moving documentation to the updated support portal.</li><li>The Gutenberg team performed further usability tests in August, <a href=\"https://make.wordpress.org/test/2019/09/06/gutenberg-usability-testing-for-august-2019/\">with some interesting results</a>.</li><li><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\">Version 5.0 of BuddyPress was released</a> near the end of this month, featuring a new REST API, improved group management, and other enhancements.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2019 21:43:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7262\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"WordPress 5.3 Beta 2 is now available! This software is still in development, so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3037:\"\n<p>WordPress 5.3 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. </p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>, over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=09%2F24%2F2019..&milestone=5.3&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">45 tickets have been closed</a> since then. </p>\n\n\n\n<h2>Some highlights</h2>\n\n\n\n<ul><li>Work continues on the <strong>block editor</strong>.</li><li>Bugs fixed on<strong> Twenty Twenty</strong>.</li><li><strong>Accessibility</strong> bugs fixes and enhancements on the interface changes introduced with 5.3 beta 1:<ul><li>Iterate on the admin interface</li><li>Reduce potential backward compatibility issues</li><li>Improve consistency between admin screens and the block editor</li><li>Better text zoom management</li></ul></li><li>Support <code>rel=\"ugc\"</code> attribute value in comments (<a href=\"https://core.trac.wordpress.org/ticket/48022\">#48022</a>) – this particular ticket shows the WordPress project ability to integrate quick solutions to things that are changing unexpectedly – like Google new features.</li></ul>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7114\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"WordPress 5.3 Beta 1 is now available! This software is still in development, so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9121:\"\n<p>WordPress 5.3 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. Here are some of the big items to test, so we can find and resolve as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor: features and improvements</h2>\n\n\n\n<p>Twelve releases of the Gutenberg plugin are going to be merged into 5.3 which means there’s a long list of exciting new features. </p>\n\n\n\n<p>Here are just a few of them:</p>\n\n\n\n<ul><li>Group block and grouping interactions</li><li>Columns block improvements (width support + patterns)</li><li>Table block improvements (text alignment support, header/footer support, colors)</li><li>Gallery block improvements (reordering inline, caption support)</li><li>Separator block improvements (color support)</li><li>Latest Posts block improvements (support excerpt, content)</li><li>List block improvements (indent/outdent shortcuts, start value and reverse order support)</li><li>Button block improvements (support target, border radius)</li><li>Animations and micro interactions (moving blocks, dropdowns, and a number of small animations to improve the UX)</li><li>Accessibility Navigation Mode which will allow you to navigate with the keyboard between blocks without going into their content.</li><li>Block Style Variations API</li></ul>\n\n\n\n<p>Plus a number of other improvements, amongst them:</p>\n\n\n\n<ul><li>Data Module API improvements (useSelect/useEffect)</li><li>Inserter Help Panel</li><li>Extensibility: DocumentSettingsPanel</li><li>Snackbar notices</li><li>Typewriter Experience</li><li>Fix a number of Accessibility report issues</li></ul>\n\n\n\n<p>If you want to see all the features for each release, here are direct links to the release posts: <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">6.5</a>, <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">6.4</a>, <a href=\"https://make.wordpress.org/core/2019/08/14/whats-new-in-gutenberg-14-august/\">6.3</a>, <a href=\"https://make.wordpress.org/core/2019/07/31/whats-new-in-gutenberg-31-july/\">6.2</a>, <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\">6.1</a>, <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">6.0</a>, <a href=\"https://make.wordpress.org/core/2019/06/12/whats-new-in-gutenberg-12th-june/\">5.9</a>, <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">5.8</a>, <a href=\"https://make.wordpress.org/core/2019/05/15/whats-new-in-gutenberg-15th-may/\">5.7</a>, <a href=\"https://make.wordpress.org/core/2019/05/01/whats-new-in-gutenberg-1st-may/\">5.6</a>, <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">5.5</a>, and <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">5.4</a>.</p>\n\n\n\n<h3>Continuous effort on performance</h3>\n\n\n\n<p>The team working on the block editor managed to shave off 1.5 seconds of loading time for a particularly sizeable post (~ 36,000 words, ~ 1,000 blocks) since WordPress 5.2.</p>\n\n\n\n<h2>A new default theme: welcome Twenty Twenty</h2>\n\n\n\n<p>WordPress 5.3 introduces <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>, the latest default theme in our project history. </p>\n\n\n\n<p>This elegant new theme is based on the WordPress theme <a href=\"https://www.andersnoren.se/teman/chaplin-wordpress-theme/\">Chaplin</a> which was released on the WordPress.org theme directory earlier this summer. </p>\n\n\n\n<p>It includes full support for the block editor, empowering users to find the right design for their message.</p>\n\n\n\n<h2>Wait! There is more</h2>\n\n\n\n<p>5.3 is going to be a rich release with the inclusion of numerous enhancements to interactions and the interface.</p>\n\n\n\n<h2>Admin interface enhancements</h2>\n\n\n\n<p>Design and Accessibility teams worked together to port some parts of Gutenberg styles into the whole wp-admin interface. Both teams are going to iterate on these changes during the 5.3 beta cycle. These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more.</p>\n\n\n\n<h3>Big Images are coming to WordPress</h3>\n\n\n\n<p>Uploading non-optimized, high-resolution pictures from your smartphone isn’t a problem anymore. WordPress now supports resuming uploads when they fail as well as larger default image sizes. That way pictures you add from the block editor look their best no matter how people get to your site.</p>\n\n\n\n<h3>Automatic image rotation during upload</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the EXIF orientation. This feature was first proposed nine years ago. Never give up on your dreams to see your fixes land in WordPress!</p>\n\n\n\n<h3>Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it easier to identify and understand areas that may need troubleshooting on your site from the Tools -> Health Check screen.</p>\n\n\n\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to check that your admin email address is up to date when you log in as an administrator. This reduces the chance that you’ll get locked out of your site if you change your email address.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<h3>Time/Date component fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n\n\n\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&keywords=~php74&milestone=5.3&order=priority\">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test this beta release with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings. </p>\n\n\n\n<h3>Other Changes for Developers</h3>\n\n\n\n<ul><li>Multisite<ul><li>Filter sites by status<ul><li><a href=\"https://core.trac.wordpress.org/ticket/37392\">https://core.trac.wordpress.org/ticket/37392</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/37684\">https://core.trac.wordpress.org/ticket/37684</a> </li></ul></li><li>Save database version in site meta<ul><li><a href=\"https://core.trac.wordpress.org/ticket/41685\">https://core.trac.wordpress.org/ticket/41685</a> </li></ul></li></ul></li><li>Code modernization and PHP 7.4 support<ul><li><a href=\"https://core.trac.wordpress.org/ticket/47678\">https://core.trac.wordpress.org/ticket/47678</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/47783\">https://core.trac.wordpress.org/ticket/47783</a></li></ul></li><li>Toggle password view<ul><li><a href=\"https://core.trac.wordpress.org/ticket/42888\">https://core.trac.wordpress.org/ticket/42888</a></li></ul></li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">5.3 related developer notes</a> in the coming weeks detailing other changes that you should be aware of.</p>\n\n\n\n<h2>What’s next</h2>\n\n\n\n<p>There have been over 400 tickets fixed in WordPress 5.3 so far with numerous bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 18 Oct 2019 08:51:16 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 16 Oct 2019 20:03:21 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `3g7cp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(164, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1571431885', 'no'),
(165, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1571388685', 'no'),
(166, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1571431886', 'no');
INSERT INTO `3g7cp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(167, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Chilean News Publication El Soberano First to Launch on Newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9309:\"<div class=\"wp-block-image\"><img />El Soberano homepage on the Newspack platform.</div>\n\n\n\n<p>Nine months after the <a href=\"https://en.blog.wordpress.com/2019/01/14/newspack-by-wordpress-com/\">announcement of Newspack</a> by WordPress.com, the Chilean news site <a href=\"https://elsoberano.org\">El Soberano</a> became the first publication to launch on the new platform. On October 16, the small news team <a href=\"https://newspack.blog/2019/10/17/first-publisher-relaunches-using-newspack/\">relaunched with a fresh design</a> powered by the Newspack theme and its newsroom-focused plugins.</p>\n\n\n\n<p>Newspack is a project of Automattic, the parent company of WordPress.com. Its goal is to work with leaders in the news industry to create a platform that brings WordPress to more newsrooms. This year, the team behind Newspack has worked with several publications to address obstacles in journalism on the web.</p>\n\n\n\n<p>The Newspack team was primarily advised by <a href=\"https://newspack.blog/2019/04/03/newspack-chooses-12-publishers-new-platform/\">12 publications during their first phase</a>. Most of those publications are based in the U.S., but a few, such as El Soberano, are from other countries. The Daily Maverick from Johannesburg, South Africa, and Reveal from the Center for Investigative Reporting from California came on as advisers from the outset. However, they may also launch on Newspack sometime in the coming months.</p>\n\n\n\n<p>“We had 10 sites that we’re going to launch as soon as possible,” said <NAME>, head of Newspack Communications. “Of the 10, one dropped out as they changed publishers. So that leaves El Soberano and eight others, and those eight should launch in the coming weeks — certainly by year’s end. We’ve got the next few queued up.”</p>\n\n\n\n<p>During the initial phase, Beatty said the team was looking for small to medium-sized newsrooms that were covering local news or niche publications. The development hurdles would likely have been much higher starting with large organizations.</p>\n\n\n\n<p>“We wanted newsroom leaders who were willing to experiment and try something bold and different, knowing that there was a very real chance of growing pains,” said Beatty. “The partners in our pilot newsrooms have been incredibly helpful, patient, understanding and cheerful. I’m not sure we screened for all that in the application process, but it’s worked out quite well.”</p>\n\n\n\n<h2>El Soberano is a Fitting Launch Partner</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Content Director <NAME> (left) and Executive Director <NAME> (right).</div>\n\n\n\n<p>WordPress.com claims its “mission is to democratize publishing one website at a time.” El Soberano, based in Santiago, is a smaller news publication with three people on the current full-time staff. Their goal is to connect citizens with organizations that will help defend their rights. The publication covers social movements within the country and to be an outlet for independent journalism.</p>\n\n\n\n<p>“In our news outlet we believe that only the organized people are sovereign of their destiny,” said <NAME>, Content Director at El Soberano. “Our name ‘<NAME>’ is all about <em>el pueblo soberano</em>, the ‘sovereign people’ in English. For us, individual rights and freedoms are crucial. Then, things like a secular state and civil rights, such as the legalization of cannabis, homoparental adoption or the right to a safe abortion, are things we report about.”</p>\n\n\n\n<p>Bruna further defined the publication’s goals.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In El Soberano we defend an environment free of contamination; equal opportunities for women, ending the precariousness of their lives; a real pension system for citizens; sexual dissidence, to guarantee their equal rights and inclusion; a new development model based on innovation and knowledge; a secular state and freedom with critical thinking; urban planning and good housing solutions; consumers and a healthy and sustainable market and, finally, mechanisms that aim to create truly democratic constitutions for our countries.</p></blockquote>\n\n\n\n<p>El Soberano does not give space for other interest groups because such groups have the means to make their opinions publicly available. Instead, its mission is to report on social issues directly from citizens. “In them lies the power of decision regarding the direction that our democracies must take,” said Bruna.</p>\n\n\n\n<h2>Launching El Soberano with Newspack</h2>\n\n\n\n<p>As one of the first publications to launch with a new system, it’s tough to be a pioneer when a lot is riding on success. <NAME>, Executive Director of El Soberano, was ready to take the news website to the next level after three years.</p>\n\n\n\n<p>“When we decided to take the next step and transform El Soberano into a sustainable environment, it was a great achievement for us to be chosen for the Newspack pilot with other eleven news outlets,” said Arriagada. “We were the only news site in Spanish and from Latin America, so we felt very proud.”</p>\n\n\n\n<p>Arriagada has worked with the Newspack development team over the past six months to help guide them on what tools are needed to run a newsroom.</p>\n\n\n\n<p>The decision to apply for the Newspack pilot program was in part due to avoiding pitfalls they had seen with other digital media websites. “Friends with their websites hijacked by a former ‘friend’ developer when they try to move to a new platform, custom developments that only the author understood, huge invoices for maintenance hours, or even spending months working on a design that was not possible at the end,” said Arriagada. They wanted to avoid other problems such as taking too long to apply changes to the homepage in the fast-paced world of journalism where new stories should be front and center.</p>\n\n\n\n<p>Arriagada said such problems were resolved with Newspack and their team can concentrate on editorial and revenue generation.</p>\n\n\n\n<p>El Soberano originally launched on WordPress.com in January 2016. Arriagada said it was nearly impossible to find a good selection of templates that were built specifically to solve the problems of the news industry. “In Newspack we have the chance to combine different content blocks adapted to our needs, showing content in flexible ways,” said Arriagada. “Now we have tools designed to generate revenue with the experience and best practices from world-class digital media.”</p>\n\n\n\n<p>Arriagada called working with the Newspack team a “journey of discovery.” In the beginning, it wasn’t clear how the team would use the information they were collecting from El Soberano and other publications or how the team would resolve issues based on the information provided. Eventually, they received design proposals, which allowed them to get a feel for what they wanted and to further provide feedback to the Newspack team.</p>\n\n\n\n<p>“Later, we received the access to the platform where we were able to play around, putting things in order, creating and implementing what we were looking for,” said Arriagada. “More feedback, corrections, hopes, and dreams.”</p>\n\n\n\n<p>She said that working with the <a href=\"https://github.com/Automattic/newspack-blocks\">Content Blocks</a> system allowed her team to better create and assemble their homepage and articles. “But maybe the most interesting thing for us,” said Arriagada, “was that Newspack team and other news sites from the pilot program proposed things that we don’t consider for our site, such as an ultra-flexible donation system or workflow systems. We see a lot of power in that collaborative way to develop a product.”</p>\n\n\n\n<h2>The Future of Newspack</h2>\n\n\n\n<p>Newspack launched <a href=\"https://wptavern.com/newspack-opens-up-application-process-for-phase-two\">phase two of its program</a> in July, which sought to bring 50 more newsrooms to the platform. The new publications should be announced shortly.</p>\n\n\n\n<p>“Both the initial pilot group and this group of 50 (or so) are part of the one-year development period, which ends on February 29,” said Beatty. “We’re still determining what will happen on March 1. We’ll have a better sense of that when we start working with the 50 and see how quickly we can turn them around.”</p>\n\n\n\n<p>Like much of Automattic’s work, it is open source and freely available to the public. Newspack is a collection of packages to create a platform for newsrooms. Of note are the following repositories.</p>\n\n\n\n<ul><li><a href=\"https://github.com/Automattic/newspack-theme\">Newspack Theme</a></li><li><a href=\"https://github.com/Automattic/newspack-plugin\">Newspack Plugin</a></li><li><a href=\"https://github.com/Automattic/newspack-blocks\">Newspack Blocks</a></li></ul>\n\n\n\n<p>Developers can find all eight plugins from the <a href=\"https://github.com/Automattic?q=newspack\">Automattic GitHub page</a> if they want to give them a spin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2019 17:56:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.org blog: Empowering Generations of Digital Natives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8337:\"<p>Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens.</p>\n\n\n\n<p>No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to be an excellent digital citizen. If you’re not confident about your own tech skills, you may wonder how you can help younger generations become savvy digital citizens. But using technology responsibly is about more than just technical skills. By collaborating across generations, you can also strengthen all your family members’ skills, and offer a shared understanding of what the internet can provide and how to use it to help your neighborhoods and wider society. <br /></p>\n\n\n\n<h2>Taking Gen Z Beyond Digital Savvy</h2>\n\n\n\n<h3>Open up the dialogue</h3>\n\n\n\n<p>Even if you’re not fully confident in your own tech skills, you can help develop digital citizenship skills in others. If you feel comfortable during everyday conversation, you could describe a tech situation you have come across and ask family members if they have ever experienced something similar. You can give them a chance to share how they handled it or how it made them feel. This can help encourage them to think critically and to react with empathy. And being asked for advice can make them feel appreciated and empowered. But opening up the conversation can also be as simple as asking if they’ve seen anything online lately that they found interesting or wanted to talk about.</p>\n\n\n\n<h3>Share access to free and affordable training</h3>\n\n\n\n<p>Open source content management systems have made online publishing accessible to a more diverse group of people. Dozens of content platforms offer hands-on training at no or low cost. <a href=\"https://wordpress.tv/\">WordPress.tv</a>, <a href=\"https://www.linkedin.com/learning/topics/wordpress\">LinkedIn Learning</a>, and others have low-cost video libraries with thousands of recorded talks and workshops and the WordPress Training team have excellent downloadable lesson plans and materials. These platforms not only feature content that helps develop tech and content creation skills but also content around ethics, diversity and community building. </p>\n\n\n\n<h3>Find a sense of community and belonging</h3>\n\n\n\n<p>One of the disadvantages of increased digitalization is that <a href=\"https://www.theatlantic.com/magazine/archive/2017/09/has-the-smartphone-destroyed-a-generation/534198/\">younger generations and us all may spend less time hanging out in-person.</a> Digital time spent with others is no replacement for in-person interactions. The awareness and mutual understanding which comes from back and forth interaction is needed for positive interpersonal skills. This is hard to replace in digital communities and those skills can only be learned with lots of hands-on practice. </p>\n\n\n\n<h3>Learn the many benefits of volunteering </h3>\n\n\n\n<p>There are WordPress events across the world that provide a great place to learn new skills to share with your families and friends. Some work with schools and colleges to offer special events which are open to all ages. There are also plenty of small ways to volunteer with the WordPress project that can be done at home to practice new skills.</p>\n\n\n\n<p>In addition to attending events where you can learn skills and hang out with others with similar interests, the WordPress ecosystem offers countless opportunities to be actively involved. Professionals, hobbyists, and learners all make a difference by contributing to the ongoing creation of the WordPress platform. Together these people, who are known as contributors, form the <a href=\"https://make.wordpress.org/\">WordPress open source community.</a> </p>\n\n\n\n<h4>WordPress is created by volunteer contributors</h4>\n\n\n\n<p>Not only are these contributors creating an amazingly flexible platform for all to use, it is an environment where you can continue to improve your skills, both technical and interpersonal. Open-source software projects can introduce you to people you would otherwise not get the chance to meet, locally and internationally. If you have a zest for learning, and for finding others to connect with, WordPress has many ways to meet contributors in person!</p>\n\n\n\n<h4>WordPress events are organized by volunteers</h4>\n\n\n\n<p>WordPress community events are volunteer-run. This can be a great way to give back to the project and practice all sorts of skills. Talk to your local event about how you could get involved and if you would like to bring older teenagers and young adults with you. You will not need any pre-existing tech skills to attend these events but they are a great way to discover areas you might want to learn more about. </p>\n\n\n\n<h4>Contributor days offer a great opportunity to get involved</h4>\n\n\n\n<p>These events are specially designed to help you get involved in building the open-source WordPress platform. You can collaborate with other members of its community and find areas that are right for you to use and grow your skills. All of the tasks you will discover at an event can be continued at home and some are easy to get other family members involved in learning and adding in ideas. </p>\n\n\n\n<p>Contributors come from all sorts of backgrounds and locations, some may live near you and others thousands of miles away. Working alongside lots of different cultures and countries can open up new ideas for young people letting them learn new ways of doing things and discover different perspectives. All those different perspectives can cause misunderstandings. But being involved in a global learning community is a great way to practice communicating across cultural boundaries. </p>\n\n\n\n<h4>Getting involved can be rewarding in many (unexpected) ways</h4>\n\n\n\n<p>The most rewarding part of actively taking part in WordPress events is making budding friendships. New connections often turn into long-lasting friendships that are likely to continue for years to come, both online and offline. With a global community, these friendships can potentially lead to lots of international adventures too!</p>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Getting ready for the <a href=\"https://twitter.com/WordCampBTN?ref_src=twsrc%5Etfw\">@WordCampBTN</a>. I’ve got my 5kg backpack and one-way ticket to London in a few days <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f929.png\" alt=\"🤩\" class=\"wp-smiley\" /> What shall I do after? <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /> <a href=\"https://t.co/cdQqeyNWif\">pic.twitter.com/cdQqeyNWif</a></p>— <NAME> going to #WCKyiv (@sabrina_zeidan) <a href=\"https://twitter.com/sabrina_zeidan/status/1160265428473712640?ref_src=twsrc%5Etfw\">August 10, 2019</a></blockquote>\n\n\n\n<h3>Make our digital world safer and more inclusive</h3>\n\n\n\n<p>Befriending people from a wide variety of cultures and backgrounds can be an enriching experience in itself. It can also help you make us make more informed decisions. The more we interact with a diverse range of people, the more empathic we become. Some of the most valuable learning that can be offered to Gen Z (and probably to all of us at times) is that what we come across in fast-moving digital communities isn’t always the entire view. </p>\n\n\n\n<h2>All things considered….</h2>\n\n\n\n<p>Anyone who is a digital native may not need encouragement to obtain tech skills. But they may not be aware that digital communities are still communities and <a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">we need to use the same sorts of people skills for both offline and online locations</a>. Opening up conversations about situations they may experience online that may require them to (re)act responsibly, can encourage them to think critically and act with empathy. Compared to previous generations, digital natives spend substantially more time by themselves while using devices, so encouraging them to join real-life communities, such as WordPress, could be the first step to learning what it means to be a good digital citizen! </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: <NAME> Joins Automattic as Chief Financial Officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/mark-davies-joins-automattic-as-chief-financial-officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4364:\"<p>Automattic, the company behind WordPress.com, WooCommerce, and various other products, announced earlier today that <NAME> has joined the team as its Chief Financial Officer (CFO). This news comes fresh off the heels of Automattic’s <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\">acquisition of Tumblr</a> in August and a <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\">$300 million Series D investment</a> from Salesforce Ventures in September. The investment round gave the company a $3 billion valuation after the funding.</p>\n\n\n\n<p>Davies graduated from Western Washington University with a bachelor’s degree in accounting and earned his MBA in finance at Arizona State University. He has since worked for large companies in key roles. Prior to taking the position with Automattic, Davies served as the CFO at Vivint, a North American smart home technology company.</p>\n\n\n\n<p>Vivint was founded in 1999 and claims over $1 billion in annual revenue. In 2012, The Blackstone Group <a href=\"https://www.reuters.com/article/us-blackstone-acquisition/blackstone-buys-security-firm-vivint-for-over-2-billion-idUSBRE88I0LF20120919\">purchased the company for over $2 billion</a>. Davies came on board in 2013 and would have played a large role in growing the company’s annual revenue.</p>\n\n\n\n<p>Vivint announced on October 15 that Davies <a href=\"http://investors.vivint.com/press-releases/press-release-details/2019/Vivint-Smart-Home-Announces-CFO-Transition/default.aspx\">was leaving the company</a>. “Mark has created a talented and experienced finance team with a solid track record of growth and financial discipline,” said <NAME>, co-founder and CEO of Vivint Smart Home. “We thank him for his six years with the company and wish him the best in his next role.”</p>\n\n\n\n<p>Before joining Vivint, Davies served as president of global business services with Alcoa. He was also a member of the Alcoa Executive Council. Prior to that position, he spent 12 years at Dell Inc. in various roles. His most recent position was as the managing vice president of strategic programs. He earlier served as the CFO of Dell’s Global Consumer Group, which is a $14 billion enterprise with operations across the world. He held positions with Applied Materials and HP earlier in his career.</p>\n\n\n\n<p>Davies should play a key role in helping Automattic grow beyond its current levels of revenue. He has the credentials and experience to do so.</p>\n\n\n\n<p>“Automattic is creating the operating system for the web, from websites to ecommerce to social networks,” said <NAME>, founder and CEO of Automattic and co-founder of WordPress. “As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions and even tens of billions, as Mark has. I’m excited about working alongside such an experienced leader day-to-day to build one of the defining technology companies of this era.”</p>\n\n\n\n<p>Mullenweg if often cited saying that he would like to see WordPress have an 85% share of the web. Currently, WordPress runs over 34% of the top 10 million websites. Automattic would certainly play a role in pushing the platform toward that lofty goal. He and <NAME> <a href=\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\">discussed the dynamics of power</a> in open source communities and whether such a goal was healthy for the web earlier this month. In the discussion, Mullenweg clarified that 85% was a “trailing indicator” rather than a goal.</p>\n\n\n\n<p><NAME> served as Automattic’s CFO for the last seven years. He will continue working within the company, but there is no word on what that new role is. “I want to thank Stu for his significant contributions to Automattic during his seven and a half years as CFO,” said Mullenweg. “He built a talented finance team during a period of 10x growth in staff and revenue and played an essential role in the success of our company.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:49:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: New Automattic CFO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2019/10/new-automattic-cfo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:975:\"<p>As <a href=\"https://venturebeat.com/2019/10/16/automattic-nabs-vivint-cfo-to-chase-steep-revenue-growth/\">Venturebeat has picked up</a>, <NAME> will be leaving <a href=\"https://www.vivint.com/\">Vivint</a> and joining <a href=\"https://automattic.com/\">the merry band</a>. <span>Automattic is creating the operating system for the web, from <a href=\"https://wordpress.com/\">websites</a> to <a href=\"https://woocommerce.com/\">ecommerce</a> to <a href=\"https://tumblr.com/\">social networks</a>. As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions (Vivint) and even tens of billions (Alcoa and Dell), <a href=\"https://www.linkedin.com/in/mark-davies-14937a3/\">as Mark has</a>. I’m excited about working alongside such an experienced leader day-to-day to build what I hope will become one of the defining technology companies of the open web era.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:28:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: WordPress 5.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3142:\"<p>The first release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently scheduled to be released on <strong>November 12, 2019</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate: </p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC1.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<h2>What’s in WordPress 5.3?</h2>\n\n\n\n<p>WordPress 5.3 expands and refines the <strong>Block Editor</strong> introduced in WordPress 5.0 with <strong>new blocks, more intuitive interactions, and improved accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty</strong> theme giving the user more design flexibility and integration with the Block Editor. </p>\n\n\n\n<p>In addition, WordPress 5.3 allows developers to work with <strong>dates and timezones</strong> in a more reliable way and prepares the software to work with <strong>PHP 7.4</strong> to be release later this year. </p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme file to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The WordPress 5.3 Field Guide will be published within the next 24 hours with a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.3 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 21:18:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress.org blog: Responsible Participation In Online Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9139:\"<p>In our <a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">first article in this series</a>, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. People have been able to share their enthusiasm for hobbies, causes, products and much more. Through these different voices, we can encourage understanding, spark creativity, and create environments where collaboration can happen. But as we build more digital communities, it’s easy to forget that online safety is a group effort.</p>\n\n\n\n<p>Digital literacy is also part of being a good digital citizen, but it’s more than just being able to do basic actions with your mobile device. Digital literacy refers to the range of skills needed to do online research, set up web accounts, and find solutions for fixing devices among other things. But to be able to enjoy more of the digital world safely and responsibly – to be a good digital citizen – we need to be able to: </p>\n\n\n\n<ul><li><strong>navigate</strong> vast amounts of information without getting overwhelmed;</li><li><strong>evaluate</strong> a variety of perspectives;</li><li><strong>connect</strong> with people with respect and empathy;</li><li><strong>create</strong>, curate and share information.</li></ul>\n\n\n\n<p>We will need our offline analytical and social skills to make that happen. </p>\n\n\n\n<h2>Here’s some best practices our community members have shared!</h2>\n\n\n\n<h3>Online or offline, let empathy be your compass</h3>\n\n\n\n<p>The hardest part about all of this is the anonymity of online interactions. Without that face-to-face feedback of saying something mean to another person’s face, it’s easy to upset the people you’re trying to communicate with.</p>\n\n\n\n<p>In our daily lives in the offline world, comments may be more tempered and slow to anger in disagreements. Visual cues will help us determine how a remark is perceived. That, in turn, helps us adjust our behaviour Action, reaction, it’s how we learn best.</p>\n\n\n\n<p>Online, however, the experience is different. A keyboard does not protest if we type angry, hate-filled messages. A screen does not show any signs of being hurt. The lack of physical human presence combined with the anonymity of online alter-egos can be a formula for disrespectful and unfriendly behavior. It is good to remind ourselves that behind the avatars, nicknames and handles are real people. The same empathy we display in our in-person interactions should apply online as well.</p>\n\n\n\n<h3>Critically evaluate your sources </h3>\n\n\n\n<p>We all have times when we consume information with limited research and fact-checking. For some of us, it feels like there’s no time to research and compare sources when faced by a sea of online information. For others, there may be uncertainty about where to start and what to consider. But, without a bit of skepticism and analytical thinking, we run the risk of creating narrow or incorrect understanding of the world. With a little effort we can curb the sharing of fake news and biased information, particularly on topics that are new to us or that we’re not familiar with.</p>\n\n\n\n<p>Misinformation can spread like wildfire. Ask these simple questions to evaluate information online: </p>\n\n\n\n<ul><li>who is the source of the information?</li><li>is it plausible?</li><li>is the information fact or just an opinion?</li></ul>\n\n\n\n<h3>Own our content</h3>\n\n\n\n<p>In this day and age, it’s never been easier to just copy, paste and publish somebody else’s content. That doesn’t mean that we should! Publishing content that is not truly ‘yours’ in wording and tone of voice is unlikely to build a connection with the right audience. But, just as important, using someone else’s content may breach copyright and potentially intellectual property rights. </p>\n\n\n\n<p>For more information about intellectual property, <a href=\"https://www.wipo.int/about-ip/en/\">visit the World Intellectual Property Organization website</a>.</p>\n\n\n\n<h3>Don’t breeze past terms and conditions</h3>\n\n\n\n<p>Have you ever signed up for an online service (to help you distribute published content or accept payments) that was offered at no cost? In our fast-paced digital lives, we tend to want to breeze past terms and conditions or warning information and often miss important information about what will happen with our data. </p>\n\n\n\n<p>When we are given a contract on paper, we tend to read and re-read it, giving it a greater priority of our time. We may send it to other people for a second opinion or seek further review before signing. Remarkably, we rarely do that with online agreements. As a result, we may be putting our online privacy and security at risk. (WordPress uses a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/gpl-primer/\">GPL license</a>, and only collects usage data that we never share ever.).</p>\n\n\n\n<h3>Keep your website safe and healthy</h3>\n\n\n\n<p>If you would like to own your voice online, you also need to protect your reputation by securing your publishing platform. Websites can face security attacks. Hackers may seek to obtain access through insecure settings, outdated plugins and old software versions, and in extreme cases can try to scam your visitors. And leaking customer data, may even lead to legal consequences.</p>\n\n\n\n<p>On top of that, websites ‘flagged’ for security issues, can lead to high bounce rates and eventual loss of search rankings. This can all affect how search engines rate or even block your site. </p>\n\n\n\n<p>Good practices to keep your website safe include changing your safe password regularly, installing security software, an SSL certificate and keeping the core software, plugins and themes up to date. This will not guarantee that you will keep hackers out, so always keep several backups of your site, ideally both offline and online.</p>\n\n\n\n<p>That is just website security in a tiny nutshell. If you would like to learn more about keeping websites safe, you may want to check out some of these resources and many more videos at WordPress.tv.</p>\n\n\n\n<h2>Join in and help make the web a better place!</h2>\n\n\n\n<p>As part of Digital Citizenship Week, we would like to encourage you to learn and share skills with your colleagues, friends and family members. That way, we all become more informed of potential issues and how to reduce the risks. Together we can make it easier to navigate the web more effectively and securely!</p>\n\n\n\n<h3>Additional resources</h3>\n\n\n\n<h4>Site health check</h4>\n\n\n\n<p>WordPress 5.2 introduced pages in the admin interface to help users run health checks on their sites. They can be found under the Tools menu.</p>\n\n\n\n<h4>Security and SSL </h4>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/01/23/victor-santoyo-security-and-ssl-whats-the-difference/\">Video recording of a presentation by <NAME> about website security and SSL</a>.</li><li><a href=\"https://wordpress.tv/2017/08/31/jessica-gardner-ssl-what-it-is-how-to-do-it-and-why-you-should-care/\">Video recording of a presentation by <NAME> about why you should care about SSL and how to use it.</a></li><li><a href=\"https://wordpress.tv/2018/02/03/adam-warner-the-personal-and-website-security-mindset/\">Video recording of a presentation by <NAME> about the personal and website security mindset</a>.</li><li><a href=\"https://wordpress.tv/2018/07/05/miriam-schwab-content-security-policies-a-whole-new-way-of-securing-your-website-that-no-one-knows/\">Video recording of a presentation by <NAME> about content security policies</a>.</li><li><a href=\"https://en.support.wordpress.com/https-ssl/\">More information about SSL licenses on WordPress.com</a>.</li><li><a href=\"https://wordpress.org/plugins/search/SSL\">SSL plugins in the WordPress plugin repository</a>.</li></ul>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/muzhdekad/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>muzhdekad</a> <a href=\"https://profiles.wordpress.org/alexdenning/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>alexdenning</a>, <a href=\"https://profiles.wordpress.org/natashadrewnicki/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>natashadrewnicki</a>, <a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>, and <NAME>.</p>\n\n\n\n<p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:41:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: Kioken Blocks Partners with Gutenslider Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94895\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/kioken-blocks-partners-with-gutenslider-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2972:\"<p><a href=\"https://wordpress.org/plugins/kioken-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Kioken Blocks</a> creator <NAME> is teaming up with <NAME>, a Berlin-based developer and author of the <a href=\"https://wordpress.org/plugins/gutenslider/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenslider</a> plugin, to improve both products under the same roof. Oztaskiran said the partnership is not an acquisition but rather a unification of efforts that may eventually result in combining under the same name.</p>\n<p>“Our short term plan is to work on each other’s plugins to improve them according to our individual areas of expertise (me in design, marketing and user happiness, him in development and more technical stuff where I fall short), and then fully collaborate on plugins and themes,” Oztaskiran said.</p>\n<p>Gutenslider will remain a standalone plugin and will not be merged into Kioken Blocks. Both products will share similar resources in terms of functionality and support. The team plans to work on porting their products to be ready for WordPress.org’s upcoming Block Directory. Pro users of Kioken Blocks will be able to use the pro functionalities of Gutenslider and the team plans to make Gutenslider work like an extension to Kioken Blocks.</p>\n<p>“Gutenslider is pretty extensive at it is, and we thought it deserves to keep going as a standalone block and plugin, since it will be also available in the upcoming Block Directory for Gutenberg,” Oztaskiran said. “We will handle it as another product even though it is under the same roof as Kioken Blocks. We will continue adding new features to that block and improve the experience and Kioken Blocks will gain new blocks as well, but not as extensive as Gutenslider. There’s a possibility we could rename the block but that’s not the case at the moment.”</p>\n<p>Oztaskiran said he sees a lot of possibilities in Gutenslider, because it is not just an image and video slider but capable of adding different types of block content on top of the slides, such as paragraphs, headings, images, galleries, products, and more.</p>\n<p></p>\n<p>“Since the future of Gutenberg, as we see it, is going to be shaped around the Block Directory in the editor, our plan is focusing more blocks on that directory, with the Kioken Blocks as a builder on top of them as a plugin,” Oztaskiran said. “The final goal is building an ecosystem for WordPress users who have adopted the new editor – products, plugins and themes with a streamlined interface and experience. Dev partnerships are the first step of it.”</p>\n<p>Oztaskiran could not confirm if the product catalog will be combining under one company name. The final decision has not yet been made but he said it is likely that they will combine under the Kioken branding sometime in the future for marketing their WordPress products.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:03:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: WordPress 5.2.4 Release Addresses Several Security Issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordpress-5-2-4-release-addresses-several-security-issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2982:\"<p>The core WordPress team released version 5.2.4 of WordPress on October 14. The release addresses six security issues that were all privately reported through WordPress’ <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure procedure</a>.</p>\n\n\n\n<p>Like any security release, users should update immediately to the latest version to keep their sites secure.</p>\n\n\n\n<p>For those with automatic updates enabled, the new version is already rolling out to sites. All major branches of WordPress from version 3.7 to 5.2 received the new security fixes. If automatic updates are not enabled, users should update from the “Updates” screen under “Dashboard” in the WordPress admin. Otherwise, users can download WordPress from the <a href=\"https://wordpress.org/download/release-archive/\">release archive</a> and manually <a href=\"https://wordpress.org/support/article/updating-wordpress/\">run an update</a> to make sure their site is not at risk to what are now publicly-known vulnerabilities.</p>\n\n\n\n<p>In the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\">release announcement</a>, the following security issues were noted. They were corrected in all updated versions.</p>\n\n\n\n<ul><li>Stored cross-site scripting (XSS) could be added from the Customizer screen.</li><li>An issue that allowed stored XSS to inject JavaScript into <code><style></code> tags.</li><li>A bug that allowed unauthenticated posts to be viewed.</li><li>A method to use the <code>Vary: Origin</code> header to poison the cache of JSON <code>GET</code> requests (REST API).</li><li>A server-side request forgery (SSRF) with how URLs are validated.</li><li>Issues with referrer validation in the WordPress admin.</li></ul>\n\n\n\n<p>For developers who want to dive more into the code changes, the <a href=\"https://github.com/WordPress/wordpress-develop/compare/5.2.3…5.2.4\">changeset is available on GitHub</a>. Most changes should not affect plugins or themes. However, it is worth noting that the <code>static</code> query property was removed in this release. This removal affects both the <code>WP</code> and <code>WP_Query</code> classes. Developers should test their plugins against this version to make sure nothing is broken if their projects rely on this property. It is unlikely that many plugins rely on this query variable.</p>\n\n\n\n<p>WordPress 5.2.4 also includes a couple of other bug fixes. One <a href=\"https://core.trac.wordpress.org/changeset/46074\">removes a line of code</a> that makes an extra call to the <code>wp-sanitize.js</code> script in the script loader. The second fix <a href=\"https://core.trac.wordpress.org/changeset/46473\">addresses an issue</a> where the directory path wasn’t normalized on Windows systems, which led to the <code>wp_validate_redirect()</code> function removing the domain. This fixes a bug created in WordPress 5.2.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 15:52:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Meetup.com Introduces RSVP Fees for Members, WordPress Meetup Groups Unaffected by Pricing Changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/meetup-com-introduces-rsvp-fees-for-members-wordpress-meetup-groups-unaffected-by-pricing-changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4936:\"<p><a href=\"https://www.meetup.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Meetup</a>, a subsidiary of <a href=\"https://www.wework.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WeWork</a>, has announced a significant change to its pricing structure that will require members to pay a $2 fee in order to RSVP to events. The change will go into effect in October, ostensibly to distribute meetup costs more evenly between organizers and members. Some meetup organizers have received the following <a href=\"https://www.meetup.com/lp/paymentchanges?mpId=9038\" rel=\"noopener noreferrer\" target=\"_blank\">message</a>:</p>\n<blockquote><p>Meetup is always looking for ways to improve the experience for everyone in our community. One of the options we are currently exploring is whether we reduce cost for organizers and introduce a small fee for members.</p>\n<p>Beginning in October, members of select groups will be charged a small fee to reserve their spot at events. The event fee can be paid by members or organizers can cover the cost of events to make it free for members.</p></blockquote>\n<p>Organizers have the option to subsidize the $2 fee for members who RSVP so that it is entirely free for those who attend, but for popular groups this can become cost prohibitive. If 1,000 members RSVP for an event, the organizer would owe $2,000 to host it.</p>\n<p>The new pricing does not apply to non-profit groups or Pro Networks. WordPress community organizer <NAME> has <a href=\"https://twitter.com/andmiddleton/status/1183868783116472320\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed</a> that Meetup’s pricing changes will not affect groups that are part of the <a href=\"http://meetup.com/pro/wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">official WordPress chapter</a>. In 2018, <a href=\"https://make.wordpress.org/community/2019/04/18/2018-meetup-survey/\">WordPress had 691 meetup groups in 99 countries</a> with more than 106,000 members. According to Meetup.com, groups in the official chapter now number 780 in 2019. Middleton encouraged any outlying WordPress meetup groups to join the official chapter by <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/meetup-program-basics/\" rel=\"noopener noreferrer\" target=\"_blank\">submitting an application</a>.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/Screen-Shot-2019-10-14-at-9.28.03-PM.png?ssl=1\"><img /></a></p>\n<p>Meetup organizers and members who are affected by the pricing hike are unhappy about the changes. If the <a href=\"https://twitter.com/securestep9/status/1183798804371386369\" rel=\"noopener noreferrer\" target=\"_blank\">angry responses on Twitter</a> are any indication, people are leaving the platform in droves. Many organizers have announced that they are cancelling their subscriptions and looking to migrate to other platforms, such as <a href=\"https://kommunity.com/\" rel=\"noopener noreferrer\" target=\"_blank\"> Kommunity</a> or <a href=\"http://gettogether.community\" rel=\"noopener noreferrer\" target=\"_blank\">gettogether.community</a>, an open source alternative for managing local events.</p>\n<p>No competitor has the reach or brand recognition that Meetup has. Some groups will inevitably resort to using Eventbrite or Facebook to manage local meetups but neither of these are focused on promoting or growing these types of local events. Discovery and new meetup marketing are Meetup.com’s forte, but the platform has been fairly stagnant when it comes to improving the user experience.</p>\n<p>“This new move is quite onerous on users, and WP is lending support to the platform, which is proprietary and for-profit,” <NAME> <a href=\"https://twitter.com/mor10/status/1183853556647903232\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. “The optics and messaging are not great. When tools we use start to act in problematic ways, and we keep using them, we are tacitly agreeing to and even promoting that behavior even if it is not directly affecting us.”</p>\n<p><NAME> responded, acknowledging that WordPress’ use of certain platforms will sometimes involve compromise.</p>\n<p>“It’s true that WordPress contributors use various proprietary and for-profit tools to help us achieve various outreach and coordination goals,” Middleton said. “I think we strive for a balance between expediency and idealism, but of course any compromise results in a loss of one or the other.”</p>\n<p>Given the immediate backlash following Meetup.com’s announcement of the pricing changes, it would not be surprising to see the decision reversed. The company characterized the move as an “exploration” and plans to roll it out gradually to more meetups. For organizers who are looking to charge more on top of the fee to cover event costs, Meetup said this feature is coming soon.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 04:12:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: WordPress 5.2.4 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3666:\"<p><a href=\"https://wordpress.org/wordpress-5.2.4.zip\">WordPress 5.2.4</a> is now available! This security release fixes 6 security issues.<br /><br />WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\"><NAME></a> for finding an issue where stored XSS (cross-site scripting) could be added via the Customizer.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://codesymphony.co/\"><NAME></a> who found and disclosed a method of viewing unauthenticated posts.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://weston.ruter.net/\">Weston Ruter</a> for finding a way to create a stored XSS to inject Javascript into style tags.</li><li>Props to <NAME> for highlighting a method to poison the cache of JSON GET requests via the Vary: Origin header.</li><li>Props to <a href=\"http://eugenekolo.com/\"><NAME></a> who found a server-side request forgery in the way that URLs are validated.</li><li>Props to <NAME> of the WordPress Security Team who discovered issues related to referrer validation in the admin.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> the vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">5.2.4 documentation page</a>.<br /><br />WordPress 5.2.4 is a short-cycle security release. The next major release will be <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/5-3/\">version 5.3</a>.<br /><br />You can <a href=\"https://wordpress.org/wordpress-5.2.4.zip\">download WordPress 5.2.4</a> or visit <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates have already started to update automatically.<br /><br />In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.2.4:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\"><NAME></a>, <a href=\"https://profiles.wordpress.org/darthhexx\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/davidbinda\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iandunn\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeffpaul\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\"><NAME></a>, <a href=\"https://profiles.wordpress.org/obenland\"><NAME></a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\"><NAME></a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sstoqnov\"><NAME>yanov</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\"><NAME>en</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/whyisjake\"><NAME></a>, and <a href=\"https://profiles.wordpress.org/xknown\"><NAME></a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 21:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: AMP Project Joins OpenJS Foundation Incubation Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94906\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/amp-project-joins-openjs-foundation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5565:\"<p>Last week at the AMP Contributor Summit 2019 in New York City, the AMP project <a href=\"https://blog.amp.dev/2019/10/10/amp-is-joining-the-openjs-foundation-incubation-program/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> that it will be joining the <a href=\"https://openjsf.org\" rel=\"noopener noreferrer\" target=\"_blank\">OpenJS Foundation</a> incubation program. OpenJS was formed by a recent merger between the JS Foundation and the Node.js Foundation. AMP will join webpack, jQuery, Mocha, Node.js, ESLint, Grunt, and other open source projects that have OpenJS as their legal entity.</p>\n<p>Over the past year, AMP has been evolving its governance, moving to an open, consensus-seeking governance model in 2018, similar to the one <a href=\"https://nodejs.org/en/about/governance/\" rel=\"noopener noreferrer\" target=\"_blank\">adopted by the Node.js project</a>. One of the primary objectives of changing AMP’s governance and moving to a foundation was to foster a wider variety of contributions to the project and its technical and product roadmap. The incubation process will address AMP’s lack of contributor diversity and inclusion, as only past or current Google employees have commit rights on the code base.</p>\n<p>In recognition of how the project’s connection to Google has been problematic for adoption, the company is transferring AMP’s domains and trademarks to OpenJS, which is a vender-neutral organization, as outlined in the FAQs of OpenJS’ <a href=\"https://openjsf.org/blog/2019/10/10/openjs-foundation-welcomes-amp-project-to-help-improve-user-experience-on-the-web/\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>:</p>\n<blockquote><p>The OpenJS Foundation prides itself on vendor neutrality. Our vested interest resides solely in the ecosystem and the projects that contribute to that ecosystem. The OpenJS Foundation’s Cross Project Council is committed to supporting AMP in addressing these issues and ensure continued progress. During onboarding, AMP will also go through a multi-step process including adopting the OpenJS Foundation Code of Conduct, transferring domains and trademarks and more to graduation from incubation. AMP has made incredible strides by adopting a new governance model and by joining the OpenJS Foundation, they’ve made their intentions clear-AMP is committed to its vision of “A strong, user-first open web forever.”</p></blockquote>\n<p>Google is, however, a Platinum member of the OpenJS Foundation with annual dues of more than $250K per year. This membership guarantees the company direct participation in running the Foundation, a guaranteed board seat, and have a direct voice in budget and policy decisions. Google plans to maintain its team of employees who contribute full time to the AMP project.</p>\n<p>According to <a href=\"https://twitter.com/tobie\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a>, a member AMP’s advisory committee, one of the changes in moving to the OpenJS Foundation is AMP’s governance model will no longer be under the purview of Google and the ultimate goal is that Google will cease funding AMP directly. Instead, the company will direct funds through the foundation and work to remove the project’s Google dependencies for its infrastructure and tooling.</p>\n<h3>OpenJS Aims to Disentangle AMP Runtime from Google Cache</h3>\n<p>Gaining full infrastructural independence from Google will be no small feat for AMP contributors. The OpenJS Foundation’s announcement states that one of the long term goals in moving the project over is to disentangle the AMP runtime from the Google AMP Cache:</p>\n<blockquote><p>The end goal is to separate the AMP runtime from the Google AMP Cache. The Project is currently in the incubating stage and Project leaders are still determining the next steps. Ideally, hosting and deployment of the AMP runtime to the CDN would fall under the purview of the OpenJS Foundation, much like the foundation is handling other projects CDNs, such as the jQuery CDN. </p>\n<p>Untangling the runtime from the cache is a complex endeavor requiring significant investments of time and effort which would be planned and implemented in collaboration with the foundation and industry stakeholders during and after incubation.</p>\n<p>The OpenJS Foundation CPC is committed to having a long-term strategy in place to address this issue by the end of AMP’s incubation.</p></blockquote>\n<p>AMP is used on more than <a href=\"https://blog.amp.dev/2018/02/13/amps-new-horizons/\" rel=\"noopener noreferrer\" target=\"_blank\">30 million domains</a>. While many see this news as a positive move towards AMP’s eventual independence from Google, it doesn’t remove Google’s power to compel publishers to support the AMP standard by prioritizing AMP pages in search results. The news was received with skepticism by commenters on <a href=\"https://news.ycombinator.com/item?id=21242890\" rel=\"noopener noreferrer\" target=\"_blank\">Hacker News</a> and <a href=\"https://www.reddit.com/r/firefox/comments/dhgwlb/google_takes_amp_to_the_openjs_foundation/f3nxmq0/\" rel=\"noopener noreferrer\" target=\"_blank\">Reddit</a>, who deemed it “mostly meaningless window-dressing,” given how aggressively Google is pushing AMP in its search engine. AMP remains deeply controversial and moving it to a foundation that is heavily financially backed by Google is not enough to win over those who see it as Google’s attempt to shape the web for its own interests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 20:52:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Inside Look at GoDaddy’s Onboarding Process for Managed WordPress Hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8199:\"<p>The Tavern was provided access to test GoDaddy’s onboarding process, which is a part of its <a href=\"https://www.godaddy.com/offers/wordpress-hosting\">managed WordPress hosting</a> service. The company has revamped its system since we <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\">covered it in 2016</a>. The web host has had time to garner feedback since then and build an easy-to-use, headache-free way to launch WordPress sites.</p>\n\n\n\n<p>GoDaddy has been making waves in the WordPress community over the past few years and is quickly becoming one of the most dominant businesses in the ecosystem. Several of the company’s free WordPress themes consistently rank in the theme directory’s <a href=\"https://wordpress.org/themes/browse/popular/\">popular list</a>. Most of them are child themes of their popular <a href=\"https://wordpress.org/themes/primer/\">Primer theme</a>, which boasts 40,000+ active installs when not counting child theme installs. The real count should be north of 200,000.</p>\n\n\n\n<p>GoDaddy provided access to its Pro 5+ tier, which is its highest level of managed WordPress hosting. They have three lower tiers, each at different price points and with fewer features. Regular pricing for the tiers range between $9.99 and $34.99 per month. All levels include automatic backups, security scans, caching, and a slew of other features that are not always easy to figure out for new users.</p>\n\n\n\n<p><NAME> , GoDaddy’s head of WordPress Ecosystem & Community, said that their hosting service is growing quickly. “We were among the largest WordPress hosts when we launched our Managed WordPress Hosting in 2014,” he said. “Within 2 years our offering became the largest Managed WordPress platform in the world and remains so to this day.”</p>\n\n\n\n<p>GoDaddy launched its basic onboarding process later in 2014. They iterated on that version through 2018. “When Gutenberg went into core in WordPress 5.0 we saw an opportunity to redefine the WordPress onboarding and imagine what a ‘Gutenberg native’ experience would look like,” said Campbell. “Meaning, do what Gutenberg uniquely enables us to do over what was possible before–things that couldn’t be done by making existing themes Gutenberg ‘compatible’ we had to build from the ground up.”</p>\n\n\n\n<p>Based on my experience with the product, I would have no qualms about recommending it to new or even more experienced users. Even those with no experience running WordPress can create a new site without trouble in far less time than it’d take to go through the normal, more complex process.</p>\n\n\n\n<h2>How the Onboarding Process Works</h2>\n\n\n\n<p>One of the hardest things to know prior to signing up for a service and handing over your credit card number is how the service works. For this reason, I snagged a few screenshots and will do a quick walk-through of the process.</p>\n\n\n\n<p>Once you are ready to build your new website, the service provides a “Set up” link that sends you to GoDaddy’s onboarding screen. There are three paths to choose from. The first and most prominent is to view the available templates, which is the path that new users would choose. You can also manually set up WordPress or migrate an existing site.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>When selecting to view templates, the service presents over 50 options to choose from. The templates are further grouped by category based on the type of site a user might want to create. I chose the “Beckah J.” option because it worked for my idea of creating a life-wellness site.</p>\n\n\n\n<p>Each of the templates are created from GoDaddy’s new Go WordPress theme, which is currently <a href=\"https://github.com/godaddy-wordpress/go\">available via GitHub</a> and <a href=\"https://themes.trac.wordpress.org/ticket/75007\">awaiting review</a> for placement in the official WordPress theme directory.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After selecting a template, the process moves to a preview screen, which has buttons to switch between desktop, tablet, and mobile views. From that point, you can choose to use the template or go back and select another.</p>\n\n\n\n<p>This was the first point of the process that felt like it needed polishing. The preview frame was too small to get a feel for what the site would look like on desktop or tablet. This is a fixable problem. There’s plenty of screen real estate GoDaddy could use to make the preview nicer.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The next screen allows users to enter information about what type of site they want to run. Depending on which of the following checkboxes are ticked, GoDaddy will set up the site differently.</p>\n\n\n\n<ul><li>Provide information</li><li>Write blog posts</li><li>Display my portfolio</li><li>Sell physical goods to my customers</li><li>Sell digital goods to my customers to download</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After completing the final form, GoDaddy begins creating the site. The host sets up the site with one or more of several plugins based on the choices made in the previous form.</p>\n\n\n\n<p>The site installation process was slower than I had expected. We live in a fast-paced world where users expect things to happen nearly instantly. I admit I was antsy while waiting for the process to complete, in part because everything else happened so quickly. I wondered if I had time to grab a sandwich. In reality, it was much faster than manually setting up a WordPress install, but the setup did take a few minutes of waiting. My experience may have been an anomaly too. Sometimes these things take time.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<h2>A Website Ready to Go</h2>\n\n\n\n<p>Out of the box, my newly-created site had five custom pages ready based on my choices during the onboarding process.</p>\n\n\n\n<ul><li>Blog</li><li>Get in Touch</li><li>Home</li><li>My Account</li><li>My Cart</li></ul>\n\n\n\n<p>It was nice to see WooCommerce ready and a contact form set up with my email (handled by the CoBlocks plugin). I would rather have seen <code>contact</code>, <code>account</code>, and <code>cart</code> page slugs for their respective pages, but that’s a personal preference.</p>\n\n\n\n<p>The site came with seven plugins installed, five of which were activated.</p>\n\n\n\n<ul><li>Akismet (deactivated)</li><li>CoBlocks</li><li>Gravity Forms (deactivated)</li><li>Sucuri Security</li><li>WooCommerce</li><li>WP101 Video Tutorials</li><li>Yoast SEO</li></ul>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/coblocks/\">CoBlocks</a> along with theme integration for the block editor is what made the process of working with the website a breeze. GoDaddy <a href=\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\">acquired the CoBlocks plugin</a> in April. At the time, the plugin had 30,000+ active installs. It has since grown to 80,000+ in the few months since GoDaddy has taken over.</p>\n\n\n\n<h2>The Onboarding Process Provides a Nice User Experience</h2>\n\n\n\n<p>I’ve been critical of GoDaddy over the years. I am a customer of one of their other hosting products that launched years ago. That particular site is stuck on PHP 5.6, which has given me the feeling that the company is not focused on its older projects. However, Campbell said they are in the process of moving users on legacy hosting products to a newer platform.</p>\n\n\n\n<p>I’ve been cautiously optimistic about the work GoDaddy has been doing within the WordPress community. They’ve more than shown their commitment to the WordPress platform over the past few years.</p>\n\n\n\n<p>Despite a couple of minor hiccups, the onboarding process the hosting giant has built is one of the best experiences I have ever had launching a WordPress site. Even as an old pro, I’d consider using it for future projects, particularly when setting up sites for less tech-savvy family and friends.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 20:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.org blog: Becoming Better Digital Citizens Through Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7353\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7957:\"<p>The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as a tool for learners (regardless of age) to practice and model the essential parts of being a good digital citizen.</p>\n\n\n\n<h2>What is digital citizenship?</h2>\n\n\n\n<p>The digital landscape constantly changes and this affects the way we use the internet. New platforms emerge, people find different ways to spread information, communities form, grow and fade away every day. The concepts and practice of promoting civil discourse, critical thinking and safe use of the internet still remain central. And that is exactly what digital citizenship is about.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Put simply, digital citizenship is a lot like citizenship in any other community — the knowledge of how to engage with digital communities you’re part of in a way that is thoughtful, safe, and makes appropriate use of the technology.”</em></p><cite><em><NAME>, Executive Director WordPress Project</em></cite></blockquote>\n\n\n\n<h2>Who is a digital citizen?</h2>\n\n\n\n<p>Digital Citizenship is for all age groups. Anyone who uses the internet on a computer, mobile device or a TV is a digital citizen. You don’t have to be tech-savvy already, maybe you are taking your first steps with technology. Digital Citizenship Week is a chance to reflect together on our impact on the digital world. It can help us to make our consumption more considered and our interaction friendlier. It enables us to make a positive difference to those around us.</p>\n\n\n\n<p>All of us can strive (or learn) to become better digital citizens. It can be affected by the access those teaching have had to digital skills and good practice. Adult education classes and community tech hubs play a part in basic tech skill development. Unfortunately, these are not always accessible to those in less populated geographic locations. </p>\n\n\n\n<p>Open source communities like WordPress already make a difference in encouraging the principles of digital citizenship, from sharing tech skills to improving security knowledge. They give people an opportunity to learn alongside their peers and many of the resources are available regardless of location, resources, or skills.</p>\n\n\n\n<ul><li>WordPress Meetups — locally-based, informal learning sessions — typically take place monthly on weekday evenings. </li><li>WordCamps are city-based conferences that take place in cities worldwide. These events usually last 1-3 days and are organized and run by volunteers.</li><li>The talks are also recorded and made available on the free, online library <a href=\"https://wordpress.tv/\">WordPress.tv</a>. These can be watched from the comfort of your own home, office or during informal get-togethers.</li></ul>\n\n\n\n<h3>What can we do as part of the WordPress community?</h3>\n\n\n\n<p>Digital citizenship skills, like many other skills needed in this tech-focused world, should be kept up-to-date. Open source communities offer unparalleled opportunities to do this and are available in countries across the world. As part of our role as members of WordPress and other communities, we can pass on such skills to others. For instance by working alongside people who have had limited experience of digital skills. Or by finding new ways of making this knowledge sharing fun and accessible. </p>\n\n\n\n<p><strong>Here are just a few of the ways we do and can make an even greater difference:</strong></p>\n\n\n\n<ul><li>as bloggers and writers, we can be more aware of how to write content responsibly.</li><li>as designers, we can think more about how different people will view, understand and respond to the designs and visuals we create or use.</li><li>as developers, we can build systems that make it easier for all users to find information and accomplish their goals, to be secure while visiting our sites, and to model good security and practice.</li><li>as community members, through organizing events like <a href=\"https://www.meetup.com/pro/wordpress\">WordPress Meetups</a> and <a href=\"https://central.wordcamp.org\">WordCamps</a>, we are helping equip those who may not have had access to digital literacy or who lack the confidence to put it into place or share with their family and colleagues. Through these events, the online videos and other resources on <a href=\"https://wordpress.tv/\">WordPress.tv</a> and through the <a href=\"https://make.wordpress.org/\">Make WordPress teams</a>, we are already making a difference every day.</li><li>as individuals, the way we communicate in the community and listen to each other is equally important. This is a vital part of how we grow and model positive digital citizens. Through growing our positive digital skills and a better understanding of online etiquette and challenges, we can make our immediate and wider digital world a more positive and useful environment.</li><li>making it easier to document and share knowledge.</li><li>emphasizing how skills learned within the community can be used in other parts of our digital lives.</li><li>creating and becoming ambassadors for Digital Citizenship.</li></ul>\n\n\n\n<p>You can also get involved with specific events that have grown out of the wider WordPress project, championed by enthusiasts and those wanting to improve specific digital skills and bring wider benefits to society.</p>\n\n\n\n<h2>Community-driven Events</h2>\n\n\n\n<p>For example, <a href=\"https://wptranslationday.org\"><strong>WordPress Translation Day</strong></a> in 2019 had 81 local events worldwide. Running for 24-hours, individuals with language skills translated aspects of the platform into multiple languages with a total of 1181 projects modified. An amazing 221 new translators joined on the day. In addition, there was a live stream with talks, panel discussions, interviews, and sharing of tips and skills to help others learn how to translate. Volunteers are now planning the event for 2020!<br /><br /><a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">Stories of how people came together for WordPress Translation Day</a></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div><br />Interviews with some of the participants from a previous WordPress Translation Day giving a flavour of how volunteers developed this event.\n\n\n\n<p><strong>Do_action days</strong> are WordPress events organized in local communities to help give charities their own online presence. Each event involves members of the local WordPress community, planning and building new websites for selected local organizations in one day. Some take place in a working day, others on weekends. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>Volunteer <NAME>-Allen talking about how people came together for the first do_action in Europe to help local charities. \n\n\n\n<p><a href=\"https://doaction.org\">Find the next do_action hackaton nearby your home town.</a></p>\n\n\n\n<h3>Improving digital skills through WordPress</h3>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div><br />In this video clip, Josepha talks about the Digital Divide and what current technological trends mean for it in the future. She explores what it takes to be literate in the digital landscape and how WordPress can be used to build and perfect those skills.\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a> for researching and writing this article and <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a> for her supporting work in this series.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 07:31:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Edit Flow Future in Flux: Here Are 5 Alternative Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/edit-flow-future-in-flux-here-are-5-alternative-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10230:\"<p>After years of unpredictable development and support, it seemed the <a href=\"https://wordpress.org/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow</a> plugin had finally given up the ghost last week when an Automattic support representative <a href=\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed that it is no longer being actively developed</a> and recommended users switch to an alternative. <NAME>, head of WordPress.com VIP, has since <a href=\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin#comment-307821\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on our post to clarify the company’s intentions. He said Automattic is “in no way dropping support for Edit Flow:”</p>\n<blockquote><p>I’ll start by saying we are in no way dropping support for Edit Flow.</p>\n<p>We do see a difference between active feature development and maintenance updates to a plugin and this post tends to use these things interchangeably. It is correct that we are not currently pushing new features for Edit Flow. However, we are committed to maintaining this and other plugins so that those who depend on them are able to continue to do so.</p>\n<p>We face the same challenge that many in software face when it comes to supporting existing work while looking to the future and where to invest energy. I hope folks can understand the delicate balance here. We accept that we have fallen short at times when it comes to maintaining our existing work and appreciate the community holding us accountable.</p></blockquote>\n<p>Gernert also said the company’s VIP service is “seeing demand for WordPress in the enterprise market like never before.” The team is doubling down on its commitment to product development for this market and Gernert said outlook for Edit Flow and other Automattic plugins should improve:</p>\n<blockquote><p>VIP is more committed than ever to product development for the unique needs of this space. We have recently brought on a new Head of Product and Engineering. With the addition of this role, there is a commitment to focused product development and that includes ensuring key plugins like Edit Flow are maintained. Presently, that maintenance includes security updates, critical bugs, ensuring compatibility with new versions of WordPress, and directly supporting VIP customer use. Going forward the VIP Product and Engineering teams are committed to allocating time to regularly review and address issues and provide regular updates to the plugins. As we stabilize on maintenance, new feature development will pick up in areas where we see unique opportunity.</p></blockquote>\n<p>Users and developers seemed wary of this response, given the plugin’s history and more recent experiences of trying to contribute to its upkeep. <a href=\"https://gorillabunny.com/\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a>, a developer who was using Edit Flow on a client project, shared his experience trying to submit a PR for a bug fix.</p>\n<p>“It doesn’t seem like it’s even being given a level of attention at the most basic level of what could be considered ‘maintained,\'” Miller said. “This plugin was breaking functionality of other plugins on a client site.</p>\n<p>“I forked the repo, fixed the issue, and <a href=\"https://github.com/Automattic/Edit-Flow/pull/499\" rel=\"noopener noreferrer\" target=\"_blank\">submitted a PR</a> on January 26. After several months of periodic commenting and asking if anybody was even maintaining the repo, it finally got merged just last month. This doesn’t seem to me like a commitment to maintaining the plugin.”</p>\n<h3>What Does this Mean for Edit Flow Users?</h3>\n<p>If you’re not currently experiencing any critical bugs and you don’t require additional features beyond what it offers, Edit Flow may be still be a good option if Automattic is able to improve its maintenance. As previously predicted, any new features coming to this plugin will be those that “directly support VIP customer use.”</p>\n<p>Support for the plugin has not improved over the last week, so users may still be waiting for updates and fixes for awhile. The support forums indicate that multiple users continue to report issues with both the block editor and the classic editor, as well as conflicts with other plugins. This is likely why Automattic support representatives <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">recommend</a> users fork Edit Flow or switch to another solution.</p>\n<p>In support of smaller WordPress-powered publications that have an immediate need for editorial tools, we have compiled a list of alternatives that offer more frequent maintenance and support. Edit Flow’s primary features include a calendar, custom statuses, editorial comments, editorial metadata, notifications, story budget, and user groups. One of the alternatives below may be a suitable replacement, depending on which features are most important to your editorial workflow.</p>\n<h3>PublishPress</h3>\n<p><a href=\"https://wordpress.org/plugins/publishpress/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress</a> is the plugin that Automattic recommended as an alternative, and it is the closest one to matching Edit Flow’s features. It has 7,000 active installs and is used by companies, non-profits, educational institutions, magazines, newspapers, and blogs.</p>\n<p>In the free plugin, PublishPress provides an editorial calendar, notifications, editorial comments, custom statuses, content overview, and the ability to create custom metadata for posts. Its creators also offer commercial add-ons for things like a content checklist, Slack notifications, multiple authors, WooCommerce checklist, and more.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/publishpress-editorial-calendar.png?ssl=1\"><img /></a></p>\n<p>Since PublishPress is actually a fork of the Edit Flow plugin, users can <a href=\"https://publishpress.com/knowledge-base/migrate/\" rel=\"noopener noreferrer\" target=\"_blank\">migrate seamlessly from Edit Flow</a> without losing any data or settings using the plugin’s built-in migration utility.</p>\n<p>The PublishPress team has also created several other publishing plugins that may also be useful for different editorial needs, including <a href=\"https://wordpress.org/plugins/revisionary/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress Revisions</a>, <a href=\"https://wordpress.org/plugins/press-permit-core/\" rel=\"noopener noreferrer\" target=\"_blank\">PressPermit</a>, and <a href=\"https://wordpress.org/plugins/capability-manager-enhanced/\" rel=\"noopener noreferrer\" target=\"_blank\">Capability Manager Enhanced</a>.</p>\n<h3>Oasis Workflow</h3>\n<p><a href=\"https://wordpress.org/plugins/oasis-workflow/\">Oasis Workflow</a> is a plugin that allows site admins to create custom workflows for content review. It includes three process/task templates for assignment, review, and publishing actions with role-based routing. Workflows can be configured using a drag-and-drop interface. The plugin supports custom statuses, process history, task reassignment, due dates, and email reminders.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/oasis-workflow.png?ssl=1\"><img /></a></p>\n<p>Oasis Workflow is often used in healthcare, law and financial firms, universities, CPA firms, non-profits, news outlets, and other organizations that require a formal review process for publishing. A <a href=\"https://www.oasisworkflow.com/\" rel=\"noopener noreferrer\" target=\"_blank\">commercial version</a> of the plugin includes features like multiple workflows, auto submit, revisions for published content, with add-ons for editorial contextual comments, teams, groups, and more.</p>\n<h3>Nelio Content</h3>\n<p><a href=\"https://wordpress.org/plugins/nelio-content/\">Nelio Content</a> is a plugin with 6,000 active installs that includes an editorial calendar, editorial comments, tasks, and a content assistant. It also helps users schedule and automatically promote content on social networks. The plugin integrates relevant metrics from Google Analytics and social media accounts to assist users in promoting content.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/10/nelio-calendar.png?ssl=1\"><img /></a></p>\n<h3>Editorial Calendar</h3>\n<p>If the editorial calendar feature of Edit Flow is the only one you need, then the <a href=\"https://wordpress.org/plugins/editorial-calendar/\" rel=\"noopener noreferrer\" target=\"_blank\">Editorial Calendar</a> plugin might be a good alternative. It is used on more than 40,000 WordPress sites. The plugin provides an overview of when each post will be published, supports multiple authors, the ability to rearrange the schedule with drag-and-drop capabilities, and edit posts directly in the calendar.</p>\n<div class=\"embed-vimeo\"></div>\n<h3>WP Scheduled Posts</h3>\n<p><a href=\"https://wordpress.org/plugins/wp-scheduled-posts/\" rel=\"noopener noreferrer\" target=\"_blank\">WP Scheduled Posts</a> is another editorial calendar plugin that makes it easy to manage multiple authors from one place. It includes a visual calendar that can be manipulated via drag-and-drop, allowing users to easily add posts in the queue or create new posts inside the calendar. The plugin has a dashboard widget that displays post statuses for single or multiple authors.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/schedule-calendar.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" rel=\"noopener noreferrer\" target=\"_blank\">commercial version</a> of WP Scheduled Posts is targeted at the scheduling aspects of publishing. It offers an auto-scheduler where users can create rules to publish content automatically, as well as a missed schedule handler for automatically publishing posts that didn’t go out on schedule.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2019 21:21:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Meta Box Settings Page Extension Adds Support for Customizer, Network-Wide Settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/meta-box-settings-page-extension-adds-support-for-customizer-network-wide-settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3677:\"<p>The team behind the Meta Box plugin <a href=\"https://metabox.io/mb-settings-page-customizer-multisite\">updated their MB Settings Page add-on</a> to include support for the customizer and multisite. The customizer feature allows theme authors to integrate their custom settings into the customizer using framework-specific code. The multisite integration allows plugin authors to create a network settings page.</p>\n\n\n\n<p>The new features come on the heels of an <a href=\"https://metabox.io/meta-box-updates-better-performance-for-object-fields-mb-core-and-new-settings-page\">update to the core Meta Box plugin</a> that improves performance for users who have thousands of objects such as posts, terms, or users.</p>\n\n\n\n<p>The primary <a href=\"https://wordpress.org/plugins/meta-box/\">Meta Box</a> plugin originated as a custom fields framework for plugin and theme authors to create meta boxes. It has since grown to handle settings across taxonomies, user profiles, options pages, comment forms, and other areas that have form fields. The plugin offers a unifying API for developers to code over 40 field types without the need to learn each of the internal, field-related APIs in WordPress. At the moment, the plugin has over 400,000 active installations.</p>\n\n\n\n<p>Framework-style plugins such as Meta Box, Advanced Custom Fields, and others have filled a gap left open by core WordPress, which does not have a single API for handling fields. Over the years, developers have been left to code against dissimilar APIs and in different languages (PHP and JavaScript). This new feature from the Meta Box team will further extend its usefulness to a large number of developers who need to build out options for their users quickly and without learning additional APIs.</p>\n\n\n\n<p>The <a href=\"https://metabox.io/plugins/mb-settings-page/\">MB Settings Page add-on</a> is a premium extension that allows theme and plugin authors to create custom settings pages.</p>\n\n\n\n<p>The purpose of its customizer integration is for theme authors to map settings pages to customizer panels. However, the feature also allows for sections instead. All of the Meta Box’s field types carry over to the customizer except for its file and image field types due to limitations with how the customizer works. However, other file and image-related fields will handle most needs.</p>\n\n\n\n<p>Customizer integration isn’t an all-or-nothing thing. Developers can choose to keep both a custom settings page and panels in the customizer. They may also opt for one screen over the other based on their needs.</p>\n\n\n\n<p>The Meta Box team released a video showcasing the new customizer support with some mood music. <em>To be honest, I’m just chilling out and listening as I write this article. I’ve got a little head bob going too.</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>There is currently no word on whether the customizer fields support live preview. Based on the video, when a user updates an option, the preview panel performs a full page refresh. If live preview is not currently a feature, it would be a welcome one in a future update.</p>\n\n\n\n<p>Along with customizer integration, the MB Settings Page update provides the ability for developers to create network-wide settings for multisite. </p>\n\n\n\n<p>For some developers, network-wide settings are a bit of an afterthought or something they don’t consider at all for their plugins. Not all plugins need options on the network level. For those that do, authors can start using their custom Meta Box fields directly in the WordPress network admin with a single line of code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2019 17:58:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: WordPress 5.3 Improves Large Image Handling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/wordpress-5-3-improves-large-image-handling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2222:\"<p><a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\" rel=\"noopener noreferrer\">WordPress 5.3 Beta 3</a> was released this week and RC 1 is right around the corner, expected <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">October 15</a>. Core contributors have been publishing developer notes on new features landing in this release. One exciting enhancement that hasn’t received much attention yet is WordPress’ updated <a href=\"https://core.trac.wordpress.org/ticket/47873\" rel=\"noopener noreferrer\" target=\"_blank\">handling of large images</a>.</p>\n<p>Many WordPress users don’t consider the size of the images they are uploading to their sites, and modern smartphones are capable of producing very high quality images at very large file sizes. WordPress 5.3 will automatically detect large images (with a default threshold of 2560px) and generate a “web-optimized maximum size.” The threshold is used as the max-height and max-width value to scale down the image for use as the largest available size. A new <code>big_image_size_threshold</code> filter is available for developers who want to change the threshold size or disable the new feature altogether.</p>\n<p>WordPress will store the original image size so that it is still accessible and a new function is available for fetching its path: <code>wp_get_original_image_path()</code>. It is also used to generate all the image sub-sizes.</p>\n<p>More than two million WordPress users rely on plugins like Imsanity, Smushit, and EWWW Image Optimizer to optimize images. They often include additional features for bulk resizing previously uploaded images. WordPress’ new large image handling <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/#comment-37044\" rel=\"noopener noreferrer\" target=\"_blank\">should not interfere with image optimization plugins</a>, because it doesn’t affect the default settings that they often hook into and use to perform additional optimizations. The new core enhancement may be suitable to replace these plugins for some users who only require the bare minimum optimization on upload.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2019 19:46:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: MachoThemes, Modula Parent Company, Acquires Three Gallery Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/machothemes-modula-parent-company-acquires-three-gallery-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3453:\"<p><a href=\"https://www.machothemes.com\">MachoThemes</a>, the WordPress development company behind the <a href=\"https://wordpress.org/plugins/modula-best-grid-gallery/\">Modula Gallery</a> plugin, has acquired three gallery plugins. The company is currently rolling the first two of the plugins, <a href=\"https://wordpress.org/plugins/final-tiles-grid-gallery-lite/\">Final Tiles Grid Gallery Lite</a> and <a href=\"https://wordpress.org/plugins/photoblocks-grid-gallery/\">PhotoBlocks Grid Gallery</a>, into Modula. The third plugin, <a href=\"https://wordpress.org/plugins/everlightbox/\">EverLightbox</a>, will remain as a standalone project.</p>\n\n\n\n<p>The three plugins were purchased from Diego Imbriani of GreenTreeLabs. This was not MachoThemes’ first acquisition from Imbriani. They acquired the original Modula plugin from him over two years ago. From there, they grew the user base and continued developing the plugin.</p>\n\n\n\n<p>At this time, the exact details of the financial terms are not available to the public, but the transaction was in the range of low-to-mid 5-figures.</p>\n\n\n\n<p>The acquisition is a part of MachoThemes’ growth strategy for building a larger audience for their Modula plugin, which currently has over 60,000 active installations. “We liked their feature set, their quirkiness, and overall what they stand for,” said MachoThemes owner <NAME> of the reasons behind the acquisition.</p>\n\n\n\n<p>The merge of Final Tiles and PhotoBlocks affects over 34,000 plugin users. MachoThemes does not plan to continue supporting or developing them as individual plugins.</p>\n\n\n\n<p>The team is in the process of building a migration script to allow users to bring their existing galleries over to the Modula plugin. It is important that users migrate to Modula or another option because unsupported versions of their current plugins may not work in the future.</p>\n\n\n\n<p>Both plugins are similar to Modula by allowing users to create a gallery separately from the primary post content screen. However, the user interface and experience between all three plugins are nothing alike. Merging the plugins into Modula means that MachoThemes can work on a single interface and experience for users.</p>\n\n\n\n<p>Users may be worried about losing features when migrating to a new plugin. “Most of these options already exist in Modula, under a different name, setting or otherwise paid extension,” said Raiber. “There are a few interesting options in these plugins indeed, and they’ve already sparked new ideas for the team to experiment with.”</p>\n\n\n\n<p>Raiber said his company would reach out to users. “We’ll have videos, doc entries, and a dedicated page on wp-modula.com,” he said of the transition. The company plans to keep the plugins available for the next six months but may extend that period depending on how the transition for users is going.</p>\n\n\n\n<p>The EverLightbox plugin will remain separate for those who want a lightbox feature for the standard WordPress galleries but not a full gallery-editing plugin. “We will continue to support the plugin and work hard to ensure that all users have a smooth-sailing experience with the plugin just as we have been for all of the plugins we’ve been building,” said Raiber.</p>\n\n\n\n<p>The company plans to continue developing and supporting EverLightbox for the long term.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2019 19:21:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: ExpressionEngine Under New Ownership, Will Remain Open Source for Now\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94761\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/expressionengine-under-new-ownership-will-remain-open-source-for-now\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7521:\"<p>EllisLab founder <NAME> <a href=\"https://expressionengine.com/blog/expressionengine-has-a-new-owner\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> yesterday that ExpressionEngine has been acquired by Packet Tide, the parent company of <a href=\"https://eeharbor.com\" rel=\"noopener noreferrer\" target=\"_blank\">EEHarbor</a>, one of the most successful EE add-on providers and development agencies in the community. A year ago EllisLab, the developers of EE core, was acquired by Digital Locations but Ellis said the company ended up not being a good fit for the future of the CMS:</p>\n<blockquote><p>A year ago, EllisLab was acquired by Digital Locations in order to facilitate the transition of ExpressionEngine from a commercial software application to an open source one. That transition was successful, but it became apparent in recent months that ExpressionEngine didn’t fit perfectly within the goals of Digital Locations, as it seeks to build a business in Artificial Intelligence.</p>\n<p>We decided that what was best for ExpressionEngine was to seek a new owner, one that could devote all the resources necessary for ExpressionEngine to flourish.</p></blockquote>\n<p>In November 2018, <a href=\"https://wptavern.com/expressionengine-goes-open-source-after-16-years\" rel=\"noopener noreferrer\" target=\"_blank\">EE went open source</a>, adopting the <a href=\"https://expressionengine.com/license\" rel=\"noopener noreferrer\" target=\"_blank\">Apache License Version 2.0</a>, after 16 years of being locked down under restrictive licensing. EE’s dwindling community of product developers and site builders were hopeful that the new open source licensing would expand EE’s reach and bring back developers who had migrated to alternatives like <a href=\"https://craftcms.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Craft</a>.</p>\n<p>After the acquisition announcement, the EE community was concerned whether or not it will remain free and open source. Although the software’s homepage sports the tagline “The Open-Source CMS that supports YOU all the way,” EE’s new owners have left the option open for reconsidering its licensing further down the road. They plan to stick with the open source license for the time being. When asked directly in the <a href=\"https://t.co/gjVhmpqqn1?amp=1\" rel=\"noopener noreferrer\" target=\"_blank\">EE Slack</a>, EE Harbor developer <a href=\"https://twitter.com/TomJaeger\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> said, “That is our plan for now, although at this stage we’re looking at everything with a fresh eye towards what’s best.” The company has <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">published a list of FAQs</a> with the same information.</p>\n<p><NAME>, a developer at <a href=\"https://boldminded.com/\" rel=\"noopener noreferrer\" target=\"_blank\">BoldMinded</a>, who has created more than 36 add-ons for EE, and is also on the EECA (ExpressionEngine Community Association) board that organizes EEConf, said he has confirmed that EEHarbor plans to keep the CMS open source.</p>\n<p>“The board spoke to new ownership just today actually, and they have every intention of keeping it open source,” Litzinger said. “I can’t speak for the whole community, but since going open source my add-on sales have not significantly increased or decreased.</p>\n<p>“As with any open source project there has been feedback and pull requests from the community, but nothing significant (e.g. large features). The community as a whole is pretty excited about the new ownership and ExpressionEngine’s future though.”</p>\n<p><NAME>, founder of <a href=\"https://fostermade.co\" rel=\"noopener noreferrer\" target=\"_blank\">Foster Made</a>, a company that also sells ExpressionEngine add-ons, said he has not seen a significant direct change in the economics of EE since the project went open source.</p>\n<p>“I think the real question here is what business model best enables the growth and continued support of the CMS itself, and how is that balanced against the growth of the community,” Maida said. “As a business that offers some add-ons for ExpressionEngine, we need to see both continued growth in ExpressionEngine as a platform and growth in the community, so I think the license model that best enables that matters.”</p>\n<p><NAME>, president of <a href=\"https://www.hopstudios.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Hop Studios</a>, has been working with EE since its early days. As someone who is deeply invested in the EE community, he said that he doesn’t think a prospective licensing change would impact the broader community as much as having a clear vision for the CMS’s future.</p>\n<p>“I think a licensing change per se wouldn’t be good or bad, but a well-articulated and communicated vision for the CMS’s future would be really helpful for a community that feels unsure at the moment,” Smith said.</p>\n<p>“I do think that the exposure that going open source gave into the development process overall at EllisLab was an improvement, and that new features and bug fixes were getting added at a decent pace.”</p>\n<p>EE may have changed its licensing to be open source but it is not a community-led project where major decisions happen by a consensus of a diverse representation of community leadership.</p>\n<p>“I didn’t observe the community gaining (or applying?) much input or influence over the future of ExpressionEngine in the past year,” Smith said. “I think there was still a feeling of ‘EE is EllisLab’s project’ — and that this change of ownership might shake the community’s devs out of that default assumption, which would be a good thing.”</p>\n<p>In the <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">FAQs EEHarbor published today</a>, the company confirmed that it will be developing new features and that it will consider feedback submitted from the community:</p>\n<blockquote><p>While we are in the early stages of long-term strategic planning, we already have a lot of thoughts and ideas around where to take ExpressionEngine based on our own experience. However, it’s not just about us. We are also very interested in collaborating with the ExpressionEngine community. Everyone is more than welcome to submit feedback for us to review as we consider the future of ExpressionEngine</p></blockquote>\n<p>After 16 years under a restrictive license, EE is an interesting example of a newly open source, corporate-led project with a community that is rediscovering its place while ownership of the software is transferred from one company to another. Responses to the acquisition are mostly positive, and users seem excited about Packet Tide’s first planned initiative – finishing development on ExpressionEngine 6.0. Ellis described this upcoming release as “an exciting new version we’ve been quietly working on behind the scenes.” It will include a new control panel with a dark theme, along with add-on and service integrations inside the app.</p>\n<p>EEHarbor does not plan to merge its add-ons with ExpressionEngine core at this time, and the statement published today reiterates the company’s commitment to “keep the add-on marketplace fair and open to all developers.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2019 23:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Rosa 2 Restaurant Theme Provides a Frustrating and Satisfying Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94769\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/rosa-2-restaurant-theme-provides-a-frustrating-and-satisfying-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9220:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://pixelgrade.com/themes/restaurants/rosa2/\">Rosa 2</a> is the sequel to Pixelgrade’s best-selling theme, Rosa. The new theme re-imagines its previous incarnation in the context of the block editor (Gutenberg). I was provided a copy of the theme for free to test and provide my thoughts. </p>\n\n\n\n<p>The theme sells for $75/year, or you can pay a one-time fee of $95 for lifetime access. The <a href=\"https://pixelgrade.com/blog/product/meet-rosa-2/\">product launch post</a> could make anyone excited about this theme, but is it worth it?</p>\n\n\n\n<p><strong>TLDR;</strong> Rosa 2 made for a satisfying experience when building restaurant-style pages. However, the early learning curve and basic setup were frustrating. It also lacks some of the polish I’d expect at a premium price.</p>\n\n\n\n<h2>A Rundown of the Issues</h2>\n\n\n\n<p>Before I dive into the good things about Rosa 2 (and there are some nice things about this theme), let me dive into the frustrating aspects. There were so many pain points that I nearly gave up on the theme several times. However, I soldiered on in the hopes of understanding why this theme might be worth using.</p>\n\n\n\n<h3>Install the Required Plugins First</h3>\n\n\n\n<p>Let me save you some time right now. When the theme says that it requires the <a href=\"https://wordpress.org/plugins/customify/\">Customify</a> and <a href=\"https://wordpress.org/plugins/nova-blocks/\">Nova Blocks</a> plugins, it truly requires them. Otherwise, the theme looks and behaves nothing like the demo or screenshots. It may as well not be the same theme.</p>\n\n\n\n<p>When first activating the theme, the front page of your website will become a completely white screen. It is not the dreaded <a href=\"https://wordpress.org/support/article/common-wordpress-errors/#the-white-screen-of-death\">White Screen of Death</a> caused by an error. Instead, the theme is forcibly hiding the content with custom styles.</p>\n\n\n\n<p><em>Why?</em> Yeah, good question. </p>\n\n\n\n<p>I see no reason to do so. Outside of changing some code (which I did), users must activate the plugins to make their content appear. There is no technical reason this should be the case when using this theme.</p>\n\n\n\n<p>There should be no path in which a user installs a theme only to have their content disappear.</p>\n\n\n\n<p>I get it. I was told these were required plugins. The theme even provides easy installation and activation links via the TGM Plugin Activation script. I also get that WordPress lacks any sort of real dependency system for handling this feature. That doesn’t make it any less of a poor user experience.</p>\n\n\n\n<p>As a developer, I thought I’d trick the system and test the theme without those plugins installed. I wanted to see what the theme looked like out of the box, which you can see in the following screenshot.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Oh, and that big block of category links in the above screenshot, it never goes away. It just sits there on your blog posts page. It is hard-coded in the posts page template (<code>home.php</code>). Rosa 2 is billed as a restaurant theme, so it might be acceptable if you don’t plan on running a blog.</p>\n\n\n\n<h3>Header and Nav Problems</h3>\n\n\n\n<p>The default header looks nothing like the screenshots, demo, or video for the theme. After nearly two hours of using the theme, I was ready to throw in the towel and rule this theme out as a lost cause. Not being able to get the basic nav menu set up for the theme was an exercise in self-punishment that I wouldn’t wish on anyone.</p>\n\n\n\n<p>It turns out that the Nova Blocks plugin really is required. <em>Did I mention that you should install the required plugins first?</em></p>\n\n\n\n<h3>Stretched images</h3>\n\n\n\n<p>On blog and archive pages, expect stretched featured images that attempt to fill out the box next to the excerpt for existing posts. There doesn’t seem to be any remedy to this outside of uploading new images. </p>\n\n\n\n<p>The theme uses the standard <code>post-thumbnail</code> size but does not define this size in the code. For those unfamiliar with the technical aspects when using this specific size, the theme should ideally define it via the <code>set_post_thumbnail_size()</code> function.</p>\n\n\n\n<h3>Sticky header</h3>\n\n\n\n<p>The large sticky header gave me a gut-wrenching feeling that walls were closing in on me. I became light-headed and dizzy. I found it tough to breathe. This is not hyperbole. I’m dead serious.</p>\n\n\n\n<p>On a personal note, I’ve had some issues with claustrophobia for the last couple of years. I first had this feeling after being stuck indoors for two weeks while watching over one of my cats who had surgery. I typically work from the porch where I can get fresh air, but that was one of the worst periods of my life. </p>\n\n\n\n<p>Since then, I often get this same feeling when sites have large sticky headers. It feels like the walls are closing down. <em>I wonder if others have similar issues.</em></p>\n\n\n\n<p>This feeling could be alleviated if the theme minimized the sticky-header height while scrolling down the page. Fortunately, the theme allows users to choose a static header, which I strongly suggest using. There are some other spacing and sizing options for the header area, which can help shrink some of this down.</p>\n\n\n\n<h2>Where the Theme Shines</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/rosa2-custom-page.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>If there is one thing this theme does well, it is making it simple to create pages for a restaurant via the Nova Blocks plugin. Within minutes of creating a custom page, I had a restaurant-style page set up and ready to go.</p>\n\n\n\n<p>When coupled with Nova Blocks, the theme beautifully handles the process of creating custom pages with numerous unique outcomes. The integration with the plugin is brilliant. Each block has custom demo content that you can easily modify.</p>\n\n\n\n<p>Some of the names of the blocks and block options were cutesy and fun, such as “Hero of the Galaxy,” but they became a slight nuisance when wanting to quickly figure out the purpose of a block. I could see some users becoming annoyed at the names, and they might not be ideal for some professional settings. They were kind of fun though. I have mixed feelings about them.</p>\n\n\n\n<h2>How Does the Theme Handle Gutenberg?</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Rosa 2 is a theme primarily built for the block editor. It wonderfully handled core block output in my tests. </p>\n\n\n\n<p>When using Gutenberg-ready themes, I view the pullquote block as sort of the theme designer’s signature. It is one of those blocks where designers can have a lot of fun and put a unique spin on the display. I’m a fan of the pullquote style in this theme (pictured above).</p>\n\n\n\n<p>On the whole, it works well. When coupled with Nova Blocks, you have a lot of power at your disposal.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>Rosa 2 is lightweight in terms of custom code. Nearly all of the functionality is within the accompanying plugins. Because this is a theme review, I didn’t dive into the plugin code.</p>\n\n\n\n<p>From a purely technical standpoint, the theme does most things according to standards.</p>\n\n\n\n<p>There are some things I’d change from an architectural standpoint. For example, the file for its Customify plugin integration is over 1,100 lines of code. I would break that down to more digestible bits, which would help with long-term maintenance and bug hunting.</p>\n\n\n\n<p>Some of the editor-related JavaScript code could be more efficient. Repeated patterns should be grouped together to make the code smaller. The editor JavaScript file is not large, but every byte counts in a world where developers assume everyone is running on Gigabit internet connections.</p>\n\n\n\n<p>The primary stylesheet is 173 kb, which is <em>OMGBBQ</em> large, especially when you top it off with 100s of kb coming from the stylesheets and scripts loaded by Nova Blocks plugin. Unless you’re a user who is heavily optimizing your site, you can count on some slow page loads.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>I’d only recommend this theme to people who have more patience than me. While I didn’t follow instructions right off the bat (as a reviewer, I’m trying to push limits and break things), the theme did have some pain points that simply made for a frustrating process.</p>\n\n\n\n<p>I’m in the camp of people who believes themes should work out of the box. This theme doesn’t work without some setup. You’ll need to put in some legwork to get it going. However, once you make it over the initial hump, you can build some beautiful page layouts.</p>\n\n\n\n<p>I suggest using it strictly for its defined purpose of building a restaurant website. The typography is designed well enough for blogging, but the overall theme isn’t well-suited to it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2019 19:47:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3723:\"<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a> (zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F01%2F2019..10%2F08%2F2019&milestone=5.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">60 tickets have been closed</a> in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 20:58:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: The Evolution of Anonymity in the Internet Age\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/the-evolution-of-anonymity-in-the-internet-age\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9328:\"<p>As a child of the ’90s, I was growing up in one of the largest transitional periods in human history. The Internet Age was upon us.</p>\n\n\n\n<p>I was born and raised in a small community in rural Alabama. The country. The backwoods. To give you an idea of how small the place was, my entire school (grades K-12) had around 800 students. While I was fortunate enough that my family could afford to travel for vacation almost every year, I mostly lived a sheltered life.</p>\n\n\n\n<p>I rode bikes down the dirt road and explored neighbors’ hunting lands with my best friend in the summer. We’d get up at dawn, grab some provisions, and cycle out for the day’s adventure. We’d race old lawnmowers, build unstable treehouses, and swim in what were likely snake-infested creeks. We’d camp out under the stars. Our parents never asked where we were. As long as we showed up for supper and took a bath a few times each week to scrub the dirt off, we were generally left up to our own imaginations.</p>\n\n\n\n<p>There was another aspect of growing up in the ’90s, and that was video games. At 16, I spent most of the summer in the fields picking watermelons or throwing bales of hay onto a trailer. It was hard work, but it kept me supplied with whatever video games I wanted. When not out in the wild, my best friend and I would be glued to a 19-inch television playing the Nintendo 64 (and later the Sega Dreamcast).</p>\n\n\n\n<p>I lived in this somewhat country-bumpkin bubble with no idea of the outside world.</p>\n\n\n\n<p>Then came the explosion of the internet. My family never had a computer at home. That left me to access this wonderful new thing during school hours or at a friend’s house.</p>\n\n\n\n<p>Like pretty much every teen boy I knew at the time, the best use of the internet was logging into adult chatrooms and hoping to chat with a woman. Yeah, the average teenage boy wasn’t doing anything productive with the internet, even in the ’90s. Big surprise there. This isn’t groundbreaking news, folks. Move along.</p>\n\n\n\n<p>There were other uses of chatrooms, such as finding other gamers. That’s where my original love of the internet began. I could talk to people across the world about Nintendo and Sega games. I even started getting pen-pals where we would exchange weekly emails.</p>\n\n\n\n<p>At the time, there was this common saying among adults, “You don’t know who you’re talking to on that thing. It could be a fat, 40-year-old man living in his parents’ basement.” <em>Hey, why you throwin’ shade at heavyset men? Just tell me it could be a psycho.</em></p>\n\n\n\n<p>My parents drilled this lesson into my brain. School teachers did the same. Like my peers at the time, I was required to use a pseudonym when going online. The thought of using a real name was almost unheard of. As teens, we’d joke about the basement-dwelling bogeyman who our parents and teachers warned us against. It was all a game to us despite there being legitimate fears, particularly now that I have 20 years of hindsight at my disposal.</p>\n\n\n\n<p>That’s where I came up with my username of <a href=\"https://profiles.wordpress.org/greenshady\">greenshady</a>, by the way. One day I may even tell what it means. One day. For now, I’ll keep all of you who have asked about it over the years guessing.</p>\n\n\n\n<p>I used that username for years because there was always this little voice in the back of my mind telling me to remain anonymous.</p>\n\n\n\n<h2>Anonymity in the Age of Transparency</h2>\n\n\n\n<p>I’m not exactly sure at what point attitudes toward anonymity changed. Social networks likely played a huge role transitioning us from silly screen names to using our real-life names on the internet. Otherwise, it’d be harder for our real-life friends to find us on Facebook, Twitter, and elsewhere.</p>\n\n\n\n<p>This prevailing attitude toward anonymity didn’t limit itself to social networks. More and more, people shunned the idea of anonymous posts or comments on blogs and elsewhere. </p>\n\n\n\n<p>There’s likely some form of stardom attached to using real names as well. Everyone is just one video, one blog post, or one tweetstorm away from their 15 minutes in the spotlight.</p>\n\n\n\n<p>Even within the WordPress community over the years, I’ve witnessed a shift toward automatically disliking anonymous comments. The prevailing idea is that a person’s contribution to a discussion has less worth if it’s hidden behind the veil of anonymity, that one’s opinions are invalid if they cannot be backed up by a real name. </p>\n\n\n\n<p>It opens the person to attack not based on their ideas but on how they choose to present themselves online. This is a part of the culture that is unhealthy.</p>\n\n\n\n<p>In a time when you can effectively be shut out from the modern-day public square for making one wrong statement, anonymity is more important than ever for some. Often, there’s no recourse for missteps after you’ve been taken down by the angry horde over a lapse in judgment. Once your name has been hauled through the mud and back again, there’s little you can do about it.</p>\n\n\n\n<p>That little voice in the back of my mind, the one carefully crafted by my parents and teachers, is a reminder that a simpler period during the Internet Age once existed.</p>\n\n\n\n<p>There are other pockets of the internet where the pseudonym has persisted. One area is in gaming. You’d be the oddball if using a real name in an online multiplayer match. <em>I suppose “Brett” or “Molly” doesn’t strike fear in the heart’s of enemies.</em> The entire culture of online gaming is built upon anonymity, which is at odds with much of the internet world today. Frankly, I find it oddly satisfying.</p>\n\n\n\n<p>I do wonder whether a real name online is important for civil discourse. Quite often, online personas are much different than their real-life counterparts. I mean, have you seen the numerous alpha-male groups on social networks made up of men who all think they’re the leaders of the pack? <em>Hmmm…maybe there was some truth to that basement-dweller theory, after all. Thanks for the heads up, Mom and Dad.</em></p>\n\n\n\n<p>The point is that an online persona, even attached to a real name, is still a persona. It’s not much different than a fake user handle.</p>\n\n\n\n<p>I’d wager that the need to see a person’s real name has more to do with knowing exactly who to shun for controversial ideas rather than attaching some sort of validity to it. Usernames can be altered. You’re pretty much stuck with your real name, and mishaps follow your real name around.</p>\n\n\n\n<p>As we were reviewing the Tavern’s <a href=\"https://wptavern.com/comment-policy\">comment policy</a> last week, one point I brought up is that I believe we should allow anonymous comments. A large reason for this is that people should feel safe to communicate their thoughts within the community. While I won’t get into the specifics of internal discussions, I do hope that it’s something we officially remove from the policy.</p>\n\n\n\n<p>Being in favor of anonymity does not mean being in favor of personal attacks or handing over a license to use a vulgar term as a username. It’s about protecting people’s ability to speak freely without fear of becoming an outcast within the community for an unpopular opinion.</p>\n\n\n\n<p>Sometimes anonymity provides people the freedom they need to effectively discuss ideas. More importantly, it allows them to be a part of the community in a way that they choose.</p>\n\n\n\n<h2>Are We Moving back?</h2>\n\n\n\n<p>With the European Union, Japan, Australia, and other countries passing stricter privacy laws, there’s a growing movement to protect privacy across the world. While this movement has focused more on large corporations and what they do with personal data, there’s an underlying fear that’s likely been there from the beginning.</p>\n\n\n\n<p>People are coming to the realization that we gave up too much.</p>\n\n\n\n<p>We handed over our names. And, once we handed over our names, it was a slippery slope to handing over everything else about ourselves. If you dig deep enough you can find the names of all my cats and when they were all born.</p>\n\n\n\n<p>I’m not sure how I feel about that. I’m in too deep at this point.</p>\n\n\n\n<p>My parents from 20 years ago would not have liked the idea too much. My dad just uses YouTube to watch videos on building stuff for the most part today (it took years to stop him sending me email chains), but my stepmom is right there along with everyone else on social networks.</p>\n\n\n\n<p>It’s odd to look back on the past 20 years to see how some of our initial fears surrounding anonymity have transformed. In another 20 years, we’ll all be back to using pseudonyms again. Call me out on it if I’m wrong. I do wonder if we’ll look back at this time and think everyone was crazy for using their real names.</p>\n\n\n\n<p>I welcome your anonymous comments on this post. Just don’t use “wanker” for your handle.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 19:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: GNU Project Maintainers Move to <NAME> from Leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/gnu-project-maintainers-move-to-oust-richard-stallman-from-leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5486:\"<p>GNU Project maintainers are working to <NAME> from his position as head of the organization. In a joint <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday morning, a collection of 22 GNU maintainers and developers thanked Stallman for his work and declared that he can no longer represent the project:</p>\n<blockquote><p>We, the undersigned GNU maintainers and developers, owe a debt of gratitude to <NAME> for his decades of important work in the free software movement. Stallman tirelessly emphasized the importance of computer user freedom and laid the foundation for his vision to become a reality by starting the development of the GNU operating system. For that we are truly grateful.</p>\n<p>Yet, we must also acknowledge that Stallman’s behavior over the years has undermined a core value of the GNU project: the empowerment of all computer users. GNU is not fulfilling its mission when the behavior of its leader alienates a large part of those we want to reach out to.</p>\n<p>We believe that <NAME> cannot represent all of GNU.</p></blockquote>\n<p><a href=\"https://www.stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Stallman’s personal website</a> continues to prominently display his intentions to remain in the leadership role. He added the header to his site, following the publication of remarks he made regarding a 17-year old victim of sex trafficker <NAME>, which precipitated his <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\" rel=\"noopener noreferrer\" target=\"_blank\">resignation from both MIT and the Free Software Foundation</a>:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/Screen-Shot-2019-10-07-at-9.44.17-PM.png?ssl=1\"><img /></a></p>\n<p>The Stallman saga has continued to grow stranger in the aftermath of his resignations, as many were concerned that he would be homeless after his website featured a notice that he was “<a href=\"https://web.archive.org/web/20190929052858/https://stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Seeking Housing</a>,” accompanied by a <a href=\"https://web.archive.org/web/20190929045948/https://stallman.org/seeking-housing.html\" rel=\"noopener noreferrer\" target=\"_blank\">link</a> leading to his specific requirements for a temporary residence. His personal site was also reportedly <a href=\"http://techrights.org/2019/09/29/fsf-defaced-rms/\" rel=\"noopener noreferrer\" target=\"_blank\">vandalized</a> nine days ago with a message that he was stepping down from the GNU.</p>\n<p>The defacement with the false GNU resignation message was reverted shortly thereafter on September 30, and replaced with the header saying he continues to be “Chief GNUisance of the GNU Project” with no intention of stopping soon. Stallman has not yet publicly acknowledged the statement from the GNU maintainers. He has also not yet responded to our request for comment.</p>\n<p>Yesterday the Free Software Foundation (FSF) published a <a href=\"https://www.fsf.org/news/fsf-and-gnu\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> indicating it was re-evaluating its working relationship with the GNU project, which has provided some of its technical infrastructure, fiscal sponsorship, and copyright assignment:</p>\n<blockquote><p>GNU decision-making has largely been in the hands of GNU leadership. Since RMS resigned as president of the FSF, but not as head of GNU (“Chief GNUisance”), the FSF is now working with GNU leadership on a shared understanding of the relationship for the future. As part of that, we invite comments from free software community members.</p></blockquote>\n<p>Stallman responded the next day, indicating he wanted to work with FSF on restructuring the relationship between the two organizations:</p>\n<blockquote><p>I recently resigned as president of the FSF, but the FSF continues to provide several forms of crucial support for the GNU Project. As head of the GNU Project, I will be working with the FSF on how to structure<br />\nthe GNU Project’s relationship with the FSF in the future.</p></blockquote>\n<p>The FSF maintains some critical responsibilities in that it currently <a href=\"https://en.wikipedia.org/wiki/Free_Software_Foundation#History\" rel=\"noopener noreferrer\" target=\"_blank\">holds the copyrights to enforce the GPL</a>. Stallman has recently called on people to <a href=\"http://techrights.org/2019/10/01/what-stallman-wants/\" rel=\"noopener noreferrer\" target=\"_blank\">continue supporting the FSF’s work</a>, despite his resignation from the organization.</p>\n<p>The small contingency of GNU project maintainers who penned the <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday seem to be on the same page with FSF in its rejection of Stallman’s leadership. Their message concludes with their intention to overhaul the leadership of the free software movement to be more inclusive of the people who have been alienated by Stallman’s behavior over the years:</p>\n<p>“We think it is now time for GNU maintainers to collectively decide about the organization of the project. The GNU Project we want to build is one that everyone can trust to defend their freedom.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 04:33:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Google Chrome Announces Rollout Plan for Blocking Mixed Content Beginning January 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94672\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/google-chrome-announces-rollout-plan-for-blocking-mixed-content-beginning-january-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3405:\"<p>The Google Security Team has <a href=\"https://security.googleblog.com/2019/10/no-more-mixed-messages-about-https_3.html\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> a timeline for when Chrome will begin blocking <a href=\"https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content\" rel=\"noopener noreferrer\" target=\"_blank\">mixed content</a> by default in order to ensure that HTTPS browsing is more secure. Mixed content refers to HTTPS pages that load resources, such as images, videos, stylesheets, and scripts, over HTTP.</p>\n<p>The gradual rollout will begin with Chrome 79, which is scheduled for release in December 2019. The browser already blocks mixed scripts and iframes, but this release will add a new setting (that can be toggled on or off) for users to unblock it on a per-site basis.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/site-settings-unblock-mixed-content.png?ssl=1\"><img /></a></p>\n<p>The next phase of the rollout will progress with Chrome 80, due in January 2020, where mixed audio and video resources will get auto-upgraded to HTTPS. If they fail to load over HTTPS, Chrome will automatically block them. Mixed images will still load but Chrome will display a “Not Secure” warning in the omnibox next to the URL.</p>\n<p>The last phase of the rollout is planned for February 2020. Along with the release of Chrome 81, mixed content images will bet auto-upgraded to HTTPS and Chrome will block them if they fail to load.</p>\n<p>The Google Security Team reports that Chrome users now spend more than 90% of their browsing time on HTTPS on both desktop and mobile. The plan to begin blocking mixed content is targeted at addressing insecure holes in SSL implementations of sites that have already made the switch to HTTPS.</p>\n<p>WordPress site owners have plenty of time to ensure all their resources load over HTTPS. The official plugin directory has <a href=\"https://wordpress.org/plugins/search/mixed+content/\" rel=\"noopener noreferrer\" target=\"_blank\">several popular plugins</a> that can assist with fixing problems with mixed content. <a href=\"https://wordpress.org/plugins/really-simple-ssl/\" rel=\"noopener noreferrer\" target=\"_blank\">Really Simple SSL</a>, a plugin that is active on more than 3 million sites, has a built-in mixed content scan that shows users what they need to do if they aren’t seeing the green lock in the omnibar yet. It also includes a “mixed content fixer” for the back-end.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/mixed-content-scan-really-simple-ssl.png?ssl=1\"><img /></a></p>\n<p>Other popular plugins, such as <a href=\"https://wordpress.org/plugins/http-https-remover/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Mixed Content Fix</a> (20k active installs) and <a href=\"https://wordpress.org/plugins/ssl-insecure-content-fixer/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Insecure Content Fixer</a> (300k active installs) are focused specifically on fixing these issues and may assist in making other installed plugins compatible with HTTPS. They include tools that will diagnose insecure content and automatically perform basic fixes. The SSL Insecure Content Fixer plugin is also compatible with WordPress multisite and includes a network settings page to set defaults for the entire network.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2019 19:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: U.S. Supreme Court Denies Domino’s Appeal to Determine Whether Websites Must Be Accessible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94674\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/u-s-supreme-court-denies-dominos-appeal-to-determine-whether-websites-must-be-accessible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6872:\"<p>In what is seen as a win for accessibility advocates, the U.S. Supreme Court denied Domino’s petition to appeal a lower-court decision on whether the pizza chain’s website and mobile app must be accessible to those with disabilities. The earlier U.S. 9th Circuit court <a href=\"http://cdn.ca9.uscourts.gov/datastore/opinions/2019/01/15/17-55504.pdf\">ruled that websites fall under</a> Title III of the American with Disabilities Act (ADA).</p>\n\n\n\n<p>The original case was brought forth by <NAME>, a blind man, who claimed the Domino’s website and app did not allow him to place an order in 2016. Robles, like many other people with disabilities, relies on screen-reader software to use the web. Despite using such software, he was not able to make an order.</p>\n\n\n\n<p>The primary issue of the case was whether the ADA applied to websites or apps in the same way that they applied to brick-and-mortar locations. Title III specifically points out public places of accommodation but not websites.</p>\n\n\n\n<p>The specific <a href=\"https://www.ada.gov/regs2010/titleIII_2010/titleIII_2010_regulations.htm\">section of the ADA</a> related to the case reads as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Section 36.201(a) contains the general rule that prohibits discrimination on the basis of disability in the full and equal enjoyment of goods, services, facilities, privileges, advantages, and accommodations of any place of public accommodation.</p><p>Full and equal enjoyment means the right to participate and to have an equal opportunity to obtain the same results as others to the extent possible with such accommodations as may be required by the Act and these regulations. It does not mean that an individual with a disability must achieve an identical result or level of achievement as persons without a disability.</p></blockquote>\n\n\n\n<p>The 9th Circuit decided the ADA also applied to businesses on the internet.</p>\n\n\n\n<p>There were three key issues in the case: whether the ADA applied to the website and app, whether Domino’s had fair notice to comply, and whether the court or the Department of Justice (DOJ) should decide the case.</p>\n\n\n\n<p>The DOJ is the body that regulates the ADA. Since it was signed into law in 1990, the DOJ has not created specific guidelines for how businesses can ensure their websites are within the law.</p>\n\n\n\n<p>One argument is that it would have been cheaper and easier for Domino’s to follow accessibility standards such as the Web Content Accessibility Guidelines (WCAG). Such arguments don’t address the need for meaningful regulations from a governing body. The WCAG are not legal guidelines in the U.S. However, the 9th Circuit ruled that the lack of guidelines does not remove Domino’s responsibility.</p>\n\n\n\n<p>Circuit Judge <NAME> wrote in the <a href=\"https://www.supremecourt.gov/DocketPDF/18/18-1539/102950/20190613153344483_DominosPetitionAppendix.pdf\">9th Circuit decision</a>, “While we understand why Domino’s wants DOJ to issue specific guidelines for website and app accessibility, the Constitution only requires that Domino’s receive fair notice of its legal duties, not a blueprint for compliance with its statutory obligations.”</p>\n\n\n\n<p>The lack of such regulations is why this case was important from Domino’s standpoint. While they lost the case, it may further push the need for more specific guidelines for businesses, both large and small, to follow.</p>\n\n\n\n<p>The lack of specific regulations could also be seen as <em>a feature rather than a bug</em>, to use a developer phrase. Government-specific rules are often slow to keep up with the changing nature of the web. Guidelines that apply one day may need to change soon thereafter. It also leaves businesses the ability to make their websites accessible via a method of their choice rather than limiting what they can do to potentially bureaucratic rules that are out of touch with the modern web.</p>\n\n\n\n<p>At the same time, it could leave smaller business owners without large legal and website development budgets wondering if they could be looking at lawsuits in the future. Courts were flooded with <a href=\"https://www.3playmedia.com/2019/06/12/2018sweb-accessibility-lawsuits/\">2,285 accessibility lawsuits in 2018</a>, which was nearly triple the 814 cases in 2017.</p>\n\n\n\n<h2>What Does This Mean for Website owners in the U.S.?</h2>\n\n\n\n<p>In terms of the case, the Supreme Court didn’t make a ruling. They denied Domino’s petition and left the decision of the 9th Circuit in place, which covers much of the western U.S. In the coming years, more cases will make their way through the courts. More than likely, case law will continue becoming stronger in favor of making websites compliant with the ADA.</p>\n\n\n\n<p>If you run an online business, it’s past time to make sure your website is accessible. It could be years before the current law is amended or new ones are written on the legislative level. The winds of change will likely not favor those with inaccessible websites as more court decisions come down.</p>\n\n\n\n<p>In a nutshell, businesses with websites, apps, or other online presences need to make sure all people have access to their goods or services. While there are no specific guidelines in the U.S., <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">WCAG</a> is the largely agreed-upon standards internationally.</p>\n\n\n\n<p>If you’re a small business owner using WordPress, you should start with a WordPress <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">theme labeled as accessibility-ready</a>. It is worth noting that “accessibility-ready” does not mean that your website will automatically become accessible. It simply means that the WordPress theme meets a minimum number of accessibility guidelines. Custom content on your website should also follow the same guidelines.</p>\n\n\n\n<p>Accessibility is not a set-it-and-forget-it type of thing. It’s something that business owners need to continually evaluate and make sure that all their customers, regardless of how that person accesses the internet, can enjoy the same services equally.</p>\n\n\n\n<p>The official theme review team is working through a long-term plan to <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">make all themes accessible</a> at WordPress.org. Many theme businesses outside of WordPress.org also comply with those same guidelines. If purchasing a theme, you should check with the business beforehand.</p>\n\n\n\n<p>As always, if you’re unsure whether your website meets legal guidelines, you’ll need to consult a lawyer who specializes in website accessibility.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2019 18:02:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: People of WordPress: <NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2019/10/people-of-wordpress-alice-orru/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8390:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet <NAME>, from Sardinia, Italy.</strong></h2>\n\n\n\n<p><NAME> was born in Sardinia, an island in the middle of the Mediterranean Sea. As a child, she dreamt of becoming a flight attendant, traveling the world, and speaking many foreign languages.</p>\n\n\n\n<p>Unable to meet the height requirements of her chosen profession, Orru ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life.”</p>\n\n\n\n<p>The unemployment rate in Sardinia is very high, a challenge shared throughout the surrounding islands. In addition to that, Alice wasn’t that keen on having the same job all her life, as her parents had.</p>\n\n\n\n<p>When Orru was 22 she moved to Siena, Tuscany, to finish her studies. That is when she created her first personal blog. The website was built on an Italian platform named Tiscali, which she later migrated to WordPress.com.</p>\n\n\n\n<p>After 2 years in Tuscany Orru moved to Strasbourg, France. She studied French and worked several jobs while living there. Her first serious job was in Milan – working 40 hours/week in the marketing department of a large, international company. She found herself surrounded by ambitious colleagues and a boss who constantly requested extra —unpaid— working hours per day.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?fit=632%2C422&ssl=1\" alt=\"<NAME>\" class=\"wp-image-7291\" />Alice Orru\n\n\n\n<h2>Choices, choices, choices…</h2>\n\n\n\n<p>Alice gave up blogging because she wasn’t feeling inspired enough to write. She questioned whether she really wanted to do that job forever; working 10 hours per day under the neon lights of an office. It forced her to set aside her dreams for the time being, and for a while, she mainly lived for the weekends.</p>\n\n\n\n<p>Alice decided to leave the job and moved to Barcelona, Spain, all by herself, in 2012.</p>\n\n\n\n<p>After a few months of intense Spanish learning at the university, she found a job in an international clinic as a “Patient Coordinator.” Orru assisted international patients coming to Barcelona for their treatments. She acted as their translator, interpreter and administrative consultant. </p>\n\n\n\n<p>Patients came from Italy, France, England, Morocco, Senegal, and several other countries. Alice was so inspired by some of their stories, that she started to write again: She dusted off her WordPress blog and filled it with stories about her new life in Barcelona and some of the women she met at the clinic. “I was feeling stronger and more independent than ever,” Orru expressed.</p>\n\n\n\n<h2>Technical issues led to unexpected opportunities</h2>\n\n\n\n<p>In the summer of 2015, Alice was writing on her blog and got stuck with a technical problem. While she was searching through the WordPress.com documentation, she saw a pop-up in the bottom right corner of her screen. It was a staff member of Automattic, checking if she needed help. They chatted for a few minutes and the problem was solved. Alice left the chat with one question, though: how did that person on chat find a support job with WordPress?</p>\n\n\n\n<p>Alice found the official WordPress job page: <a href=\"http://jobs.wordpress.net/\"><strong>jobs.wordpress.net</strong></a> and noticed a job offer that caught her attention: WP Media, a French startup, was looking for a polyglot and remote customer service teammate for one of their plugins, WP Rocket. She read their requirements: fluency in English, French and possibly other languages, excellent experience with WordPress, and some coding skills.</p>\n\n\n\n<p>She knew she didn’t meet all the requirements, but could speak 4 languages, and she had a WordPress blog. She didn’t know anything about PHP, though. Orru had been a WordPress.com user for years and knew she was ready to learn more.</p>\n\n\n\n<p>Orru wrote a cover letter and sent her CV. A Skype interview was conducted and several days later she received the news that she had gotten the job! </p>\n\n\n\n<h2><strong>A steep learning curve</strong></h2>\n\n\n\n<p>The early days in her new job were intense. Alice felt inexperienced but was supported by her teammates. She started studying and reading everything about WordPress for beginners. Initially, she answered easy tickets from customers. All the while her teammates were sending useful material to read, setting up video-calls for 1 to 1 training, and encouraging her the entire time.</p>\n\n\n\n<p>Soon, Orru was replying to customers whose first language was either Spanish or Italian in their native language. This was much appreciated and resulted in several happy comments. Until that moment the plugin’s support had been offered only in English and French.</p>\n\n\n\n<h2><strong>Finding her way in the WordPress community</strong></h2>\n\n\n\n<p>At WordCamp Paris 2016, one of Alice’s teammates introduced her to how the WordPress community collaborated and kept in contact through Slack.</p>\n\n\n\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” he asked.</p>\n\n\n\n<p>Alice knew very little about contributing to WordPress. She had only been working for WP Media for 6 months and didn’t feel ready to dive into a new challenge and start also contributing to WordPress.</p>\n\n\n\n<p>Yet, curiosity led her to join both the local Italian and the global WordPress Community on Slack. For the first few months, she mainly observed what was happening the channels. Then, she attended WordCamp Milan and met some members of the Italian Polyglots team.</p>\n\n\n\n<p>It was love at first string! Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\"><strong>General Translation Editors</strong></a> (GTE) for Italy, taught her how to start contributing and translating, following the polyglots guidelines. She also told her about the Italian community’s big efforts to work together, consistently, to boost and grow WordPress related events in Italy.</p>\n\n\n\n<p>With her teammates’ encouragement, Orru applied to WordCamps as a speaker and gave her first talk in December 2016 at WordCamp Barcelona. After that, she both spoke at WordCamp Torino on April 2017 and at WordCamp Europe in 2017.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?fit=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-7292\" /><NAME> speaking at WordCamp Europe, in Paris, in 2017\n\n\n\n<h2><strong>Dreams evolve, all the time!</strong></h2>\n\n\n\n<p>Orru knows that her experiences are not just due to luck. She used her previous skills and passions and adapted them to a new career and life path.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of ‘I can’t do it because I don’t know enough’. So that’s what I did. Without even realizing it, I started putting into reality the dream of the little girl who was born on an island and wanted to travel and speak different languages.WordPress made this possible. I’m now part of a big community, and I am proud of it.”</p><cite><NAME></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\"><NAME></a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2019 04:24:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WooSesh 2019 Scheduled for October 9 and 10: Registration Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/woosesh-2019-scheduled-for-october-9-and-10-registration-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2715:\"<p><a href=\"https://woosesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WooSesh</a> is happening next week on October 9 and 10, and registration is now open. This is the second edition of the virtual WooCommerce event hosted by <a href=\"https://wpsessions.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPSessions</a>. In addition to presentations focused entirely on e-commerce, the event will include a “Hallway Track” that offers opportunities for attendees to connect with each other, along with virtual swag donated by various WordPress companies.</p>\n<p>Day 1 will cover a wide range of topics for WooCommerce professionals with a focus on store builders, including sessions on designing with blocks, sales tax, optimizing the checkout experience, and store emails. The first day will also feature a two-hour “State of the Woo” keynote address from the WooCommerce team. They plan to discuss case studies, lessons learned, and priorities for the year ahead.</p>\n<p>Day 2 will focus on more technical topics for WooCommerce developers, such as “Custom Tables and the Checkout Bottleneck,” solving store UX problems, and productizing development work.</p>\n<p>The event is being organized by <NAME> and <NAME>. For the past two years it has been the official successor to the previously held in-person WooConf events. Given how successful WooSesh has been in connecting the WooCommerce community, it’s easy to see why WooConf has not yet been reinstated.</p>\n<p>“One thing I can say, having helped three WooConfs and both WooSesh’s, is that a virtual event is a fraction of the cost,” Rauland said. “And we had twice as many people show up live for WooSesh compared to an in person event.”</p>\n<p>In 2018, WooSesh had 2,800 registrants and more than 1,400 who participated live during the event. Rauland reported that 900 people watched the keynote address. After the conclusion, 94% of respondents to an attendee survey said they would like to attend again the next year.</p>\n<p>Last year attendees could watch all sessions for free as long as they attended at least one presentation during the live event. This year sessions will be free during the event to encourage maximum engagement, and the recordings will be available on WPSessions.com for a fee after its conclusion.</p>\n<p>Tickets are free, thanks to sponsors that include WooCommerce, Jilt, and Avalara. Attendees can <a href=\"https://woosesh.com\" rel=\"noopener noreferrer\" target=\"_blank\">register</a> on the website and <a href=\"https://woosesh.com/#schedule\" rel=\"noopener noreferrer\" target=\"_blank\">preview the schedule</a> in their own timezones.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Oct 2019 19:10:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: WordPress.org Bumps PHP Maximum for Plugin Directory to Version 7.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94637\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/wordpress-org-bumps-php-maximum-for-plugin-directory-to-version-7-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4315:\"<p>The WordPress.org SVN system received a version bump to 7.2 on October 3. This change means that plugin authors can now use newer PHP syntax in plugins they submit to the official plugin directory. In the future, the version maximum will match what’s running on WordPress.org. </p>\n\n\n\n<p>This should be good news for any plugin developers who are using newer PHP syntax. Previously, authors were able to submit code using newer PHP functions if they had a compatibility check in the same file. However, newer syntax wasn’t allowed.</p>\n\n\n\n<p>“The issue was that the Linter (being stuck on 7.0) prevented anyone from checking in code via SVN that used 7.1+ standards,” said <NAME> from the plugin review team. “So things like the Spaceship operator would fail on commit and you’d be told the syntax was invalid. This was holding back certain plugins from committing code into the directory.”</p>\n\n\n\n<p>Epstein first opened a <a href=\"https://meta.trac.wordpress.org/ticket/3791\">ticket to address the issue</a> 13 months ago but said she’d been quietly asking for a fix for a while longer.</p>\n\n\n\n<p>The max PHP version isn’t listed anywhere in the <a href=\"https://developer.wordpress.org/plugins/wordpress-org/\">plugin guidelines</a>. Technically, it’s an SVN limitation on WordPress.org and not something the plugin team chose. However, for plugin authors, they may not have known about the issue until their plugin was rejected by the system. They would then message the plugin team about the problem. “I may end up putting something in the docs, but it’s a somewhat uncommon occurrence,” said Epstein.</p>\n\n\n\n<p>This has been an issue for some plugin authors since PHP 7.1 was released, which was December 1, 2016. “It was a once a year issue, then twice, and then it inched up to every couple months,” said Epstein. “As of September, at least once a month someone would hit this and complain to plugins.”</p>\n\n\n\n<p>One potential problem with blocking newer PHP code is with plugins that rely on third-party libraries, which may only have security patches in more recent versions. However, Epstein said that she was not aware of any security issues that resulted from the version limitation.</p>\n\n\n\n<p>Andrey “Rarst” Savchenko pointed out in the ticket that “7.2 was released almost two years ago.” While he says it’s an improvement over the previous 7.0 limitation, version 7.2 should not be a hard ceiling for plugins in the repository.</p>\n\n\n\n<p>PHP 7.3 was released on December 16, 2018, and PHP 7.4 <a href=\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\">will be released</a> on November 28, 2019.</p>\n\n\n\n<p>“Given PHP’s poor adoption curves,” responded <NAME>ulse, “all that this means is that you can’t release a plugin through WordPress.org that only works on 15% of WordPress sites. “You can even use newer functions in PHP if including compat code, just not newer syntax.”</p>\n\n\n\n<p>Plugin author <NAME> <a href=\"https://twitter.com/Josh412/status/1100487567236059136\">called awareness to the issue</a> on Twitter in February. “Hours later, I’m downgrading a dependency, because it requires another dependency, which requires PHP 7.1.”</p>\n\n\n\n<p>“I think we got lucky and there were no bugs,” Pollock said of downgrading to an earlier version of the dependency. “I don’t think I’ve used SVN since. I’m really fortunate that’s not a part of my life anymore.”</p>\n\n\n\n<p>“I agree with Rarst,” said Pollock. “We should be allowing for PHP 7 and making it easier for plugins not to support sites on out of date versions of PHP.” This echoes the sentiment of other developers who are pushing for WordPress to adopt newer standards or at least allow them to do so in their own plugins in the official directory.</p>\n\n\n\n<p>For the majority of plugin authors, this should be a non-issue as long as the SVN system remains updated to match the version of PHP used on WordPress.og.</p>\n\n\n\n<p>PHP 7.2 will lose active support on November 30, 2019, and security support on November 30, 2020.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Oct 2019 16:41:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>adlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WPTavern: <NAME> and <NAME> Discuss WordPress Market Share, Monopolies, and Power in Open Source Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18041:\"<p>In what began as a heated conversation on Twitter, Automattic CEO <NAME> and Ruby on Rails creator and Basecamp co-founder <NAME> Hansson took to the airwaves to debate opposing viewpoints on market share, monopolies, and power in open source communities. Hansson reacted to a statement Mullenweg made in an interview after <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\" rel=\"noopener noreferrer\" target=\"_blank\">Salesforce Ventures invested $300 million in Automattic</a> last month.</p>\n<p>“I think there’s potential to get to a similar market share as Android, which I believe now has 85% of all handsets,” Mullenweg told <a href=\"https://techcrunch.com/2019/09/19/automattic-ceo-matt-mullenweg-about-raising-300-million-and-the-open-web/\" rel=\"noopener noreferrer\" target=\"_blank\">TechCrunch</a>. “When you think about it, open source has a virtuous cycle of adoption, people building on the platform and more adoption.”</p>\n<p>Hansson reacted on Twitter, sparking a conversation that received 116 comments.</p>\n<p>“‘We want every website, whether it’s e-commerce or anything to be powered by WordPress’ is a nasty, monopolistic goal,” he said. “Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“We want every website, whether it’s e-commerce or anything to be powered by WordPress” is a nasty, monopolistic goal. Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams. <a href=\"https://t.co/hf4HShISug\">https://t.co/hf4HShISug</a></p>\n<p>— DHH (@dhh) <a href=\"https://twitter.com/dhh/status/1174695189090308096?ref_src=twsrc%5Etfw\">September 19, 2019</a></p></blockquote>\n<p></p>\n<p>In an episode titled “<a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Open Source and Power</a>,” Mullwenweg joined Hansson on the Rework podcast for a more in-depth discussion that dives deeper into Mullenweg’s remarks on WordPress’ potential market share.</p>\n<p>Hansson contends that he would like to see a very large, rich ecosystem of providers of tools and services on the web and expressed concern about WordPress growing many times faster than any of its competitors.</p>\n<p>Mullenweg countered that unique domains are not the only measure of a monopoly. He also referenced Shopify as having a thriving business with a small percentage of the e-commerce platform market share.</p>\n<p>“Even though open source can become a bit of a standard, it doesn’t prevent others from starting on it,” Mullenweg said. “The truth is if I had an evil hat on – let’s say I started doing evil monopoly stuff, people could easily fork the software – and they would. There’s a checks and balances there.”</p>\n<p>This is a <a href=\"https://wptavern.com/wordpress-governance-project-looks-for-new-leadership\" rel=\"noopener noreferrer\" target=\"_blank\">classic power dynamic in BDFL-led open source projects</a> where the potential for a fork checks the project leader’s actions.</p>\n<p>Hansson challenges Mullenweg’s assertion that a fork would be a threat to the project, arguing that this power is illusionary when a project has become as dominant as WordPress:</p>\n<blockquote><p>Technically someone could fork Ruby on Rails tomorrow. What is the likelihood that fork is going to succeed? Once you have this juggernaut of network effects, WordPress is growing so much faster than anyone else, the gravitational pull is huge. Should someone fork it, introducing incompatibilities, what is the likelihood that is going to be a serious contender? From me, my assessment is extremely low, just the same as if someone was to fork Ruby on Rails today and call it Snoopy on Pails. The odds of that being anything other than a curiosity for two days on Hacker News is extremely low.</p></blockquote>\n<p>The notion of Snoopy on Pails injected a bit of humor into the debate that remained high intensity for the hour-long discussion, but it also illustrated Hansson’s point regarding the absurdity of any kind of WordPress fork becoming a real threat to the project’s momentum.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">it was a privilege to have <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> come on <a href=\"https://twitter.com/reworkpodcast?ref_src=twsrc%5Etfw\">@reworkpodcast</a> and debate <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> on tech monopolies and power dynamics in open source: <a href=\"https://t.co/Aewq4QTwFe\">https://t.co/Aewq4QTwFe</a>. Also thanks to <a href=\"https://twitter.com/AdamStddrd?ref_src=twsrc%5Etfw\">@AdamStddrd</a> for making this graphic that will make sense if you listen to the episode <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f603.png\" alt=\"😃\" class=\"wp-smiley\" /> <a href=\"https://t.co/4cqZpX2uJk\">pic.twitter.com/4cqZpX2uJk</a></p>\n<p>— <NAME> (@VelocityWong) <a href=\"https://twitter.com/VelocityWong/status/1179025482416820224?ref_src=twsrc%5Etfw\">October 1, 2019</a></p></blockquote>\n<p></p>\n<p>“Open source can provide a veil over true power and who has that power, and I would argue that WordPress being in the position that it is, a third of all sites, is tremendous power,” Hansson said. “Even if that power is somewhat distributed, it’s still very much so located mostly with the company backing that engine and that you built a commercial business on top of it that even uses the name, goes even further to say there’s a lot of power here.</p>\n<p>“Why would venture capitalists invest half a billion dollars into WordPress if they didn’t see Automattic as a company as having a lot of power over WordPress? The whole reason someone is able to raise that kind of money is off the back of someone who can pitch: ‘We have over a third of all websites on the internet and we think we can get to 85%.’ That’s a very compelling venture story.”</p>\n<p>Mullenweg counters that if a Rails fork couldn’t attract a lot of users, that speaks to the Hansson’s stewardship of the project. He said that a typical WordPress release has 400-500 contributors with an estimated 10% from Automattic.</p>\n<p>“If 200 of those went someplace else because I did something really brain dead, that would be a pretty serious competitor, and there are some examples of that in open source history,” Mullenweg said. He contended that forks with enough weight behind them can become very interesting. On this point the two project leaders remained at odds.</p>\n<h3>How Open Source Market Dominance Impacts Diversity of Tools and Services on the Web</h3>\n<p>One of Hansson’s chief concerns with WordPress reaching 85% market share is what he described as the “death of diversity.” He perceives this pursuit of increased adoption as growing open source in monopolistic ways.</p>\n<p>“We’re living through an era right now where a small handful of big tech companies are exerting a completely undue amount of power over the internet, over discourse, over all sorts of things, and that’s something we should try to recoil from and at least learn from, not aspire to building more of,” Hansson said. “That’s what got this going – why isn’t WordPress in a great place only being a third of all the sites of the internet. Why does it need to get to 85%? Why does its growth need to be that explosive and that wild?”</p>\n<p>This is a question many in the WordPress community have asked in the past. Does the mission of democratizing publishing necessitate such a zealous drive towards market dominance?</p>\n<p>“I don’t want to see this concentration of power in one engine, no matter how good it is,” Hansson said.</p>\n<p>It is at this juncture that Mullenweg revealed more of his vision for WordPress becoming the “operating system of the web,” an idea he has floated several times over the past few years.</p>\n<p>“You have referred to WordPress a lot of times as blogging,” Mullenweg said. “I think of it more like a platform. If you look at how a lot of people are building on it, they use WordPress to bootstrap something that doesn’t look like WordPress at all. It might not even have a website. It might be powering just an API. It might be a headless or decoupled installation. It could be a store.”</p>\n<p>He likened the idea to Apache and nginx having a dominant market share (<a href=\"https://www.datanyze.com/market-share/web-and-application-servers/apache-http-server-market-share\" rel=\"noopener noreferrer\" target=\"_blank\">55%</a> and <a href=\"https://www.datanyze.com/market-share/web-and-application-servers/nginx-market-share\">23%</a> respectively) in the server space.</p>\n<p>“That doesn’t prevent the different types of websites that are built on it,” Mullenweg said. “If nginx got to 80 or 85%, that wouldn’t prevent the diversity or what people could put on their websites. WordPress could get to 85% and it wouldn’t mean that there’s any sort of monoculture or lack of diversity. If anything, it would allow people to focus more on what’s different and not recreating the WYSIWYG, the user system, the login, all that stuff we have all built a million times and you just don’t need to anymore, if something like WordPress solves your needs.”</p>\n<p>Hansson asked what it would look like if 85% of the web ran on WordPress, a question that the community behind the project hasn’t deeply examined yet. He encouraged listeners to consider what they want the internet to look like in the future:</p>\n<blockquote><p>What is the future I’d like to live in? What does a healthy, open, free internet look like? To me it looks like an internet with tons of different providers, tons of different tools, and what we collaborate around is protocols, not consolidation of software market share, that gives individuals and companies or even projects outsized power to dictate the matters of the internet.</p></blockquote>\n<p>Matt clarified that his comments on an 85% market share are not a goal, but rather a “trailing indicator” in the quest to create the best possible experience for developers and users. A growing market share is a signal of adoption in that sense, not a goal in itself.</p>\n<h3>WordPress Community Reactions to the Debate</h3>\n<p>After the initial exchange on Twitter, the broader tech community seemed delighted to hear Mullenweg and Hansson square off in a civil debate on topics that affect so many people working on the web. The conversation touched on a lot of the friction points in the WordPress ecosystem with Automattic being one of the most powerful companies driving WordPress’ market share. Many listeners were grateful for answers to questions they have had for years.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not sure <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> realizes it, but he spoke for hundreds if not thousands of WordPress community members that have had similar questions for <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> spanning the last few years. Most aren’t afforded the same opportunity or carry the same clout to have it. <a href=\"https://t.co/z7wSIGJKAZ\">https://t.co/z7wSIGJKAZ</a></p>\n<p>— <NAME> (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/1179201126878629888?ref_src=twsrc%5Etfw\">October 2, 2019</a></p></blockquote>\n<p></p>\n<p>However, the idea of WordPress as web infrastructure and the level of market dominance (85%) discussed in the podcast are controversial and even off-putting for some who are deeply invested in the platform.</p>\n<p>“Matt appears to think of WordPress as infrastructure for the web, in the same way that Google and Facebook think of themselves as infrastructure for the web,” Morten Rand-Hendriksen said.</p>\n<p>“In the conversation about the dangers of market control, monopolization, and monoculture, Matt says, ‘We are not a grain, we are the soil.’ The only way to interpret that from my position is ‘WordPress is not a thing on the web. It is the web,’ i.e. infrastructure. A future where WP is web infrastructure is something I think very few people actually want, open source or not.”</p>\n<p>On the podcast, Mullenweg argued that open source allows for competition in a way proprietary software does not, but Rand-Hendriksen said he sees this as a logical fallacy.</p>\n<p>“He talks at the same time about WP being infrastructure and powering 85% of the web AND about this being a reason for others to fight it with other solutions,” he said. “So monopolization leads to competition somehow. I don’t think WordPress is infrastructure, or that it should power 85% of the web, especially after hearing this conversation.</p>\n<p>“If we truly believe in this idea of open source as diversification and forking, WP should actively support other projects and try to not be the dominant force on the web. WP is not infrastructure, it is very much a grain that has become a monoculture.”</p>\n<p><NAME>, host of the <a href=\"http://youtube.com/themattreport\" rel=\"noopener noreferrer\" target=\"_blank\">Matt Report podcast</a> focused on WordPress business and entrepreneurs, said that while the conversation answered a lot of questions, it left him wanting more.</p>\n<p>“The cloud of uncertainty that hangs above a large portion of this community is directly formed from lack of clear communication in both <a href=\"http://WordPress.org\">WordPress.org</a> and how Automattic + Jetpack move in lockstep with the open source project,” Medeiros said. “As we see hundreds of millions of dollars invested, with billions of dollars of valuation going to a single company, surely the optics leave one wondering how all of this gets repaid to investors?”</p>\n<p>Automattic invariably comes under more public scrutiny regarding its investments due to having the WordPress project lead as its CEO. One interesting observation Mullenweg made during podcast is that Automattic is just one of many larger players that make up the the WordPress economy, which he has previously estimated at $10 billion/year.</p>\n<p>“Automattic makes probably 2-3% of the revenue in the WordPress world,” Mullenweg said. “There are companies like GoDaddy, which might not contribute very much back to core, but probably have 3 or 4 times the number of subscribers than us running WordPress. I think about that a lot. I want to grow the whole ecosystem, not just our slice of it.”</p>\n<p>Revenue is not always equal to influence, and a good portion of the end of the podcast tackled questions about power and leadership in open source.</p>\n<p>“David’s questions are spun from the threads that fear monopoly on the web, as much as we fear a singular rule of decision making in the open source project,” Medeiros said. “I think David did well at challenging Matt’s view on the desire of world domination and how undesirable it is to earn the title of Benevolent Dictator — but it left me wanting more. For example, in an attempt to throw a curveball, Matt pointed out, the investment is made in Automattic — not WordPress — a point so opaque it didn’t fool David, but didn’t have him pressing any deeper.</p>\n<p>“Had David viewed this conversation through the lens of our community, he would know that Automattic and WordPress.com enjoy the full benefit of leveraging the WordPress brand, a brand protected by a foundation that Matt himself founded, which may have guided the podcast episode into the ethics of it all.”</p>\n<p>While Mullenweg’s claim that “WordPress belongs to you as much as it belongs to anyone else” is true in the sense that the software is freely available to be used and modified by anyone, the full power of <a href=\"http://wpandlegalstuff.com/using-wordpress-trademarks-business-product-service/\" rel=\"noopener noreferrer\" target=\"_blank\">leveraging the WordPress brand</a> does not belong to everyone.</p>\n<p>“I don’t think Matt would have been willing to have this kind of conversation with me or most members from the the general community, so I’m glad someone of David’s clout was able to engage here,” Medeiros said. “I do sympathize with all that Matt is responsible for and it’s not a challenge I think I’d be up for, given the opportunity. I love this community and want to see people stay, contribute, and flourish — not walk away because they felt unheard. DHH isn’t the hero we asked for, but he’s the hero we need right now. Hopefully he continues to keep a watchful eye over where WordPress is heading.”</p>\n<p>If you only listen to one podcast this week, <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Hansson’s conversation with Mullenweg</a> is an invigorating battle of opposing open source ideals held as a respectful exchange. In defending their positions, both reveal how their experiences of the early days of the web shaped their ideologies and approaches to open source project leadership and commercialization. Conversations like these are rare but long overdue, as the WordPress community considers its growing influence on the future of the web.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 18:59:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress Theme Review Team Brings Back Review Shindigs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wordpress-theme-review-team-brings-back-review-shindigs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3730:\"<p>The WordPress theme review team (TRT) is kicking off a review weekend October 5 and will begin at 10:00 Coordinated Universal Time (UTC). These events, called “review shindigs,” are marathon sessions where the team joins together to review themes and teach best practices. The current plan is to hold the event on the first Saturday of every month.</p>\n\n\n\n<p>“The goal of the review weekend is to get together and do as many quality reviews as possible,” wrote <NAME>, one of the team’s review representatives, in the <a href=\"https://make.wordpress.org/themes/2019/10/03/review-weekend\">event’s announcement</a>. Events sometimes have different goals, depending on what the team needs to work on at the time. </p>\n\n\n\n<p>Most of the event will happen over the team’s <a href=\"https://wordpress.slack.com/messages/themereview\">Slack channel</a>. They will also hold a live presentation or Q&A on Zoom at 13:00 UTC. Anyone is welcome to attend (the Zoom link will be provided in Slack). This will help teach those who are interested in how to perform reviews and check common issues. Anyone attending is also able to submit topics for discussion in the comments on the announcement post.</p>\n\n\n\n<p>The TRT originally <a href=\"https://make.wordpress.org/themes/2019/09/24/meeting-notes-for-tuesday-24th-september-2019/\">announced plans</a> for the event after the last team meeting, but it was overshadowed by other news, such as the <a href=\"https://wptavern.com/theme-review-team-restructures-into-project-representatives\">team moving to a flat structure</a>. “Not sure if anyone but myself will be there,” joked Nymark. “It’s short notice. Some of the team reps already had other plans.”</p>\n\n\n\n<p>Anyone from the WordPress community is allowed to participate in the event by simply commenting on a ticket without being assigned a review. Nymark provided links on <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">how to become a reviewer</a> and the team’s <a href=\"https://make.wordpress.org/themes/handbook/get-involved/onboarding-for-new-reviewers/\">reviewer onboarding process</a> to get new reviewers started.</p>\n\n\n\n<p>Review shindigs can help new reviewers because it puts them in touch with more experienced reviewers at a time when they know someone will be online to answer questions. They’re also a team-building exercise where people can join together and work toward a common goal.</p>\n\n\n\n<p>Currently, <a href=\"https://themes.trac.wordpress.org/\">214 tickets</a> are awaiting review. A successful event would significantly cut that number down.</p>\n\n\n\n<h2>Events From the Past</h2>\n\n\n\n<p>Theme review shindigs have seen varying levels of success over the years. In the TRT’s earliest days, review gatherings were regular events and helped keep the ever-growing ticket queue under control. Participation waned over time as leaders within the team switched to other projects or no longer had time to run the events. Proposals to bring back them back have not gone far in the last couple of years.</p>\n\n\n\n<p>The last TRT shindig was a <a href=\"https://make.wordpress.org/themes/2016/12/05/december-shindig-recap/\">December 2016 event</a> that saw over 50 participants. Reviewers worked on 108 tickets throughout the weekend. The event also coincided with contributor day at WordCamp US, which helped bump up participation numbers.</p>\n\n\n\n<p><NAME>, <NAME>, <NAME>, and <NAME> held a live stream that covered how to load scripts and styles in themes in the previous review event.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 18:29:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Debating OSS with DHH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://ma.tt/2019/10/debating-oss-with-dhh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:931:\"<p>The other week I ended up going back and forth in tweets with <a href=\"https://dhh.dk/\"><NAME></a>, it wasn’t going anywhere but he graciously invited me to their podcast and we were able to expand the discussion in a way I found really refreshing and mind-opening.</p>\n\n\n\n<p>DHH and I have philosophies around work and open source that I believe overlap 95% or more, so that makes where we have differences all that more interesting to mine. Although we would see each other logged into the same server 15 years ago, we haven’t actually spoken directly until this podcast started, but the conversation flowed so naturally you’d think we have been talking since then.</p>\n\n\n\n<p>Check out the <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\">episode on Open Source and Power on the Rework Podcast</a>, hopefully you enjoy listening as much as we enjoyed recording it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 00:04:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: First Look at PHP 7.4 for WordPress Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7152:\"<p>PHP 7.4 is slated for release on November 28, 2019. WordPress 5.3 will also <a href=\"https://core.trac.wordpress.org/ticket/47783\">include several commits</a> that address deprecated features.</p>\n\n\n\n<p>It’s unlikely that most WordPress plugin and theme developers will be able to use the new PHP 7.4 features for a while except when working on setups where they have some measure of control over the environment. Given WordPress’ reluctance to bump the minimum PHP version to the latest supported versions, it could be years before it’s safe to use new features. However, developers should make sure their plugins and themes are compatible with 7.4. It’s also good practice to keep up with current features.</p>\n\n\n\n<p>WordPress 5.2 <a href=\"https://wordpress.org/news/2019/05/jaco/\">bumped the minimum requirement</a> to PHP 5.6 with a recommendation of PHP 7.3. The following is the breakdown for current <a href=\"https://wordpress.org/about/stats/\">PHP usage stats</a> for WordPress installs:</p>\n\n\n\n<ul><li>PHP 7.3 – 9.6%</li><li>PHP 7.2 – 22.2%</li><li>PHP 7.1 – 13.5%</li><li>PHP 7.0 – 14.9%</li><li>PHP 5.6 – 25.7%</li></ul>\n\n\n\n<p>Currently, PHP 7.2 and 7.3 are the only versions receiving active support. PHP will drop security support for version 7.1 on December 1.</p>\n\n\n\n<h2>New Features</h2>\n\n\n\n<p>PHP 7.4 includes a number of <a href=\"https://www.php.net/manual/en/migration74.php\">new features</a> that will make writing code easier. The following is a small overview of some of the features that will likely be useful for WordPress plugin and theme authors.</p>\n\n\n\n<h3>Typed Properties</h3>\n\n\n\n<p>PHP first introduced type hinting in 5.0 and has continued improving the feature. PHP 7.0 introduced return type declarations. PHP 7.4 steps it up a notch and allows developers to declare types for class properties. This lets developers make sure the type of data assigned to a specific property is always that data type.</p>\n\n\n\n<p>In the following example, the <code>$id</code> property can only be assigned an integer and the <code>$title</code> property a string. Attempting to assign the wrong data type will result in a fatal error if strict types are declared. Otherwise, PHP will coerce the value to the correct type.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nclass Event {\n\n public int $id;\n\n public string $title;\n}\n</pre>\n\n\n<h3>Arrow Functions</h3>\n\n\n\n<p>Many developers have been clamoring for arrow functions similar to JavaScript. They are pretty sweet to use. However, PHP’s arrow functions, also called “short closures,” are slightly different. PHP 7.4 introduces the <code>fn</code> keyword (now a reserved keyword). Short closures can only contain one expression and have no <code>return</code> keyword. They’re not quite as powerful as their JavaScript cousins, but they do offer a quick solution for some scenarios.</p>\n\n\n\n<p>For example, the following code snippet shows two different ways to build an array of user emails from a collection of user objects.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Old way, but still acceptable.\n$value = array_map( function( $user ) {\n return $user->user_email;\n}, $users );\n\n// New way.\n$value = array_map( fn( $user ) => $user->user_email, $users );\n</pre>\n\n\n<h3>Unpacking Inside of Arrays</h3>\n\n\n\n<p>Argument unpacking was <a href=\"https://www.php.net/manual/en/migration56.new-features.php\">introduced in PHP 5.6</a>, so this may still be unfamiliar territory for many developers in the WordPress space. It’s been an invaluable feature in some of my projects.</p>\n\n\n\n<p>PHP 7.4 allows developers to unpack an array within an array. This should be faster than <code>array_merge()</code> because the spread operator (<code>...</code>) is a language construct rather than a function.</p>\n\n\n\n<p>Consider the following example of injecting an array of two colors within a larger array of colors.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$colors_a = [ \'green\', \'blue\' ];\n\n$colors_b = [ \'red\', ...$colors_a, \'yellow\', \'purple\' ];\n\n// [ \'red\', \'green\', \'blue\', \'yellow\', \'purple\' ];\n</pre>\n\n\n<h3>Null Coalescing Assignment Operator</h3>\n\n\n\n<p>The null coalescing assignment operator is a shorthand way of combining an <code>isset()</code> check with a ternary operator.</p>\n\n\n\n<p>The following example shows how to check the <code>$product[\'id\']</code> variable. If it’s set, do nothing. Else, assign it the value on the right. You can see the evolution of the code between PHP versions. It’s much simpler to write in 7.4.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Pre-PHP 7.0.\n$product[\'id\'] = isset( $product[\'id\'] ) ? $product[\'id\'] : 0;\n\n// PHP 7.0.\n$product[\'id\'] = $product[\'id\'] ?? 0;\n\n// PHP 7.4.\n$product[\'id\'] ??= 0;\n</pre>\n\n\n<h2>Deprecated Features</h2>\n\n\n\n<p>PHP 7.4 will deprecate several features. Plugin and theme authors will want to <a href=\"https://www.php.net/manual/en/migration74.deprecated.php\">consult the complete list</a> to determine whether they should update any outdated code. I cherry-picked a few items that I’ve seen in plugin and theme code over the last few years. Most other deprecated features are unlikely in current code bases.</p>\n\n\n\n<h3>Nested Ternary Operators Without Parenthesis</h3>\n\n\n\n<p>Nested ternary operators are generally something you should avoid as a developer. Seriously. Just don’t write them. They’re tough to follow and are prone to bugs due to human error. However, if you’re going to throw caution to the wind and dismiss good advice, at least use parenthesis. PHP 7.4 deprecated nested ternaries without them.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a ? $b : $c ? $d : $e;\n\n// OK.\n$value = ( $a ? $b : $c ) ? $d : $e;\n\n// OK.\n$value = $a ? $b : ( $c ? $d : $e );\n</pre>\n\n\n<h3>Using array_key_exists() on Objects</h3>\n\n\n\n<p>Developers should not use <code>array_key_exists()</code> on objects simply because objects are not arrays. Instead, use the more appropriate <code>property_exists()</code> function or <code>isset()</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\nif ( array_key_exists( $property, $object ) ) {}\n\n// OK.\nif ( property_exists( $object, $property ) ) {}\n\n// OK.\nif ( isset( $object->$property ) ) {}\n</pre>\n\n\n<h3>Array and String Offset Access With Curly Braces</h3>\n\n\n\n<p>Using curly braces for array and string offset access is a bit more of a rarity, but I’ve seen it in the wild a couple of times. Make sure you’re using square brackets such as <code>[]</code> instead of curly brackets like <code>{}</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a{ $key };\n\n// OK.\n$value = $a[ $key ];\n</pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 18:16:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: BuddyPress 5.0 Introduces BP REST API, Paving the Way for Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/buddypress-5-0-introduces-bp-rest-api-paving-the-way-for-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3919:\"<p><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\" rel=\"noopener noreferrer\" target=\"_blank\">BuddyPress 5.0.0</a> “Le Gusto” was released this week with the long-awaited BP REST API, a new Invitations API, and BuddyPress info on the Site Health screen. The release was named for a favorite pizza restaurant in Fortaleza, Brazil, where BP REST API contributor and core committer <a href=\"https://profiles.wordpress.org/espellcaste/\" rel=\"noopener noreferrer\" target=\"_blank\">Renato Alves</a> resides.</p>\n<p>The new REST API is <a href=\"https://developer.buddypress.org/bp-rest-api/\" rel=\"noopener noreferrer\" target=\"_blank\">fully documented</a> and includes endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n<p>The first feature powered by the new API is an improved interface for managing group members. It enables administrators to quickly search for specific members to promote, demote, ban, or remove.</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4\">https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4</a></div></p>\n<p>BuddyPress 5.0 also includes a new <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\" rel=\"noopener noreferrer\" target=\"_blank\">BP Invitations API</a> to help developers better manage group invites and membership requests.</p>\n<p>BuddyPress site administrators may notice <a href=\"https://wptavern.com/buddypress-5-0-to-display-debug-info-in-the-new-site-health-info-screen\" rel=\"noopener noreferrer\" target=\"_blank\">a new panel in the Site Health Info screen</a>, containing plugin-specific debug information that may be useful when seeking help in the forums.</p>\n<p>This release <a href=\"https://wptavern.com/buddypress-5-0-to-update-password-control-to-match-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">updates the BP Nouveau template pack</a> to use the same password control as the one used in WordPress core. It provides a more consistent interface for users when setting their passwords on the registration page and on the user’s general settings page.</p>\n<h3>Blocks Are Coming to BuddyPress</h3>\n<p>The BP REST API offers a myriad of opportunities for developers to create new interactive features and front-end experiences, as well as improve performance by replacing AJAX calls. It also opens up the world of block creation. BP core contributors and community developers will have a much easier time creating blocks, since Gutenberg mainly uses REST.</p>\n<p>In anticipation of BP blocks, <a href=\"https://wptavern.com/buddypress-5-0-to-add-category-for-storing-buddypress-blocks\" rel=\"noopener noreferrer\" target=\"_blank\">5.0 includes a new panel in the block inserter</a> that allows developers to organize their custom blocks under a BuddyPress category.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/buddypress-blocks-panel.png?ssl=1\"><img /></a></p>\n<p>BuddyPress 6.0 <a href=\"https://buddypress.trac.wordpress.org/ticket/8048\" rel=\"noopener noreferrer\" target=\"_blank\">may include core blocks for specific components</a> and core blocks may ultimately replace the plugin’s existing widgets. Contributors are still discussing which blocks to begin building. They are looking to get community feedback on blocks that will be the most useful, particularly from BuddyPress theme developers. The team <a href=\"https://bpdevel.wordpress.com/2019/10/01/bp-dev-chat-agenda-october-2-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">plans to discuss 6.0 release priorities</a> during the BP core dev chat on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20191002T1900\" rel=\"noopener noreferrer\" target=\"_blank\">October 2, 2019, at 1900 UTC</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 11:06:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress: September 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2019/10/the-month-in-wordpress-september-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7584:\"<p>September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.3 Security and Maintenance Release</h2>\n\n\n\n<p>Early in September, <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">version 5.2.3 of WordPress was released</a> as a security and maintenance release. Sixty-two individuals contributed to its 29 fixes and enhancements.</p>\n\n\n\n<p>The security issues fixed in this release owe thanks to numerous people who disclosed them responsibly. You can read more about the vulnerability reporting process <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">in the Core handbook</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3 Enters Beta</h2>\n\n\n\n<p>WhileWordPress 5.3 is slated for release on November 12, it has already entered the beta phase with <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">the second beta release being made available</a> at the end of September. As this is a major release, it will feature a number of new features and enhancements, including <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">significant improvements to the block editor</a>, <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">updates to the Site Health component</a>, <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">new block APIs</a>, <a href=\"https://make.wordpress.org/core/2019/09/23/core-widgets-new-aria-current-attribute-in-wordpress-5-3/\">accessibility updates</a>, and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">much more</a>.</p>\n\n\n\n<p>You can test the 5.3 beta release by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a> on any WordPress site, although as this is software that is currently in development, we don’t recommend installing it on a live site.</p>\n\n\n\n<p>Want to get involved in building this release? <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Test the beta</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Date/Time Component Improvements</h2>\n\n\n\n<p>For over a year, contributors involved in <a href=\"https://make.wordpress.org/core/components/date-time/\">the Date/Time component</a> of WordPress Core have been working hard on the “wp_date” project. The goal of this project is to fix and streamline the way that Core handles times and dates throughout the platform.</p>\n\n\n\n<p>This ambitious project has seen incremental changes over the last few Core releases. The upcoming 5.3 release <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">will include the final and most significant changes</a> to the component, bringing much-needed stability to time handling in WordPress Core.</p>\n\n\n\n<p>Want to get involved in the Date/Time component of WordPress Core? <a href=\"https://make.wordpress.org/core/components/date-time/\">Learn more about it</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-datetime channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Theme Review Team Structure</h2>\n\n\n\n<p>After recent discussions around the goals of the Theme Review team, <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">some changes have been made</a> to the leadership structure of the team. The team leads are now ‘representatives’ of different areas of the work that they do. This flat structure allows for representatives to work in more loosely defined areas so they contribute to the team in more diverse ways, and helps the team to be more focused on setting and achieving their goals. The new structure is outlined <a href=\"https://make.wordpress.org/themes/handbook/about/members/\">in the team handbook</a>.</p>\n\n\n\n<p>Want to get involved in reviewing themes for WordPress? Follow <a href=\"https://make.wordpress.org/themes/\">the Theme Review team blog</a>, and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Default Theme: Twenty Twenty</h2>\n\n\n\n<p>The upcoming 5.3 release will also include <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">a new default theme for WordPress</a>, <em>Twenty Twenty</em>. This theme will have a strong focus on readability and accessibility while being optimized for the block editor that first shipped with WordPress 5.0.</p>\n\n\n\n<p>Development of <em>Twenty Twenty</em> has been going quickly, with <a href=\"https://make.wordpress.org/core/2019/09/30/twenty-twenty-update/\">a recent update</a> showing more of the design and layouts that you can expect when the theme is released with WordPress 5.3 in November.</p>\n\n\n\n<p>Want to get involved in building <em>Twenty Twenty</em>? You can <a href=\"https://github.com/WordPress/twentytwenty\">contribute on GitHub</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Gutenberg project has continued to see regular updates with <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">the latest version</a> set to be included in WordPress 5.3.</li><li>Members of the Community Team <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\">will run a workshop</a> to help event organizers create welcoming and diverse spaces for attendees. </li><li>There are some <a href=\"https://make.wordpress.org/updates/2019/09/20/wordpress-user-pro-survey-11-questions-and-a-script/\">proposed updates for the annual WordPress user survey</a> that need community feedback.</li><li><a href=\"https://make.wordpress.org/docs/2019/09/23/summary-for-helphub-meeting-23-september-2019/\">Work continues on the HelpHub project</a> where contributors are moving documentation to the updated support portal.</li><li>The Gutenberg team performed further usability tests in August, <a href=\"https://make.wordpress.org/test/2019/09/06/gutenberg-usability-testing-for-august-2019/\">with some interesting results</a>.</li><li><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\">Version 5.0 of BuddyPress was released</a> near the end of this month, featuring a new REST API, improved group management, and other enhancements.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 08:05:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"HeroPress: 14 Years’ Detour\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://heropress.com/essays/14-years-detour/#utm_source=rss&utm_medium=rss&utm_campaign=14-years-detour\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:35176:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/10/100219-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I learned not only to keep face and move forward, but also to dare.\" /><p><a href=\"https://heropress.com/feed/#ru\">Это эссе также доступно на русском языке</a></p>\n<blockquote><p>Knowing what you want isn’t enough.</p></blockquote>\n<p>At the age of fifteen, I was told to hurry up with my professional education, if I don’t get a free place at university no one will pay for me. Last one was obvious and not because of money. I didn’t know how high or low my chances are even I had very good marks. I could have been just the biggest fish in the pond, but I wanted to leave people who treat me like expense item as soon as possible anyway. I made up my mind and it’s separated me from my classmates. I got secondary school certificate and left school instantly without goodbyes.</p>\n<p>My knowledge of opportunities was very narrow. I thought to be an ecologist or guide translator from German, based on what I was taught at school, or an advertiser, it was ads boom in Russia, ads were fascinating, and I collected flyers. At the same time, I was already good a computer user and did a lot of typing for one of the school’s principals, sometimes instead of classes, volunteered once and they couldn’t say “no”.</p>\n<p>No one bothered to give me advice, but I was sure my future was unimaginable without computers and came to a general decision to be a programmer. The range of technical schools was not wide, and names of specializations looked very abstruse. I messed up and spend four years studying transistor markings, soldering and drawing PCB layouts. Programming course turns out to be a bit of a joke, it was Pascal, we didn’t even try to do something useful with it. English course was another flaw in this education, the teacher was busy showing off and teasing girls. I’m not sure if he even knew the subject. He was fired after our collective petition. We got good marks just to forget about it. I left technical school with honors degree and improved typing skills.</p>\n<p>It was wild unfriendly market I faced. I didn’t know how to recognize a normal job offer from sinister one, so I bumped into several, like banging in people’s doors and pitch them in buying cheap stuff for very high price. It was harassing and I have no idea how long I would’ve looked for work without help.</p>\n<h3>The wrong approach can cause failure</h3>\n<p>I was lucky to have a father in an IT company. He proposed me like a substitute to typists when I was still a student and when I finished, helped me to get a job on updating a law system on client’s computers. Maybe I could get it by coming from the street, but I had to know where the entrance is. Half a year later I got a full-time job in the same service department and started to play volleyball with colleagues. It was great to meet people from other departments and on the field was no big difference between director and analyst, it’s fair play. I liked my place and my clients, but I was “friendly” told that without a university degree I will have no further promotions.</p>\n<p>At this time, I tried to study PHP by a book. It was very exciting at first, but a lot of functions without explanation how to build something useful with them didn’t make much sense and when I tried, I failed and backed off. It was hard to admit a fail even to myself and it was nagging me for a long time.</p>\n<p>I had to choose something I can handle; I’m interested in and can afford. It turned out to be advertising. I spent most of my and my husband’s holidays on sessions in the next 6 years. It was tricky for him to make me to leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got my high marks just memorizing all the words in a textbook and how they must sound. Again, I wanted something I cannot handle.</p>\n<blockquote><p>I started to hate my workplace long before I finished education with another honor degree no one was interested in.</p></blockquote>\n<p>I got a promotion quite soon despite apprehensions but then my chief was dismissed and with new one the things became very tense; I escaped to have a baby and spent a whole three years on child’s care holidays full of doubts. I tried to get off by studying, drawing and baking but the pram was pulling me back. I didn’t use to stay put, rely on my husband’s money and be separate from other people. I didn’t want to come back, but it looked like I have no better choice, I was convinced (overall, rightly) that not too many companies want in office position a woman with small baby and lots of sick leaves.</p>\n<p>After I returned at work it became clear that the situation in my department was unhealthier than ever, I lost my place and next boss treated all back-office girls like pieces of furniture. In a few months I had enough.</p>\n<h3>The flip side of the coin can become a black swan</h3>\n<p>I wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted solid product to work with. Now I see that it isn’t a point at all.</p>\n<p>It turned out to be difficult to find a job outside IT, some HRs was kind enough to answer that with my experience I’ll better be in IT.</p>\n<p>Still I was very hopeful, studied hard and considered myself well, but once again I set a low bar to my employers. Companies I worked in wanted to get all publicity and sales rise through a cost of my salaries. I was careless once, the next time I asked specifically about budget before signing up and was assured, but still they meant my wages. It was a tough period of disappointments.</p>\n<p>When I was offered a part-time administrative job with “ok” to sick leaves, I took it gladly like a reprieve. It was far from home, and I was spending 2-3 hours a day on buses with Harry Potter audio books for company. In these traffic jams I started to feel English at last and loved it, it gave me a freedom no money can buy. And despite the long way I managed to play volleyball with my husband and his colleagues. Life was getting better.</p>\n<p>This job itself in addition to low payment had something valuable to me — a working website. After my boss had a row with its developer, I got it to maintain, did some reverse engineering and understood how it works. It wasn’t a most creative site, but it gave me a view. I started to write simple sites from scratch.</p>\n<blockquote><p>My first JavaScript calculator almost made me crazy, but I pursued.</p></blockquote>\n<p>From time to time I was asked for help from a friend or relative, usually to solve some urgent problems. So, I started to meet popular CMSs. One of the first I met with was WordPress. There was some issue in theme, which was changed and dropped by developer. I was digging a whole weekend deciphering how it works and found infinity loop to fix. Back then for me it was just a system…</p>\n<p>Two years later I found myself still clinging to my temporary job. I was tired of working for a hard nosed dictator, the last drop was his statement that I was not a programmer, because he hadn’t seen anything I made. I’ve already written some parts of website he asked for, so it was just unfair. I became angry and it was exactly what I needed, a big kick.</p>\n<p>I went out but still had no courage to pretend on a developer’s place and landed in some franchise company selling “box version” websites. It was another tough half of a year with a lot of work, low payment and plan failures, ending with pneumonia. I see now that I was making a disservice to customers, websites are not a microwave meal — quick, cheap and dummy. There was no life in them without a lot of work no one bargained to buy or do. Most of the sites I sold back then died when year expired but they never were truly alive and useful.</p>\n<h3>You need to pluck up your courage to become lucky</h3>\n<p>When I recovered, I search through developer’s job offers, but it was difficult to find something suitable worth trying to apply. I was reading job advertising and it looked, and still is, like mostly IT company are presented and they want geniuses who know a lot of technologies and frameworks at once. It was very distressing just to look.</p>\n<p>And then I became lucky again. I opened a private ads site and almost immediately found a job which was fitted me perfectly — they wanted someone with experience to write from scratch, understand another’s code and maintain it, ability to translate technical documentation and articles and make simple design of printing products. I made test task and there was no need in my resume or diplomas, I was taken. It’s turned out direct ad from one of sales departments in tech company and I passed by HR, who most likely wouldn’t even have considered me. Superior agreed to have me remotely most of the time, it solved sick leaves problem even if it was already much better than before. Addition to better salaries and calm work without over hours, I got very pleasant colleagues. We are friends ever since, despite back then no one guessed to invite me to play volleyball.</p>\n<p>It was 14 years after the original decision to be a programmer and it was only the beginning. I left this amazing place a couple years later when it held no more challenges for me.</p>\n<h3>Conscious decisions require wide knowledge</h3>\n<p>After I worked with a bunch of CMSs, I started to be able to compare them and understood not only that WordPress is the best one for developers and clients but also that I didn’t see right examples at all. The biggest flaw of WordPress — it’s so easy to make things work that there’s no need to bother and do things right and this becomes a problem later. I also saw bad cases on very different systems… and did them as well.</p>\n<p>I used to work relying on examples at hand, documentation and Google, but searching for a specific feature or a solution, I found myself again missing the whole picture. At this point Udemy courses came very handy and then I started to attend WordPress events, firstly online and then by foot, trains and airplanes and discovered a wide and very alive community. Now I know not only where to look but whom to ask and how to be not far from those who stays on top of things as much as possible. Most important is that I found allies who don’t think I’m going crazy, speaking with shining eyes about work, with whom I share a passion and fondness to WordPress. It’s what matters.</p>\n<p>Now, after 6 years of full time in development, I still feel myself like a newbie, it’s endless learning, frequent discoveries, mistakes and impassable wish to do better…</p>\n<h3>The way is the destination</h3>\n<p>I made a path very uneven, a lot of mess and banging, but for me it’s like a kaleidoscope where a little turn presents a new picture, new “a-ha” moment, new excitement after seemingly pointless efforts. When in doubt I remind myself about <NAME> who tried a lot of things before struck gold with advertising and it’s maybe why.</p>\n<p>Finally, I learned not only to keep face and move forward but also to dare.</p>\n<h3>Freedom is to make your own mind</h3>\n<p>I left my last workplace after we finished exhausted two years project on another CMS system which was a big reinventing of wheels and made up my mind to work only with WordPress from now on and dare to be my own boss.</p>\n<p>Now I’m officially an entrepreneur. This big boy’s stuff looks difficult. But I don’t want to be told, collaboration is a new black wherever I look.</p>\n<h2 id=\"ru\">Крюк длинной в 14 лет</h2>\n<blockquote><p>Не достаточно знать, что хочешь</p></blockquote>\n<p>В 15 лет мне было сказано, чтобы я поспешила с профессиональным образованием, если не поступлю бесплатно в институт, никто платить за меня не будет. Последнее было очевидно и не из-за денег. Несмотря на весьма хорошие оценки, я не могла оценить свои шансы, могло оказаться, что я просто большая рыба в маленьком пруду. Но в любом случае, я хотела как можно быстрей расстаться с людьми, видящими во мне одну большую статью расходов. Я приняла решение и это откололо меня от моих одноклассников. Ушла из школы я, не прощаясь, как только получила на руки сертификат об окончании 9 классов.</p>\n<p>Нужно было выбрать профессию, но потенциальные возможности были весьма туманны. Я могла стать экологом или немецкоязычным гид-переводчиком, на основе того, чему училась в школе, или рекламщиком, в России тогда начался рекламный бум, и она казалась очень захватывающей, я даже листовки собирала. В то же самое время я уже была хорошим пользователем компьютера и набирала документы для завуча старших классов, иногда вместо занятий — вызвалась один раз и потом уже не могла сказать «нет».</p>\n<p>Никто не пытался дать мне совет, но я была уверена, что будущее немыслимо без компьютеров и решила стать программистом. Выбор техникумов в пределах разумной досягаемости, был не очень большой, а названия специальностей выглядели очень мудрено. Я ошиблась и провела следующие 4 года изучая маркировку транзисторов, паяя и чертя печатные платы. Курс программирования обернулся дурной шуткой, это был Паскаль, и мы даже не пытались сделать с ним что-то полезное. Другим серьезным недостатком этого обучения стал английский язык, преподаватель выпендривался и задирал девушек, я так и не поняла знал ли он язык вообще. В конце концов он был уволен после нашей коллективной жалобы, а мы получили хорошие оценки, в качестве решения проблемы. Я выпустилась из техникума с красным дипломом и улучшенными навыками машинистки.</p>\n<p>Рынок труда был диким и неизведанным. Не зная, как распознать сомнительное предложение о работе, наткнулась на несколько таких, как ходить по домам и навязывать людям дешевые утюги за внушительную цену. Поиск работы оказался изматывающим, без посторонней помощи, я могла бы еще долго ходить по этим собеседованиям.</p>\n<h3>Неправильный подход может быть причиной неудачи</h3>\n<p>Мне повезло, отец работал в IT-компании. Он предложил меня в качестве подмены наборщикам, когда я еще училась, а когда закончила, помог получить работу по обновлению правовой системы на компьютерах у клиентов. Может быть меня взяли бы и, приди я с улицы, но для этого нужно было знать, куда идти. Через полгода я получила место в офисе в том же отделе обслуживания, а также начала играть с коллегами в волейбол. Это было здорово, знакомиться с людьми из других отделов, а еще на поле нет большой разницы между директором и аналитиком. Мне нравилось мое место и мои клиенты, но опять мне было «дружески» сказано, что без высшего образования, на большее я могу не рассчитывать.</p>\n<p>В это время я пыталась изучать PHP по книге. В начале все выглядело очень захватывающе, но функции без понимания как из них построить что-то целое не имели большого смысла, я пробовала, у меня не получалось, и в конце концов сдалась. Было сложно признаться, что я не смогла, даже самой себе и это неприятное чувство преследовало меня долгое время.</p>\n<p>Нужно было выбрать то, с чем я смогу справиться, что-то интересное и что будет мне по карману. Выбор пал на рекламу. В следующие 6 лет большая часть наших с мужем отпусков ушла на мои сессии. Ему было сложно выгнать меня из-за компьютера, я к нему приклеилась, поэтому он купил мне мой первый ноутбук. Английский по-прежнему давался мне очень трудно, и чтобы получить пять, пришлось переводить и запоминать вместе с транскрипцией все слова в учебном пособии. Снова я хотела то, что мне не давалось.</p>\n<blockquote><p>Я начала ненавидеть свое рабочее место задолго до того, как закончила университет с еще одним никому не нужным красным дипломом.</p></blockquote>\n<p>Я получила повышение достаточно скоро, несмотря на опасения, но затем руководство сменилось и работать с новым стало весьма напряженно. Я сбежала в декрет и провела следующие три года отпуска по уходу за ребенком полные сомнений. Учеба, рисование и приготовление пирогов отвлекали, но я оказалась не готова быть привязанной к коляске — ограниченной в передвижениях, оторванной от других людей, полагаться на деньги мужа. Возвращаться на работу я не хотела, но не видела лучшего выхода, была убеждена, и вполне резонно, что ни так много компаний готовы взять на офисную позицию женщину с маленьким ребенком и кучей больничных.</p>\n<p>После того, как я вернулась на работу, стало ясно, что ситуация стала еще хуже, чем была. Я потеряла свое место, а очередной новый руководитель относился во всем девушкам «поддержки» как к мебели. Несколько месяцев мне хватило.</p>\n<h3>Обратная сторона медали может быть золотой</h3>\n<p>Я хотела быть маркетологом. Зная, как непросто продавать что-то неосязаемое, решила работать с товаром, который можно пощупать. Сейчас думаю, разница была только в голове.</p>\n<p>Оказалось, сложно найти работу вне IT-сектора, некоторые менеджеры по персоналу снисходили для объяснений, что мне будет лучше в IT.</p>\n<p>И все-таки я была настроена оптимистично, я усердно училась и считала, что хорошо справляюсь, но опять, оказалось, что установила слишком низкую планку для работодателей. Компании, в которых я работала, хотели и публикации, и рост продаж исключительно за счет моей зарплаты. Ошибившись один раз, в следующий я специально уточнила вопрос с бюджетом, и меня заверили, что он есть. Оказалось, что это по-прежнему только зарплата. Это был период разочарований.</p>\n<p>Когда мне предложили административную работу на полставки с терпимым отношением к больничным, я с радостью ухватилась за возможность взять передышку. Работа была далеко от дома, и я проводила 2-3 часа в маршрутках каждый день в компании с аудиокнигами про <NAME>. В этих дорожных пробках я наконец почувствовала английский язык и полюбила его, это дало мне свободу, которую невозможно купить за деньги. И, несмотря на долгую дорогу, я смогла играть после работы в волейбол с мужем и его коллегами. Жизнь налаживалась.</p>\n<p>Эта работа сама по себе, помимо низкой зарплаты, имела нечто ценное для меня – работающий сайт. После того, как мой начальник поссорился с разработчиком, я получила его на поддержку. Разобрав его на части, я поняла, как он работает. Это не был самый креативный сайт в мире, но он дал мне целостное представление, и я начала писать простые сайты с нуля.</p>\n<blockquote><p>Мой первый калькулятор на JavaScript практически свел меня с ума, но я продолжила.</p></blockquote>\n<p>Время от времени меня просили помочь родственники и друзья, обычно решить какую-то срочную проблему. Так я стала встречаться с популярными CMS. Одной из первых оказался WordPress. Там была проблема в теме, которую разработчик изменил и бросил. Я копала все выходные, но в конце концов нашла место, где код уходил в бесконечный цикл и исправила. Тогда для меня это была просто какая-то система…</p>\n<p>Два года спустя я все еще держалась за свою временную работу. Резкие манеры начальника перестали казаться забавными и последней каплей стало его категорическое заявление, что я не программист, потому что он не видел ничего, созданного мной. На тот момент я уже написала для сайта функционал, который он же просил, так что это было обидно. Я разозлилась и это стало толчком в нужном направлении.</p>\n<p>Я ушла, но все еще не пыталась получить работу разработчика, и в результате оказалась в одной из франшизных компаний, продающих сайты «из коробки». Это были сложные полгода с кучей работы, низкой зарплатой и провалами плана, закончившиеся воспалением легких. Сейчас, думаю, я оказывала клиентам медвежью услугу, сайт – не готовое блюдо для микроволновки, быстрое, дешевое и типовое. В этих сайтах нет жизни без вложения огромного труда, за которых никто не готов был платить. Большая часть сайтов умерли через год, но они и живыми то не были.</p>\n<h3>Нужно набраться смелости, чтобы повезло</h3>\n<p>Когда я поправилась, начала искать работу разработчика, но было сложно найти что-то подходящее даже просто чтобы решиться ответить на вакансию. В объявлениях были в основном представлены IT-компании, которым нужны гении, знающие огромное количество технологий и фреймворков. Только вид этих вакансий вгонял в депрессию.</p>\n<p>А потом мне снова повезло. Я открыла сайт частных объявлений и буквально сразу же нашла работу, которая мне подходила идеально — они хотели кого-то с опытом написания с нуля, умеющего разбираться и дописывать чужой код, переводить техническую документацию и статьи, а также делать простую полиграфию. Я сделала тестовое задание и была принята, ни дипломы, ни резюме уже не понадобились. Оказалось, это был объявление одного из отделов продаж в компании, занимающейся промышленным оборудованием, и я прошла в обход отделка кадров, который, уверена, даже не посмотрел бы на меня. Начальник согласился на мою работу удаленно, что решило проблему частых больничных, хотя ребенок рос, и их уже стало намного меньше. В дополнение к лучшей зарплате и спокойной работе без переработок и нервотрепки, мне достались замечательные коллеги. Мы дружим с тех пор, несмотря на то, что тогда никто не догадался позвать меня играть в волейбол.</p>\n<p>Это случилось через 14 лет после первоначального решения стать программистом и это был только начало. Я ушла через пару лет, когда ничего нового в работе уже не осталось.</p>\n<h3>Сознательные решения требуют широкий знаний</h3>\n<p>После того, как я поработала с разными CMS, смогла не только сравнить их между собой и понять, что WordPress лучшая из всех как для разработчиков, так и для клиентов, но также обнаружить, что вообще не видела хороших примеров разработки. Самая большая проблема WordPress — сделать так, чтобы работало, настолько легко, что мало кто не утруждает себя делать правильно, что позже оборачивается проблемами при доработке и поддержке. Впрочем, я видела плохие решения на разных CMS, да и сама их делала.</p>\n<p>Отталкиваясь от доступных примеров и документации и ища в поисковиках конкретные решения, я опять обнаружила, что не вижу всей картины. В этот момент курсы Udemy оказались очень кстати, а затем я начала посещать мероприятия WordPress, сначала онлайн, потом топая ни них ножками, оправляясь на поездах и самолетах, и обнаружила большое и весьма активное сообщество. Наконец-то я нашла не только тех, у кого можно спросить, но и как быть недалеко от тех, кто «в теме», насколько это вообще возможно. Самое важное – я нашла единомышленников, тех, кто не думает, что человек, говорящий с горящими глазами о работе, рехнулся, с кем у нас общая страсть и любовь к WordPress. Это то, что имеет значение.</p>\n<p>Сейчас, проработав 6 лет как разработчик, я все еще чувствую себя новичком, это бесконечное обучение, частые открытия, ошибки и непроходящее желание сделать лучше.</p>\n<h3>Смысл пути в самом пути</h3>\n<p>Мой путь очень извилистый, много метаний и набитых шишек, но для меня это как калейдоскоп, где каждый поворот показывает новую картинку, новое озарение, дает энергию двигаться дальше после казавшихся напрасными усилий. В периоды сомнений, я напоминаю себе о Дэвиде Огилви, который сменил множество специальностей, пока не добился успеха в рекламе.</p>\n<p>Я научилась не только сохранять лицо и идти вперед, но также набралась смелости.</p>\n<h3>Свобода — возможность принимать решения</h3>\n<p>Я ушла со своего последнего места работы, где мы закончили изматывающий двухлетний проект на другой CMS, ставший сам по себе большой ошибкой, и ни только приняла решение работать исключительно с WordPress, но и стать своим собственным начальником.</p>\n<p>Теперь я официально предприниматель. Все эти вещи «для больших мальчиков» выглядят достаточно сложными, но я больше не хочу слепо делать то, что мне скажут. В тренде коллаборации, куда ни глянь.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: 14 Years’ Detour\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=14%20Years%E2%80%99%20Detour&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: 14 Years’ Detour\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F&title=14+Years%E2%80%99+Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Share: 14 Years’ Detour\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/14-years-detour/&media=https://heropress.com/wp-content/uploads/2019/10/100219-150x150.jpg&description=14 Years’ Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: 14 Years’ Detour\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/14-years-detour/\" title=\"14 Years’ Detour\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/14-years-detour/\">14 Years’ Detour</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 05:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: <NAME> Steps Down From StudioPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/brian-gardner-steps-down-from-studiopress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7190:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><NAME> <a href=\"https://studiopress.blog/not-goodbye/\">announced he was stepping down</a> from his role with StudioPress this past Friday. Last year, <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">WP Engine acquired StudioPress</a>. After staying on board for the remainder of his contract, Gardner stepped down from his role with the company.</p>\n\n\n\n<p>“The past 15 months have gone by quickly, and it sometimes feels like yesterday that we made the announcement,” Gardner said in his post. “In the same breath, it has also felt like forever.”</p>\n\n\n\n<p>For many in the WordPress community, Gardner needs no introduction. He’s the founder of <a href=\"https://studiopress.com\">StudioPress</a> and co-created Genesis with <NAME>, one of the most popular WordPress themes today. In many ways, he’s the father of the modern professional WordPress theme ecosystem, becoming one of the first theme authors to figure out that you could make a living by providing WordPress products.</p>\n\n\n\n<p>He’s unafraid of letting his personal geek flag fly in his online life. He <a href=\"https://twitter.com/bgardner/status/6776616143294464\">quotes <NAME></a>, is a self-affirmed Starbucks addict, runs marathons, and loves family trips to Disney World.</p>\n\n\n\n<p>For many theme authors in the WordPress community, he’s an inspiration. Even as a former business competitor, I’ve always admired his work. More than that, I’ve admired how he runs his business. He never needed to be flashy. He never needed to create controversy for PR. He, almost quietly, built up a successful company. The splashes he made came from the products he and his company released.</p>\n\n\n\n<p>In 2007, Gardner released the Revolution WordPress theme to the public for sale. Some may argue that Revolution was the catalyst for the commercial WordPress themes ecosystem. There were several theme business startups around the same time. Revolution at least played a pivotal role in the market’s early growth.</p>\n\n\n\n<p>Gardner launched the Revolution business in 2008, but quickly <a href=\"https://www.studiopress.com/revolution-rebrands-as-studiopress/\">rebranded to StudioPress</a> in 2009 after some legal issues with the name. By late 2010, <a href=\"https://wptavern.com/studiopress-sold-to-copyblogger\">StudioPress merged with Copyblogger</a>.</p>\n\n\n\n<h2>Hindsight: The Biggest Regrets After 12 Years</h2>\n\n\n\n<p>When building a successful company, it’s easy to look back on things that could’ve been handled differently. There are deals passed up, ideas that flopped, and products that didn’t scale.</p>\n\n\n\n<p>“My biggest regret was not starting with (or switching to) a recurring business model,” said Gardner. “I think I left a lot of money on the table by not doing that, but once I merged StudioPress into Copyblogger Media, we decided to leave it as is and use the former as a doorway into our company’s ecosystem.”</p>\n\n\n\n<p>Many theme companies in the early days had lifetime sales. It’s unlikely many could foretell how they’d need to scale for 10 or 20 years down the line. The concept was relatively new in the WordPress space. Gardner kept up with the model despite most theme shops moving to subscription-based sales, which typically scale better in the long term.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>From a personal standpoint, I think I could have done better. There were a few seasons (some short and others a bit longer) where I strayed away from my involvement at StudioPress. While I justified it by thinking that it was OK to pursue side projects and other things, I realize looking back that jeopardized the trust our customers had in the brand. I think I may have leaned too heavily on the fact that we had a team, but in the same breath, I think it was necessary for StudioPress to outgrow the label of ‘<NAME>ner themes.’ This emphasis really helped with the transition after WP Engine acquired StudioPress.</p></blockquote>\n\n\n\n<h2>Building a Community Over Software</h2>\n\n\n\n<p>“Without a doubt, it’s the <a href=\"https://genesis.community/\">Genesis community</a>,” Gardner said when asked what he’s most proud of with his time at StudioPress. “When <NAME> and I set out to build Genesis (the framework), we were trying to solve a software problem and bring a better user experience for our customers.”</p>\n\n\n\n<p>Instead of building software, he learned what he was building was a community. After creating a showcase page for people using the Genesis theme, he kept getting requests for people to build child themes. This led to the creation of the <a href=\"https://www.studiopress.com/genesis-developers/\">Genesis Developers</a> page, which provided a way for people within the community to earn a living.</p>\n\n\n\n<p>“While community has always been important to me,” Gardner said, “I didn’t realize the ripple effect that creating a solid piece of software would have.”</p>\n\n\n\n<p>Gardner said the developers page created a way to pay it forward to the people who had helped him build a successful company. The idea has remained a success, and there are many designers within the larger WordPress community who list custom Genesis design work in their credentials.</p>\n\n\n\n<p>“I have had the pleasure of being able to meet and spend time with members of the community—from talking about their success to future plans,” said Gardner. “This past year at WordCamp US in Nashville, I was able to fully comprehend the level in which lives had been changed by what we had done—and those are the moments I could not be any prouder of what I built.”</p>\n\n\n\n<h2>What’s on the Horizon?</h2>\n\n\n\n<p>“Heh. The million-dollar question, right?” responded Gardner to whether he plans to continue building themes. He doesn’t have any plans to create a new theme business, and any themes that he does build will be built for Genesis and made available from his website.</p>\n\n\n\n<p>“Over the past few years, I have developed a particular love for minimalist design, and I want to spend some of my time and creative energy there.”</p>\n\n\n\n<p>Gardner is currently available for hire as a website designer through <a href=\"https://authentik.com/\">Authentik</a>, a design and development studio that he founded. Authentik specializes in branding and growth/audience building. The team builds everything from landing pages to more complex multi-system environments.</p>\n\n\n\n<p>However, there may be more to come from Gardner in the future. “I have created some personal space to pursue collaborations and consulting,” he said. “I have a renewed focus on my blog and want to spend more time consuming content—reading books, listening to podcasts, and meeting up with folks locally. My heart to help fellow creators is as strong as ever, and I feel there are some really interesting opportunities to do that.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2019 19:37:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Gatsby Days London Features Multiple WordPress Presentations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94405\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/gatsby-days-london-features-multiple-wordpress-presentations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9154:\"<p><a href=\"https://www.eventbrite.com/e/gatsby-days-london-2019-tickets-66228586485\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Days London</a> kicked off yesterday with a lot of momentum after Gatsby Inc. announced <a href=\"https://wptavern.com/gatsby-raises-15m-plans-to-invest-more-heavily-in-wordpress-and-cms-integrations\" rel=\"noopener noreferrer\" target=\"_blank\">a $15M Series A funding round</a> last week. The one-day conference drew 200 attendees and was the third in a series of Gatsby Days that have been held in other cities. They are designed to give the community an opportunity to meet in person and hear more about the future of the project from its creators and contributors.</p>\n<p>Gatsby creator <NAME> gave the keynote address and described what he sees as a shift from the LAMP-stack CMS era to “content mesh” architecture.</p>\n<p>“Monolithic CMSs were invented in 90s — they’re now migrating to become specialized modular services,” Mathews said. Gatsby provides the presentation layer for this new architecture and its plugin layer connects out to multiple content sources.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Old world vs new world explained by <a href=\"https://twitter.com/kylemathews?ref_src=twsrc%5Etfw\">@kylemathews</a> shown in his diagram when explaining <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a> <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> <a href=\"https://t.co/9EIxS6Sc3X\">pic.twitter.com/9EIxS6Sc3X</a></p>\n<p>— I<NAME> (@ileshmistry) <a href=\"https://twitter.com/ileshmistry/status/1178598732000108544?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>An informal survey of attendees showed that roughly a 1/3 were experienced at working with Gatsby and the majority of those in the audience were newer users or simply curious to learn more. Although Gatsby is currently geared primarily towards developers, Mathews described how the project is working towards enabling people in other roles who also work on websites.</p>\n<p>“We’re thinking really hard about how we can help everyone who works on a website, not just developers,” Mathews said. “Right now, Gatsby is essentially for developers, but our goal isn’t to help developers per se. Our goal is to help amazing websites be created.</p>\n<p>“This matters because the world runs on websites. More and more essential services that everyone relies on are websites and web apps, and we want to help with that. Developers are a key part of building websites but the actual process of building a web property is an incredible cross functional job for an organization to take on.” This process often includes designers, content editors, marketing professionals, and others.</p>\n<p>Gatsby, Inc.’s first cloud service, <a href=\"https://www.gatsbyjs.com/preview\" rel=\"noopener noreferrer\" target=\"_blank\">CMS Preview</a>, was inspired by this goal of assisting non-developers who work on websites. It shows content authors immediate feedback when they change content, which the team found to be a common requirement in most editorial workflows.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/GatsbyJS?src=hash&ref_src=twsrc%5Etfw\">#GatsbyJS</a> is great for <a href=\"https://twitter.com/hashtag/Drupal?src=hash&ref_src=twsrc%5Etfw\">#Drupal</a>. Our new <a href=\"https://twitter.com/hashtag/CMS?src=hash&ref_src=twsrc%5Etfw\">#CMS</a> Preview product makes preview lightning-fast! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /></p>\n<p>Thanks to all at <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> who came to see \"Live preview with <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@GatsbyJS</a> and <a href=\"https://twitter.com/hashtag/decoupled?src=hash&ref_src=twsrc%5Etfw\">#decoupled</a> <a href=\"https://twitter.com/drupal?ref_src=twsrc%5Etfw\">@Drupal</a>\"!</p>\n<p>Slides: <a href=\"https://t.co/tJ3A0dWlGV\">https://t.co/tJ3A0dWlGV</a><a href=\"https://twitter.com/hashtag/PHP?src=hash&ref_src=twsrc%5Etfw\">#PHP</a> <a href=\"https://twitter.com/hashtag/JavaScript?src=hash&ref_src=twsrc%5Etfw\">#JavaScript</a> <a href=\"https://twitter.com/hashtag/ReactJS?src=hash&ref_src=twsrc%5Etfw\">#ReactJS</a> <a href=\"https://twitter.com/hashtag/GatsbyDrupalPreview?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDrupalPreview</a> <a href=\"https://t.co/k4UwJCp18m\">pic.twitter.com/k4UwJCp18m</a></p>\n<p>— <NAME> @ #GatsbyDaysLondon <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f1ec-1f1e7.png\" alt=\"🇬🇧\" class=\"wp-smiley\" /> (@prestonso) <a href=\"https://twitter.com/prestonso/status/1178617916637552641?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>Mathews also said that the project’s design system library, <a href=\"https://www.gatsbyjs.org/docs/theme-ui/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Theme UI</a>, is another aspect of site creation aimed at making it more friendly for designers.</p>\n<p>“The goal of this is that designers and other non-developers can build Gatsby sites without building any code,” he said.</p>\n<p>Mathews covered some technical updates to Gatsby core and how the company is growing its team. A recording of the live broadcast is <a href=\"https://youtu.be/kuyLCwAMCZo?t=941\" rel=\"noopener noreferrer\" target=\"_blank\">available on YouTube</a>.</p>\n<h3>WordPress Sessions at Gatsby Days London: How to Use WPGraphQL and ACF as a Content Source, and Building and Selling Gatsby + WordPress Sites</h3>\n<p>Gatsby Days London featured presentations on several WordPress-related topics. <NAME> spoke about <a href=\"https://slides.com/alexandraspalato/gatsby-with-wordpress-and-wpgraphql-2\" rel=\"noopener noreferrer\" target=\"_blank\">using WordPress as a source for Gatsby</a>, demonstrating how to use WPGraphQL and Advanced Custom Fields (ACF) in a WordPress installation that produces content for a Gatsby front-end.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">now on stage is <a href=\"https://twitter.com/alexadark?ref_src=twsrc%5Etfw\">@alexadark</a> showing us how to work with Gatsby & WordPress!<a href=\"https://twitter.com/hashtag/GatsbyDayslondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDayslondon</a> <a href=\"https://t.co/1xP2sPjPam\">pic.twitter.com/1xP2sPjPam</a></p>\n<p>— <NAME> (@hhg2288) <a href=\"https://twitter.com/hhg2288/status/1178610525401423872?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>“The vibe at Gatsby days was fantastic, the beautiful Venue with round tables, the enthusiastic community where you can find people from WordPress, Drupal and others, all interested by Gatsby.” Spalato said.</p>\n<p>She found the event to provide a good balance between talks and networking, with unconference sessions devoted to WordPress, themes, Drupal, PWA, component libraries, migrating to Gatsby, and other topics.</p>\n<p>“For me it was fantastic to speak there, as Gatsby is the bridge between my two worlds – WordPress and JavaScript/React,” Spalato said. “It was my first real public talk and the feeling that people loved it and learned something is extremely rewarding, so I plan to do lot of more talks at WordCamps about Gatsby in the near future.”</p>\n<p><NAME> gave a presentation on building and selling Gatsby + WordPress sites. He shared the process he uses to sell Gatsby-powered projects to clients as high-performing websites. For a week leading up to his Gatsby pitch, Herrera uses <a href=\"https://speedcurve.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Speed Curve</a> to track a client’s website performance and then uses <a href=\"https://wpostats.com\" rel=\"noopener noreferrer\" target=\"_blank\">WPO stats</a> to demonstrate how performance improvements have helped competitors and industry leaders succeed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hhg2288?ref_src=twsrc%5Etfw\">@hhg2288</a> next up <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> building and selling <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a> and <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> sites <a href=\"https://t.co/F2l4TsQ5ks\">pic.twitter.com/F2l4TsQ5ks</a></p>\n<p>— <NAME> (@ileshmistry) <a href=\"https://twitter.com/ileshmistry/status/1178681914074554369?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>The emerging Gatsby ecosystem is one to keep an eye on, as the project intensifies its focus on providing deeper integrations for popular CMS’s. How these related technologies intersect with WordPress will impact developers’ expectations and choices for the architecture of their websites in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2019 17:41:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Automattic Has Discontinued Active Development on Edit Flow Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4251:\"<p><a href=\"https://wordpress.org/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow</a>, the modular editorial plugin that enables collaboration inside the WordPress admin, is no longer being actively developed. After no updates for nine months, <NAME>, a frustrated user, contacted Automattic to ask if they have abandoned the plugin or still plan to update it. A support representative from Automattic <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed</a> the company will no longer be updating Edit Flow:</p>\n<blockquote><p>At this time there is no active development of the Edit Flow Plugin.</p>\n<p>That being the case – two things I can suggest are:</p>\n<p>Submitting the issue to the Github repository for the plugin. This is used to track future development of the plugin and will be a canonical place for bugs or issues to be recorded.<br />\n<a href=\"https://github.com/Automattic/Edit-Flow\">https://github.com/Automattic/Edit-Flow</a></p>\n<p>It is possible to ‘fork’ the plugin and make the changes needed – or use an alternative that has already been forked like PublishPress:<br />\nhttps://github.com/Automattic/Edit-Flow</p></blockquote>\n<p>Edit Flow is active on more than 10,000 WordPress sites and its sporadic development has caused users to question whether it was abandoned several times over the years. It is still listed among the <a href=\"https://wpvip.com/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.com VIP plugins</a>, but will likely only be maintained for that platform going forward. <a href=\"https://github.com/Automattic/Edit-Flow/pull/499\" rel=\"noopener noreferrer\" target=\"_blank\">A 10-month old PR</a> was merged on its GitHub repository as recently as 19 days ago, after the contributor began to question whether the project was abandoned.</p>\n<p>In 2016, <a href=\"https://wptavern.com/hey-automattic-whats-going-on-with-edit-flow\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow went two years in between updates</a>, leaving frustrated users in the dark. After that incident, a representative from Automattic <a href=\"https://wptavern.com/hey-automattic-whats-going-on-with-edit-flow#comment-164215\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> the company was working on an internal effort to improve the maintenance of their own plugins in order to avoid a situation like this happening again. The company currently has 88 plugins listed in the official directory.</p>\n<p><a href=\"https://wordpress.org/plugins/publishpress/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress</a> is the only alternative editorial plugin with comparable features, including an editorial calendar, notifications, editorial comments, custom statuses, and a content overview. It also offers <a href=\"https://publishpress.com/knowledge-base/migrate/\" rel=\"noopener noreferrer\" target=\"_blank\">seamless migration of Edit Flow data to PublishPress</a>. A commercial version of the plugin includes additional features, such as a publishing checklist, reminders, permissions, a WooCommerce checklist, and more.</p>\n<p>“I think I can speak for those users of this plugin that we are not happy with the horrible handling of this plugin, how Automattic has ignored and abandoned it, leaving users to suffer in the continuing fails this out-of-date plugin is causing,” <NAME> <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in response to to the reply from Automattic’s support team.</p>\n<p>Unfortunately, this is always a risk when using free plugins from WordPress.org, especially ones without a direct business model supporting development. In many instances the plugin author’s first priority will be maintaining it for the paying customers. In this case that is WordPress.com VIP clients. Automattic has not posted an announcement on Edit Flow’s support forums, but an official communication would go a long way towards steering users in the right direction when they inevitably come looking for signs of life in the plugin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Oct 2019 03:31:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2993:\"<p>WordPress 5.3 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. </p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>, over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=09%2F24%2F2019..&milestone=5.3&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">45 tickets have been closed</a> since then. </p>\n\n\n\n<h2>Some highlights</h2>\n\n\n\n<ul><li>Work continues on the <strong>block editor</strong>.</li><li>Bugs fixed on<strong> Twenty Twenty</strong>.</li><li><strong>Accessibility</strong> bugs fixes and enhancements on the interface changes introduced with 5.3 beta 1:<ul><li>Iterate on the admin interface</li><li>Reduce potential backward compatibility issues</li><li>Improve consistency between admin screens and the block editor</li><li>Better text zoom management</li></ul></li><li>Support <code>rel=\"ugc\"</code> attribute value in comments (<a href=\"https://core.trac.wordpress.org/ticket/48022\">#48022</a>) – this particular ticket shows the WordPress project ability to integrate quick solutions to things that are changing unexpectedly – like Google new features.</li></ul>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2019 21:43:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"BuddyPress: BuddyPress 5.0.0 “Le Gusto”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10760:\"<p>Here’s our latest major release featuring the <strong>BuddyPress REST API</strong> !!</p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0.zip\">Get BuddyPress 5.0.0</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>We are very excited to announce the BuddyPress community the immediate availability of <strong>BuddyPress 5.0.0</strong> code-named “<strong>Le Gusto</strong>“. You can get it clicking on the above button, downloading it from our <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin repository</a> or checking it out from our <a href=\"https://buddypress.trac.wordpress.org/browser/branches/5.0\">subversion repository</a>.</p>\n\n\n\n<p><em>NB: if you’re upgrading from a previous version of BuddyPress, please make sure to back-up your WordPress database and files before proceeding. </em></p>\n\n\n\n<p>You can view all the changes we made in 5.0.0 thanks to our <a href=\"https://codex.buddypress.org/releases/version-5-0-0/\">full release note</a>. Below are the key features we want to get your attention on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-rest-api\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>The BP REST API opens a new era for BuddyPress!</h2>\n\n\n\n<p>You can now enjoy REST API endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n\n\n\n<p>BuddyPress endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with your community through plugins, themes, apps, and beyond.</p>\n\n\n\n<p>The BP REST API opens great new opportunities to improve the way you play with the BuddyPress component features: we couldn’t resist to start building on top of it introducing… </p>\n\n\n\n<h3>A new interface for managing group members.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\" alt=\"Screen Capture of the new Group Mange Members UI\" class=\"wp-image-308052\" /></a></div>\n\n\n\n<p>Group administrators will love our new interface for managing group membership. Whether you’re working as a group admin on the front-end Manage tab, or as the site admin on the Dashboard, the new REST API-based tools are faster, easier to use, and more consistent.</p>\n\n\n\n<h3>The BP REST API is fully documented</h3>\n\n\n\n<p>The development team worked hard on the features but also took the time to <a href=\"https://buddypress.org/2019/09/bp-devhub-1-0/\">write the documentation</a> about how to use it and how to extend it. BuddyPress developers, let’s start building great stuff for our end users: take a look at <a href=\"https://developer.buddypress.org/bp-rest-api/\">the BP REST API developer reference</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-groups\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved Group invites and membership requests</h2>\n\n\n\n<p>Thanks to the new BP Invitations API, Group invites and membership requests are now managed in a more consistent way. The BP Invitations API abstracts how these two actions are handled and allows developers to use them for any object on your site (e.g., Sites of a WordPress network).</p>\n\n\n\n<p>Read more about the <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\">BP Invitations API</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-forums\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Help our support volunteers help you.</h2>\n\n\n\n<p>Knowing your WordPress and BuddyPress configuration is very important when one of our beloved support volunteers tries to help you fix an issue. That’s why we added a BuddyPress section to the Site Health Info Administration screen.</p>\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\" alt=\"Screen capture of the BuddyPress section of the Site Health screen.\" class=\"wp-image-308058\" /></a>\n\n\n\n<p>The panel is displayed at the bottom of the screen. It includes the BuddyPress version, active components, active template pack, and a list of other component-specific settings information.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-heart\"></span></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-wordpress-alt\"></span></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved integrations with WordPress</h2>\n\n\n\n<h3>BP Nouveau Template Pack</h3>\n\n\n\n<p>In BuddyPress 5.0.0, the BP Nouveau template pack looks better than ever with the Twenty Nineteen theme.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\" alt=\"\" class=\"wp-image-308069\" /></a></div>\n\n\n\n<p>Nouveau now uses the same password control as the one used in WordPress Core, for better consistency between BuddyPress and WordPress spaces.</p>\n\n\n\n<h3>BuddyPress Blocks now have their own category into the Block Editor.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\" alt=\"\" class=\"wp-image-308070\" /></a></div>\n\n\n\n<p>Developers building tools for the Block Editor can now add their blocks to the BuddyPress category. This change provides a foundation for organizing custom BuddyPress blocks.</p>\n\n\n\n<p>Read more about this feature in this <a href=\"https://bpdevel.wordpress.com/2019/07/31/a-category-to-store-your-buddypress-blocks/\">development note</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/matt-comment.png\" alt=\"\" class=\"wp-image-308075\" /></a>Screen capture of the <a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\">comment</a> Matt made about BuddyPress 4.0.0</div>\n\n\n\n<p><em>PS: we know, just like Matt, you’re eager to enjoy high quality community blocks: now we have the BP REST API and this new Blocks category available in BuddyPress Core, get ready to be amazed for our next release. Fasten your seatbelts: BuddyPress blocks are arriving!</em></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/pizza.png\" alt=\"\" class=\"wp-image-308073\" /></div>\n\n\n\n<h2>BuddyPress Le Gusto</h2>\n\n\n\n<p>5.0.0 is code-named <strong>“Le Gusto”</strong> after the <a href=\"https://goo.gl/maps/tpvew6YSivZ5KX218\">well known Pizza restaurant</a> in Fortaleza, Brazil. It’s the perfect place to meet with friends and start tasting new flavors like <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/espellcaste/\" rel=\"nofollow\">@espellcaste</a>’s favorite one: the “Pizza de Camarão”. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-buddypress-logo\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Muito Obrigado</h2>\n\n\n\n<p>As usual, this BuddyPress release is only possible thanks to the contributions of the community. Special thanks to the following folks who contributed code and testing to the release: <a href=\"https://github.com/baconbro\">baconbro</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\"><NAME> (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/joncadams/\">boop (joncadams)</a>, <a href=\"https://profiles.wordpress.org/sbrajesh/\"><NAME> (sbrajesh)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\"><NAME> (dcavins)</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\"><NAME> (ericlewis)</a>, <a href=\"https://profiles.wordpress.org/geminorum/\">geminorum</a>, <a href=\"https://profiles.wordpress.org/gingerbooch/\">gingerbooch</a>, <a href=\"https://profiles.wordpress.org/ivinco/\">Ivinco</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\"><NAME> (whyisjake)</a>, <a href=\"https://profiles.wordpress.org/JarretC/\">Jarret (JarretC)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"><NAME> (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/klawton/\">klawton</a>, <a href=\"https://profiles.wordpress.org/kristianngve/\"><NAME> (kristianngve)</a>, <a href=\"https://profiles.wordpress.org/maniou/\">Maniou</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus (netweblogic)</a>, <a href=\"https://profiles.wordpress.org/imath/\"><NAME> (imath)</a>, <a href=\"https://github.com/bhoot-biswas\"><NAME></a>, <a href=\"https://profiles.wordpress.org/modemlooper/\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">Paul Gibbs (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/razor90/\">razor90</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/slaFFik/\"><NAME> (slaFFik)</a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME> (netweb)</a>, <a href=\"https://profiles.wordpress.org/truchot/\">truchot</a>, <a href=\"https://profiles.wordpress.org/venutius/\">Venutius</a>, <a href=\"https://profiles.wordpress.org/wegosi/\">wegosi</a>, and of course you for using BuddyPress <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-format-chat\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedbacks welcome!</h2>\n\n\n\n<p>Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please share your feedback about this version of BuddyPress in the comments area of this post. And of course, if you’ve found a bug: please tell us about it into our <a href=\"https://buddypress.org/support/\">Support forums</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2019 21:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: Preparing Themes For WordPress 5.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wptavern.com/preparing-themes-for-wordpress-5-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5011:\"<p>Now that <a href=\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\">WordPress 5.3 Beta 1</a> is open for testing and with the official release slated for November 12, it’s time for theme authors to begin making sure their themes are ready for several changes.</p>\n\n\n\n<p>Most work will revolve around the block editor. WordPress 5.3 will include versions 5.4 – 6.5 of the Gutenberg plugin, a total of 12 releases. This makes for a lot of ground to cover. The next release includes breaking changes.</p>\n\n\n\n<p>For themes without custom block styles, little should change. However, theme authors who have been building custom block designs will likely have some work to do if they haven’t kept up with the changes in the Gutenberg plugin over the past several months.</p>\n\n\n\n<h2>Block Style Variations API Introduced</h2>\n\n\n\n<p>WordPress 5.3 introduces new <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">server-side block style functions</a>. This means that theme authors who prefer PHP can now register custom block style variations without writing JavaScript code.</p>\n\n\n\n<p>The block styles feature allows theme authors to register custom styles for individual blocks. Then, they must apply custom CSS to these styles in the editor and the front end.</p>\n\n\n\n<p>The new functions are basic one-to-one matches to their JavaScript counterparts. Block styles still need to be registered on a per-block basis. Support for registering single styles to multiple blocks at once hasn’t landed in core.</p>\n\n\n\n<h2>New Block HTML Creates Breaking Changes</h2>\n\n\n\n<p>Despite WordPress’ commitment to backward compatibility over the years, the Gutenberg team hasn’t maintained that approach with blocks. Block HTML output in the editor and the front end has changed for some blocks. These changes will break custom theme styles in many cases.</p>\n\n\n\n<p>The following blocks have potential breaking changes for themes:</p>\n\n\n\n<ul><li><strong>Group:</strong> A new inner container element was added to the markup.</li><li><strong>Table:</strong> A wrapper element was added and the block class moved to the wrapper.</li><li><strong>Gallery:</strong> Like the table block, it received the same wrapper element treatment. Galleries also support a caption for the entire gallery block.</li></ul>\n\n\n\n<p>In my tests, the gallery block had the most obvious breaking changes. Depending on how it is styled, users could be looking at a single column of images instead of their selected number. The core development blog has a <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">complete overview of the HTML changes</a> along with code examples for addressing issues.</p>\n\n\n\n<p>It’d be interesting to see if the Gutenberg team makes similar HTML changes with other blocks in the future. Such changes make it tough for theme authors to maintain support between versions of WordPress and versions of the Gutenberg plugin. It also bloats CSS code when attempting to maintain compatibility. Adding an extra element doesn’t typically break things. However, moving an element’s class to another element is a dumpster fire waiting to happen. If these types of changes continue to happen, it could turn some theme authors away from supporting the block editor at a time when core needs to be encouraging more authors to design around it.</p>\n\n\n\n<h2>New Block Classes Added</h2>\n\n\n\n<p>Several <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">new CSS classes</a> are making their way into 5.3. For themes that remove core block styles on the front end, they need to add support for the classes to their theme’s stylesheet.</p>\n\n\n\n<p>WordPress is doing away with inline styles for left, right, and center text alignment. This is a welcome change because it moves CSS to its appropriate place, which is in a stylesheet. Theme authors need to make sure they support these new classes for the following blocks.</p>\n\n\n\n<ul><li>Heading</li><li>Paragraph</li><li>Quote</li><li>Verse</li></ul>\n\n\n\n<p>The columns block no longer supports column-specific class names. Version 5.3 supports custom column widths, which are handled with inline styles. It’s unlikely this will break most themes, but it’s worth testing.</p>\n\n\n\n<p>The separator block now supports custom colors. It is given both the text and background color class names on the front end. This allows theme authors to utilize the styling method they prefer. Ideally, a border color class would exist, but the block editor does not yet support selecting a custom border color. </p>\n\n\n\n<p>Quick developer tip: if your theme uses a border color for the separator block, use <a href=\"https://css-tricks.com/currentcolor/\">currentColor</a> to handle custom colors.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2019 16:45:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: Secure the News Project Finds 93% of Major Publishers Offer HTTPS Encryption by Default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/secure-the-news-project-finds-93-of-major-publishers-offer-https-encryption-by-default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4469:\"<p><a href=\"https://securethe.news\" rel=\"noopener noreferrer\" target=\"_blank\">Secure the News</a> is a project that was created by the <a href=\"https://freedom.press/\" rel=\"noopener noreferrer\" target=\"_blank\">Freedom of the Press Foundation</a> in 2016 to track HTTPS encryption across major news organizations’ websites. It lists the publications and automatically scores them on a scale of 0-100, based on HTTPS implementation according to <a href=\"https://securethe.news/methodology-and-metrics/\" rel=\"noopener noreferrer\" target=\"_blank\">best practices</a>, as defined by General Services Administration (GSA) Pulse’s current criteria for modern and secure HTTPS deployment. The score is converted to an A-F letter grade.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-4.29.56-PM.png?ssl=1\"><img /></a></p>\n<p>The primary benefits of news organizations adopting HTTPS include reader privacy and website security, but there are also other positive byproducts, such as protecting sources and preventing censorship. Secure the News provides some interesting data in its campaign to encourage more broad HTTPS adoption.</p>\n<p>In 2018, after one year of collecting data on HTTPS encryption at more than 130 major world news sites, the project found that HTTPS was available on 2/3 of the sites it monitors (89 of 131), up from 1/3 in 2016. Approximately <a href=\"https://securethe.news/blog/how-secure-are-news-sites-report-first-year-secure-news/\" rel=\"noopener noreferrer\" target=\"_blank\">60% of news organizations offered HTTPS encryption by default in 2018</a> and that number is up to 93% today.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-5.40.27-PM.png?ssl=1\"><img /></a></p>\n<p>Most of the WordPress-powered major news sites, such as <a href=\"https://arstechnica.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Ars Technica</a>, <a href=\"https://time.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Time</a> and the <a href=\"https://nypost.com/\" rel=\"noopener noreferrer\" target=\"_blank\">New York Post</a>, get a B ranking, with the exception of <a href=\"https://techcrunch.com\" rel=\"noopener noreferrer\" target=\"_blank\">TechCrunch</a> and <a href=\"https://qz.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Quartz</a>, which both scored an A.</p>\n<p>The most recent addition to the project is the ability to <a href=\"https://securethe.news/blog/introducing-regional-leaderboards-secure-news/\" rel=\"noopener noreferrer\" target=\"_blank\">sort publications by region on the homepage</a>. Publications based in North America and Europe lead the world in having the most secure HTTPS implementations. Asia has a smaller percentage of major news sites with a score of A- or higher. Some smaller regions, such as the Middle East and North Africa, Oceana, and South America, list just a handful of news organizations but they all have a score of B or higher. Secure the News is just getting started with this feature and is accepting feedback on the project’s GitHub account.</p>\n<p>In addition to promoting HTTPS adoption, the team behind Secure the News is also considering broadening its coverage to measure other ways that news sites are delivering secure content, such as whether the site has an <a href=\"https://en.wikipedia.org/wiki/.onion\" rel=\"noopener noreferrer\" target=\"_blank\">onion service</a>, is <a href=\"https://www.torproject.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Tor project</a> friendly, or has a <a href=\"https://freedom.press/training/blog/first-time-they-reach-out-protect-sources-themselves/\" rel=\"noopener noreferrer\" target=\"_blank\">confidential tip line</a>. The project also has more news sites to add and a long list of improvements they want to make to the <a href=\"https://securethe.news/methodology-and-metrics/\" rel=\"noopener noreferrer\" target=\"_blank\">metrics used to rank sites</a>.</p>\n<p>The code for <a href=\"https://securethe.news/blog/secure-news-open-source/\" rel=\"noopener noreferrer\" target=\"_blank\">Secure the News is open source</a> (licensed under the GNU AGPL) and <a href=\"https://github.com/freedomofpress/securethenews\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a> for anyone who wants to contribute or fork it for use with other site categories where browsing might be sensitive, such as libraries, adult sites, educational institutes, or medical facilities.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2019 23:58:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Rebirth of Creativity: Gutenberg and the Future of WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/rebirth-of-creativity-gutenberg-and-the-future-of-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10060:\"<p>I began using WordPress in 2005. I’d already been learning HTML and CSS for a couple of years. I even had a home-brewed blog that pulled posts from plain text files at one point. I knew enough JavaScript to do pop-up alerts and other annoying things that served no purpose and made for a poor user experience, even if they were fun for me.</p>\n\n\n\n<p>This was my second attempt at using WordPress. This time it was after a botched go of making PHP Nuke behave how I wanted. I had big dreams for my website but lacked the coding skills to make them happen. WordPress was simple enough to hack for a novice like me at the time. Sure, I broke my site more times than I could count, but I managed to put together my first real theme.</p>\n\n\n\n<p>I popped open Photoshop; grabbed a few images from <em>Angel</em>, my favorite TV show at the time; and began my work. I’d recently watched <em>Soul Purpose</em>, an episode that explored whether the titular character was truly the hero mentioned in an ancient prophecy. It was foretold that the vampire with a soul would shed his demon half and live as a human. It explored themes of the character’s place in the world. At 21 years old, it’s the sort of episode that resonated with a young man who was also looking for his place. I thought it fitting to work that into my theme’s design and began hacking away at a header for my theme.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of my first WordPress theme header.</div>\n\n\n\n<p>At that time, there was this loosely-connected underground of themers and hobbyists who were building WordPress themes based on their favorite TV series, movies, comic books, and more. That was my first real introduction to WordPress. These people were not building themes for profit. They were searching for their place in this small corner of the internet. At most, some were looking for validation from like-minded people who might enjoy their art. It was about creation for the sake of creation. Anyone could be an artist with a simple lesson in CSS, an image manipulation program, and enough grit to pour their soul into the project for a few hours.</p>\n\n\n\n<p>If there were ever a time that WordPress themes died, it was when the hobbyists who built for pure passion were overshadowed by business interests.</p>\n\n\n\n<p>Don’t get me wrong; business interests played a crucial role in propelling WordPress to become the most dominant CMS in the world. However, the balance has clearly shifted in favor of building WordPress themes for business and ecommerce rather than for the enthusiasts who just want to create. Other platforms have better catered to these users and filled in the gaps left open by WordPress. Tumblr became a safe-haven for popular culture fans. DeviantArt a home for artists. Wattpad for aspiring writers and fanfic lovers.</p>\n\n\n\n<p>Somewhere along the way, we lost the innocence and artistry of building WordPress themes for the pure fun of it. WordPress grew up and WordPress themes along with it.</p>\n\n\n\n<h2>Today’s Themes Are Not Tomorrow’s</h2>\n\n\n\n<p>In his post, <a href=\"https://www.binarymoon.co.uk/2019/09/the-end-of-wordpress-themes-is-in-sight/\">The End of WordPress Themes is in Sight</a>, <NAME> said, “Themes as we know them will no longer be made.” It is a bleak look at the future of WordPress theming. He notes that he doesn’t believe that he’ll be able to make a living building WordPress themes in the next couple of years.</p>\n\n\n\n<p>His worries are warranted. They have been shared by several theme authors over the past couple of years as the block editor (Gutenberg) was making its way into core WordPress. The official theme review team has discussed the team’s future role surrounding the coming changes.</p>\n\n\n\n<p>Gillbanks’ post comes on the heels of a post written by <NAME> on <a href=\"https://make.wordpress.org/core/2019/09/05/defining-content-block-areas/\">defining content block areas</a>. Essentially, the idea is for WordPress to allow users to edit areas outside of the post content via the block editor. Anything from the header, footer, sidebar, or otherwise would likely be fair game.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>In such a system, themes would be relegated to defining block areas, providing base styles, and designing block output. In many ways, this is what WordPress themes <em>should</em> be. Some might say that WordPress is putting themes back into their proper place of simply styling content. With the behemoth themes with hundreds or thousands of features we’ve seen over the past few years, this could be a welcome change. </p>\n\n\n\n<p>There’s huge potential for designers to step up and make their mark. I, for one, wouldn’t mind seeing CSS artists unleashed in the WordPress theme ecosystem.</p>\n\n\n\n<p>Gillbanks went on to say:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>There are definite benefits to doing this from a user’s perspective – they will have full control of their site – but it’s going to result in some very boring website layouts.</p></blockquote>\n\n\n\n<p>This is the point where I’ll respectfully disagree. Putting control in the hands of non-designers will be anything but boring.</p>\n\n\n\n<p><em>Do we all so easily forget the days of GeoCities?</em> The websites built from it may have been horribly inaccessible. They may have blared midi files as soon as you opened a webpage. They may have even had a flashing, scrolling marquee zipping across the header. Boring is not the word I’d use to describe them.</p>\n\n\n\n<p>As much as many of us want to put those days behind us (Come on, you had one of those sites at one point, right? Tell the truth.), there was something fascinating about it all. Real people built these sites because they were fun. The sites told you something about that person. It was a deeply personal look into this stranger’s world. Sometimes it was just a bunch of junk spewed onto the screen, but most sites were a reflection of the site owners at that point in time.</p>\n\n\n\n<p>It was ugly and beautiful all the same.</p>\n\n\n\n<p>Web developers and designers joke about those dark days of the web. It’s easy to look back at sites from the ’90s and cringe at the silliness (It makes you wonder what designers of 2050 will think about today’s designs, doesn’t it?). I choose to look fondly upon those days. It was a time before I became a “designer” with rules to follow.</p>\n\n\n\n<p>But, here’s the important point. We are not the arbiters of the web. It’s all about the user. If someone wants a blinking <NAME> GIF in their site header, more power to them. It’s the developer’s job to enable the user to do this in an easy-to-configure way.</p>\n\n\n\n<p><em>Wait? So Geocities is your argument for full-site editing in WordPress?</em></p>\n\n\n\n<p>Understanding why WordPress should become a full-site editor means understanding the average user. Developers are more apt to view things in a structured manner. I spent over a decade honing my development skills. Logic and order are old friends. </p>\n\n\n\n<p>With end-users, things may seem a bit more chaotic. A teenager might want to plaster a picture of her favorite band anywhere she wants on her site. A soccer mom might want to show her kid slamming home the winning goal. A poet may want to showcase one of his poems as a background image on his blog. Humans are creative beings. While our unique brand of artistry might not appeal to others, it’s still something we crave to share.</p>\n\n\n\n<p>It’s also important to understand that building WordPress themes is nowhere near as simple in 2019 as it was in 2005 when I started hacking away. The code is much more complex. It’s not quite as easy for a new user to piece together something fun as it once was. Unless you have a theme or plugin that allows you to do this with simple drag-and-drop or similar tools, users have little control over their own sites. And, that’s why the Gutenberg project is so revolutionary. Its mission is to put the power back in the hands of the people.</p>\n\n\n\n<p>Theme authors need to evolve. They will need to find a way to balance good design principles with the insane amount of freedom users will have. There’s nothing stopping designers from making sure the Bieber screengrab looks more presentable.</p>\n\n\n\n<h2>Are WordPress Themes Dead?</h2>\n\n\n\n<p>No. But, the theme landscape will certainly change and not for the first time. We need not look at that as a bad thing.</p>\n\n\n\n<p>Those hobbyists who like to tinker with their site, they will once again have power that was so long ago lost to more advanced code.</p>\n\n\n\n<p>There will also be sub-communities within the WordPress landscape. Some people will want something more akin to classic WordPress. Others will want a simple blog handled with Markdown (side note: I’m one of those people, and Gutenberg actually handles pasting from Markdown well). Plugins will be built to cater to every user’s needs. Themes will exist for different types of users. Client builds and enterprise solutions that look nothing like core WordPress aren’t going anywhere.</p>\n\n\n\n<p>There’s still a long road ahead. Theme authors need to be more involved with the development of Gutenberg as these features make their way into the plugin and eventually into WordPress. Otherwise, they’ll risk losing the opportunity to help shape the future theme landscape.</p>\n\n\n\n<p>Truth be told, I’m not sure what themes will look like in a few years. I have a horrible track record with predictions. However, I think it’s safe to say that there’ll be a place for designers.</p>\n\n\n\n<p>I’m excited because I feel like it will bring back the potential for users to have the control they once had and more.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2019 18:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Rich Reviews Plugin Discontinued after Vulnerabilities Exploited in the Wild\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/rich-reviews-plugin-discontinued-after-vulnerabilities-exploited-in-the-wild\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3397:\"<p>After <a href=\"https://www.wordfence.com/blog/2019/09/rich-reviews-plugin-vulnerability-exploited-in-the-wild/\" rel=\"noopener noreferrer\" target=\"_blank\">tracking exploits of a zero day XSS vulnerability</a> in the <a href=\"https://wordpress.org/plugins/rich-reviews/\" rel=\"noopener noreferrer\" target=\"_blank\">Rich Reviews plugin</a> for WordPress, Wordfence is recommending that users remove it from their websites. The company estimates that there are 16,000 active installations vulnerable to unauthenticated plugin option updates:</p>\n<blockquote><p>Attackers are currently abusing this exploit chain to inject malvertising code into target websites. The malvertising code creates redirects and popup ads. Our team has been tracking this attack campaign since April of this year. </p></blockquote>\n<p>Rich Reviews was removed from the WordPress.org Plugin Directory on March 11, 2019, due to a security issue.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-10.38.09-AM.png?ssl=1\"><img /></a></p>\n<p>One week ago, a Rich Reviews plugin user reported 3 out of 4 of her sites using the plugin were infected with redirect scripts and that removing the plugin fixed the issue. A digital marketing agency called Nuanced Media, the author of the plugin, <a href=\"https://wordpress.org/support/topic/plugin-not-supported-open-to-malware-uninstall-now/#post-11953681\" rel=\"noopener noreferrer\" target=\"_blank\">responded</a> to the post indicating that a new version would be released within two weeks:</p>\n<blockquote><p>We’ve been working on an overall rewrite of this plugin for a while now, but someone out there apparently wanted us to work faster on it, and decided to exploit our plugin to get some malware out there. We’re now going double-quick on it, and hope to have it back up (and newly cozy and secure) within the next two weeks.</p></blockquote>\n<p>Oddly, there seemed to be no rush to patch the issue that is currently being exploited. Yesterday, less than a week after assuring users that a new version is coming, the company behind the plugin announced that it is <a href=\"https://nuancedmedia.com/wordpress-rich-reviews-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">discontinuing active support and development on Rich Reviews</a>.</p>\n<p>Nuanced Media CEO <NAME> cited Google’s recent changes to its <a href=\"https://developers.google.com/search/docs/data-types/review-snippet#local-business-reviews\" rel=\"noopener noreferrer\" target=\"_blank\">business review guidelines</a> as the reason for discontinuing its development.</p>\n<p>“As part of this update, in the organic search results, Google has decided to remove all merchant review star ratings that businesses display on their own URL,” Flannagan said.</p>\n<p>“Based on this information, we have discontinued all active development and support on Rich Reviews. We apologize for any inconvenience.”</p>\n<p>The announcement does not include any information about the vulnerability or the recent exploits. Users should assume that no patch is coming to the plugin, since it has been officially discontinued. It’s already not available to potential new users on WordPress.org, but those who have Rich Reviews active on their sites should deactivate it and remove the plugin as soon as possible to avoid getting hacked.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Sep 2019 18:25:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Gatsby Raises $15M, Plans to Invest More Heavily in WordPress and CMS Integrations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/gatsby-raises-15m-plans-to-invest-more-heavily-in-wordpress-and-cms-integrations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5857:\"<p><a href=\"https://www.gatsbyjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Inc</a>. CEO <NAME> announced a <a href=\"https://www.gatsbyjs.org/blog/2019-09-26-announcing-gatsby-15m-series-a-funding-round/\" rel=\"noopener noreferrer\" target=\"_blank\">$15M Series A funding round</a> today, just one year after creating the company with GatsbyJS core contributors. The open source Gatsby project started in 2015 to provide a framework for developers to quickly build websites with React. As the project soared in popularity, Mathews formed a company to fund its ongoing development and further invest in the growing Gatsby ecosystem of products.</p>\n<p>This round of funding will enable Gatsby to grow its 35-person team while investing in open source and cloud services that complement the company’s products.</p>\n<p>“With Gatsby, we’re striving to create a business model that will drive many millions of dollars of investment in open-source tools and enable people to build the next generation of web experiences,” Mathews said.</p>\n<p>At the forefront of the company’s vision is the idea of “reinventing website development.” Gatsby has popularized the concept of a “<a href=\"https://www.gatsbyjs.org/blog/2018-10-04-journey-to-the-content-mesh/\" rel=\"noopener noreferrer\" target=\"_blank\">content mesh</a>,” a platform that provides the infrastructure layer for a decoupled website and reimagines the role of a CMS within this architecture.</p>\n<p>Gatsby’s goal of creating more integrations for CMS’s was a big part of Mathews’ funding announcement. Instead of writing off LAMP stack architecture as slow and obsolete, Gatsby is creating bridges to the CMS’s that power a large portion of the web:</p>\n<blockquote><p>Instead of a monolithic CMS powering everything, Gatsby ties together specialized services with a modern development experience and optimized website delivery.</p>\n<p>This content mesh empowers developers while preserving content creators’ workflows. It gives developers access to great cloud services without the pain of manual integration.</p>\n<p>Web developers from dozens of web CMS communities like WordPress and Drupal are going “headless” and using Gatsby as the presentation layer for their CMS.</p>\n<p>We’re forming partnerships with these communities to create seamless integrations between their solutions and Gatsby.</p></blockquote>\n<p>Gatsby will be using some of its funding to invest more heavily in the WordPress ecosystem. The company hired <a href=\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\" rel=\"noopener noreferrer\" target=\"_blank\">hiring <NAME></a>, creator of the GraphQL for WordPress project, in June, and plans to add more WordPress developers.</p>\n<p>“We recently hired someone else to work alongside Jason in developing WPGraphQL (announcement coming soon!) and are currently hiring for several roles on the team,” Mathews told the Tavern.</p>\n<p>WordPress powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34.6% of the top 10 million websites</a> and <NAME> has previously estimated its ecosystem to be a $10 billion industry. The CMS is <a href=\"https://joost.blog/cms-market-share-a-numbers-analysis/\" rel=\"noopener noreferrer\" target=\"_blank\">showing no signs of decline</a>, and is a market that Gatsby product developers are strategically targeting.</p>\n<p>WordPress adopted React as its JavaScript framework in 2017, and built its new Gutenberg editor on top of it. Although some early adopters began digging deeper into React and creating their own products with it, the majority of PHP developers have been slow to move in that direction. Gatsby provides a bridge for those who are just getting started.</p>\n<p>“We think that for many web developers, a Gatsby project may be the first time they are using React, GraphQL, webpack or even Node.js,” Mathews said. “And that’s not just the case for WordPress developers – the same can be true for professionals in the Drupal, Rails, or .NET ecosystems.</p>\n<p>“It’s our goal to make a framework that empowers developers to use these technologies easily, then dive deeper as they gain more experience. So, instead of taking days to configure webpack for the first time, you can use a Gatsby Theme that connects to WordPress as a data source, and automatically get a blazing fast site. Later, you can learn the innards of the system, and begin customizing Gatsby yourself.”</p>\n<p>While Gatsby as a framework enables developers to bypass a lot of the technical and tooling jargon that has made modern development so complex, it is still a framework geared almost exclusively towards developers. Mathews said the company’s vision will continue to focus on enabling developers, not on creating solutions to make Gatsby more accessible to the non-technical crowd.</p>\n<p>“We are focused on making Gatsby the best choice for WordPress developers who want a flexible and powerful presentation layer for their headless WordPress sites,” he said. “Non-technical team members or clients will still use WordPress to create and manage content, while the web developers on their team or at the agency they hired get to be productive using the best development tools available.”</p>\n<p>Gatsby plans to use the funding to invest $3 million per year in open source, including the core Gatsby project, official plugins, and more learning materials. The funding is also good news for the future of the <a href=\"https://www.wpgraphql.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a> project, which should see deeper integration with Gatsby in the near future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2019 22:35:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Long-Needed Date/Time Improvements Land in Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/long-needed-date-time-improvements-land-in-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4026:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After more than a year and several WordPress updates, an <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">overhaul of the core Date/Time component</a> concluded. WordPress 5.3 will ship with fixes for long-standing bugs and new API functions.</p>\n\n\n\n<p>Andrey “Rarst” Savchenko spearheaded this project and worked through most of the issues in his <a href=\"https://github.com/Rarst/wp-date\">WP Date</a> fork of WordPress. Much of his work toward addressing the problems with this core component goes back further with the initialization of his <a href=\"https://github.com/Rarst/wpdatetime\">WPDateTime project</a>.</p>\n\n\n\n<p>Diving into the Date/Time component is no small feat. Addressing one issue leads to another. It’s a rabbit hole that few in the community have navigated. Many developers were also unaware of the issues. However, the bugs lingered for years, and users had no working solution for the problems they were facing.</p>\n\n\n\n<p>The most common errors were caused by core bugs or developer errors due to compatibility issues, described Savchenko. This would cause user-facing issues such as post scheduling and other time-based operations.</p>\n\n\n\n<p>With the release of WordPress 5.3, all existing functions should behave more reliably. Developers working on the component fixed several bugs and updated incorrect inline code documentation for many core functions. Along with the fixes, 5.3 will ship with new <a href=\"https://github.com/Rarst/wp-date/issues/4\">Date/Time API functions</a>. The updated API includes unified time zone retrieval, localization, and PHP interoperability functions.</p>\n\n\n\n<p>Savchenko called it “the slow descent into madness” when asked of the catalyst for diving into the Date/Time component and its underlying issues. “I started to notice serious bugs in the component from WordPress Stack Exchange questions about them, and the more I looked over years the more clear the dire state of it became to me.”</p>\n\n\n\n<p>One of the major problems is the way WordPress handles timestamps. “I actually had to invent the ‘WordPress timestamp’ term,” said Savchenko. “There was no name for it in core development and inline documentation incorrectly called these Unix timestamps before.” WordPress adds a time zone offset to the real Unix timestamp, which causes issues with upstream PHP and external systems. </p>\n\n\n\n<p>WordPress timestamps couldn’t be removed from core without breaking backward compatibility. Plugin and theme developers should avoid working with the WordPress timestamp and opt to use the <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">recommended methods</a> outlined in Savchenko’s post.</p>\n\n\n\n<p>WordPress date functions were originally written in PHP 4, a version of PHP so long-dead that it’s almost not worth digging up the end-of-life date (it’s <a href=\"https://www.php.net/eol.php\">11 years</a>, by the way). PHP 5.2 introduced the PHP <code>DateTime</code> and <code>DateTimeZone</code> classes and has continued receiving improvements over the years. WordPress date functions were never updated to utilize newer standards. The platform’s more recent bump to a minimum of PHP 5.6 also meant that the <code>DateTimeImmutable</code> class introduced in PHP 5.5 would be available. The version bump helped land the new API functions in WordPress 5.3.</p>\n\n\n\n<p>Some bugs go as far back as 7 years, such as <a href=\"https://core.trac.wordpress.org/ticket/20973\">shorthand formats not working with the core date_i18n() function</a>, which was fixed in WordPress 5.1. With any luck, core may also adopt such features as <a href=\"https://core.trac.wordpress.org/ticket/18146\">user-based timezones</a> in the future, which would better handle time differences on WordPress installs with users all over the world.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2019 16:33:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Gary: Talking with WP&UP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://pento.net/2019/09/26/talking-with-wpup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:348:\"<p>At WordCamp Europe this year, I had the opportunity to chat with the folks at WP&UP, who are doing wonderful work providing mental health support in the WordPress community.</p>\n\n\n\n<p><a href=\"https://wpandup.org/podcast/getting-to-the-core-of-wordpress-021/\">Listen to the podcast</a>, and check out the services that WP&UP provide!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2019 04:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"BuddyPress: BuddyPress 5.0.0 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2087:\"<p>Hi!</p>\n\n\n\n<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-RC2.zip\">The second release candidate for BuddyPress 5.0.0</a> is now available for an ultimate round of testing!</p>\n\n\n\n<p>Since the <a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate/\">first release candidate</a>, we’ve improved the way BP REST API Controllers are loaded inside BuddyPress component classes.</p>\n\n\n\n<p>This is an important milestone as we progress toward the BuddyPress 5.0.0 final release date. “Release Candidate” means that we think the new version is ready for release, but with more than 200,000 active installs, hundreds of BuddyPress plugins and Thousands of WordPress themes, it’s possible something was missed. BuddPress 5.0.0 is scheduled to be released on <strong>Monday, September 30</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.0.0 yet, <strong>now is the time!</strong> </p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-RC2.zip\">Download and test the 5.0.0-RC2</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><em>PS: as usual you alternatively get a copy via our Subversion repository.</em></p>\n\n\n\n<p>A detailed changelog will be part of our official release note, but you can get a quick overview by reading the post about the <a href=\"https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\">5.0.0 Beta1</a> release.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://plugins.svn.wordpress.org/buddypress/assets/icon.svg\" alt=\"\" width=\"33\" height=\"33\" /></div>\n\n\n\n<p><strong>If you think you’ve found a bug</strong>, please let us know reporting it on <a href=\"https://buddypress.org/support\">the support forums</a> and/or on <a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\n\n\n\n<p>Thanks in advance for giving this second release candidate a test drive!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2019 02:31:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: Hacktoberfest 2019 Registration is Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/hacktoberfest-2019-registration-is-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3413:\"<p><a href=\"https://hacktoberfest.digitalocean.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Hacktoberfest</a> has started back up again for its sixth year running, sponsored by <a href=\"http://digitalocean.com\" rel=\"noopener noreferrer\" target=\"_blank\">DigitalOcean</a> and <a href=\"https://dev.to/\" rel=\"noopener noreferrer\" target=\"_blank\">DEV</a>. The annual event brings together open source communities from all over the world for virtual and <a href=\"https://hacktoberfest.digitalocean.com/events\" rel=\"noopener noreferrer\" target=\"_blank\">local collaboration</a>. Organizers are expecting approximately 150,000 participants this year.</p>\n<p>The first 50,000 participants who make four pull requests to any GitHub-hosted repositories between October 1-31, will receive a commemorative Hacktoberfest T-shirt. Organizers have introduced a one-week review period for PRs this year in order to give maintainers the opportunity to flag any spammy PRs as invalid. The goal is to encourage participants to submit more thoughtful contributions.</p>\n<p>More than 21,000 issues on GitHub have already been <a href=\"https://github.com/search?q=label%3Ahacktoberfest+state%3Aopen&type=Issues\" rel=\"noopener noreferrer\" target=\"_blank\">labeled for Hacktoberfest</a>. Maintainers who want to have their projects included should identify issues best suited to new contributors and apply the “Hacktoberfest” label. Organizers also recommend creating a CONTRIBUTING.md file with contribution guidelines and adopting a code of conduct for the project.</p>\n<p>Adding WordPress to a search for Hacktoberfest issues displays <a href=\"https://github.com/search?utf8=%E2%9C%93&q=label%3Ahacktoberfest+state%3Aopen+wordpress&type=Issues&ref=advsearch&l=&l=\" rel=\"noopener noreferrer\" target=\"_blank\">120 issues</a> that are related in some way to themes, plugins, apps, and other products with WordPress-specific needs. The event is a good opportunity for maintainers to get more exposure for their projects and help new contributors gain confidence through a structured contribution process.</p>\n<p>This year Hacktoberfest’s organizers are also featuring <a href=\"https://github.com/topics/climate-change\" rel=\"noopener noreferrer\" target=\"_blank\">projects focused on combating climate change</a>. These include repos for open source technologies, such as an <a href=\"https://github.com/CodeForAfrica/ClimateChangeProjections\" rel=\"noopener noreferrer\" target=\"_blank\">embeddable map that shows climate change projections</a>, an <a href=\"https://github.com/juancoob/Vegginner\" rel=\"noopener noreferrer\" target=\"_blank\">app targeting consumption habits</a>, and <a href=\"https://github.com/sphericalpm/ghgdata\" rel=\"noopener noreferrer\" target=\"_blank\">greenhouse gas emissions data packaged for exploration and charting</a>, to name a few.</p>\n<p>Hacktoberfest is open to contributors at any level of experience. For those just getting started, DigitalOcean has created an <a href=\"https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source\" rel=\"noopener noreferrer\" target=\"_blank\">Introduction to Open Source</a> series that covers the basics of git and how to create a pull request. DEV also has a <a href=\"https://dev.to/tvanblargan/crash-course-git-lingo-1enj\" rel=\"noopener noreferrer\" target=\"_blank\">Git crash course</a> available to get new contributors up to speed.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2019 22:39:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Human Made Releases Publication Checklist Plugin Designed for the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/human-made-releases-publication-checklist-plugin-designed-for-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2502:\"<p>Human Made has created a <a href=\"https://github.com/humanmade/publication-checklist/\" rel=\"noopener noreferrer\" target=\"_blank\">Publication Checklist</a> plugin built specifically for the block editor. It was developed as a headline feature of <a href=\"https://humanmade.com/2019/06/17/a-technical-introduction-to-altis-enterprise-augmented-wordpress-platform/\" rel=\"noopener noreferrer\" target=\"_blank\">Altis</a>, the company’s enterprise publishing platform based on WordPress, but is also available as a standalone plugin that developers can customize for their own particular use cases.</p>\n<p><NAME>, Human Made’s Director of Engineering, shared screenshots of the plugin on <a href=\"https://twitter.com/rmccue/status/1173550662296190976\" rel=\"noopener noreferrer\" target=\"_blank\">Twitter</a> but noted that it may require more manual configuration when used outside of Altis. Developers familiar with React can extend the checklist to provide a more interactive experience for users completing the required publishing tasks.</p>\n<p>“Because this is built for the block editor, you can build the UI for your checks in React, allowing users to fix issues inline, or providing richer interaction; e.g. ‘jump to block failing this check,\'” McCue said.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-25-at-10.43.20-AM.png?ssl=1\"><img /></a></p>\n<p>Status of the publishing tasks is also shown in its own column in the posts list table, a useful feature for giving editorial teams a better overall picture of posts in progress. (The plugin also provides a way to disable this view.)</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/publication-checklist-posts-list-table.jpeg?ssl=1\"><img /></a></p>\n<p>It’s important to note that the Publication Checklist plugin only provides a framework for the pre-publish checks, and does not include a settings interface for users to create their own checks. For this reason, the current version is more geared towards developers who are capable of registering checks using the provided function. The checks display a warning if incomplete but users are still allowed to publish. A more strict enforcement that blocks publishing can also be applied. For more information on customizing the plugin, check out the <a href=\"https://github.com/humanmade/publication-checklist/\" rel=\"noopener noreferrer\" target=\"_blank\">documentation</a> on GitHub.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2019 17:44:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Theme Review Team Restructures Into Project Representatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94224\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/theme-review-team-restructures-into-project-representatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5229:\"<p>The WordPress Theme Review Team (TRT) restructured its administrative duties and laid out its <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">new team organization</a> after yesterday’s semimonthly team meeting. This is not the first time the TRT has restructured to meet the growing demands of the official theme directory over the years. The team is moving toward a flat structure that spreads its responsibilities to various project representatives.</p>\n\n\n\n<p>The original team consisted of a purely merit-based system where members worked their way up the ranks, becoming moderators and eventually admins. Each level provided more access and responsibility. In 2017, the team restructured to a <a href=\"https://make.wordpress.org/themes/2017/04/08/restructuring-the-theme-review-team/\">lead-based system</a> in which two team leads rotated every six months. The time limit was put in place to prevent burnout. Some leads ran the team beyond the six-month limit during this time, but it was not always easy to find replacements who wanted to take on the full responsibilities of managing everything. There was also concern among some team members that the rotation schedule wasn’t strictly followed with some leads overstaying their allotted time.</p>\n\n\n\n<p>In meetings and discussions over the last several months, various members drafted proposals on changing the team structure. The now-former team leads and a group of moderators created the new plan to split the team into specific projects, each with at least one representative.</p>\n\n\n\n<p>The following are the new sub-teams and representatives.</p>\n\n\n\n<ul><li>Theme review representatives: <NAME> and <NAME></li><li>Theme packages representative: <NAME>athopoulos</li><li>Automation representative: <NAME></li><li>Theme handbook representative: Ana Alfieri</li><li>Communications representative: <NAME></li></ul>\n\n\n\n<p>The five projects cover the team’s current duties and spread out the workload. “That’s kind of what this is about,” said <NAME>. “It’s making sure that no one single person handles all the things and that it’s shared between all.”</p>\n\n\n\n<p>The new structure doesn’t mean there’s no room for other projects. If a team member has a particular itch they want to scratch, they’re open to spearhead that project. All the power is no longer consolidated into a couple of people’s hands.</p>\n\n\n\n<p>“Sharing the load and spreading people’s specific skills between things they know and are investing time into makes sense at this point,” said Patton.</p>\n\n\n\n<p>The team will no longer rotate leads (or representatives in this case) every six months. If someone needs to step down from their representative role or take a break, finding a new representative will be handled on a case-by-case basis. “We all have our strengths and passions. The thing that we also need to work on is finding people who are willing to participate and eventually take over when we feel tired,” said <NAME>.</p>\n\n\n\n<p>Žoljom has been leading the automation project for while by maintaining the Theme Review coding standards and Theme Sniffer plugin. He’s currently looking to move the WPThemeReview ruleset to the official WordPress GitHub. “This is necessary because we want to use it in Tide,” said Žoljom. Tide is an automated tool for improving code quality in plugins and themes.</p>\n\n\n\n<p>“My personal goal would be to see if we can improve the review process – either by working on the GitHub review idea I had a few months ago, or by working on the automated tools that help the users,” said Žoljom.</p>\n\n\n\n<p>The theme review representatives will handle the traditional role of overseeing the reviewing responsibilities of the team. Little will change in that regard since it’s the primary duty of the TRT. They will continue moderating themes and handling guideline changes. “However, they can consult with other reps to make the final decision and to make new changes,” said <NAME>.</p>\n\n\n\n<p>The WordPress docs team has now handed over responsibility of the <a href=\"https://developer.wordpress.org/themes/\">theme developer handbook</a> to the TRT. “I think we should try to keep coherence between the two handbooks, so we avoid saying one thing in one and another in the other,” said <NAME> about the differences between the developer and review handbooks. At times, such difference have been points of contention between TRT members. Having both handbooks in sync on best practices will help keep reviewers and theme authors on the same page.</p>\n\n\n\n<p><NAME> recently took over as the <a href=\"https://wptavern.com/behind-new-packages-project-lead-theme-review-team-launches-admin-notices-solution\">representative for theme packages</a> in the past month. The packages project aims to build standardized drop-in modules for developers to use in their themes. This specific project may also have various developers handling specific packages.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Sep 2019 17:18:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 18 Oct 2019 08:51:17 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 18 Oct 2019 08:45:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `3g7cp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(168, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1571431886', 'no'),
(169, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1571388686', 'no'),
(170, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1571431886', 'no'),
(171, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\'>Empowering Generations of Digital Natives</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\'>WPTavern: Chilean News Publication El Soberano First to Launch on Newspack</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\'>WordPress.org blog: Empowering Generations of Digital Natives</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/mark-davies-joins-automattic-as-chief-financial-officer\'>WPTavern: Mark Davies Joins Automattic as Chief Financial Officer</a></li></ul></div>', 'no'),
(172, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(183, '_transient_timeout_plugin_slugs', '1571558189', 'no'),
(184, '_transient_plugin_slugs', 'a:5:{i:0;s:30:\"advanced-custom-fields/acf.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:26:\"custom-field-suite/cfs.php\";i:4;s:9:\"hello.php\";}', 'no'),
(185, 'recently_activated', 'a:1:{s:30:\"advanced-custom-fields/acf.php\";i:1571471788;}', 'yes'),
(190, 'acf_version', '5.8.5', 'yes'),
(193, 'wpcf7', 'a:2:{s:7:\"version\";s:5:\"5.1.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1571408098;s:7:\"version\";s:5:\"5.1.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}', 'yes'),
(198, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1571480301', 'no'),
(199, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4631;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:3701;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2644;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2517;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1941;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1765;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1754;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1473;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1452;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1448;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1438;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1386;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1361;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1296;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1156;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1139;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1108;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1077;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1051;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:955;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:862;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:849;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:845;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:817;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:759;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:751;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:736;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:735;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:730;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:708;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:705;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:688;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:682;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:678;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:671;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:657;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:637;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:632;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:624;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:624;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:611;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:600;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:577;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:577;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:564;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:564;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:560;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:545;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:538;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:536;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:530;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:527;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:521;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:521;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:520;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:516;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:507;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:486;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:483;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:482;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:481;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:480;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:461;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:459;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:453;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:448;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:431;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:424;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:419;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:418;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:417;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:415;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:411;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:406;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:403;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:400;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:397;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:390;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:387;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:387;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:383;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:381;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:371;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:365;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:364;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:360;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:359;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:359;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:352;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:349;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:348;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:337;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:329;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:329;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:326;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:325;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:322;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:318;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:315;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:315;}}', 'no'),
(201, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1571469689;s:7:\"checked\";a:5:{s:30:\"advanced-custom-fields/acf.php\";s:5:\"5.8.5\";s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.1.4\";s:26:\"custom-field-suite/cfs.php\";s:6:\"2.5.16\";s:9:\"hello.php\";s:5:\"1.7.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"5.8.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:26:\"custom-field-suite/cfs.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/custom-field-suite\";s:4:\"slug\";s:18:\"custom-field-suite\";s:6:\"plugin\";s:26:\"custom-field-suite/cfs.php\";s:11:\"new_version\";s:6:\"2.5.16\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/custom-field-suite/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/custom-field-suite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/custom-field-suite/assets/icon-256x256.png?rev=1112866\";s:2:\"1x\";s:71:\"https://ps.w.org/custom-field-suite/assets/icon-128x128.png?rev=1112866\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(202, 'cfs_next_field_id', '11', 'yes'),
(203, 'cfs_version', '2.5.16', 'yes'),
(210, '_site_transient_timeout_theme_roots', '1571494564', 'no'),
(211, '_site_transient_theme_roots', 'a:4:{s:20:\"sage-theme/resources\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no');
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_postmeta`
--
CREATE TABLE `3g7cp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_postmeta`
--
INSERT INTO `3g7cp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'views/template-home.blade.php'),
(2, 3, '_wp_page_template', 'default'),
(3, 5, '_wp_trash_meta_status', 'publish'),
(4, 5, '_wp_trash_meta_time', '1571235856'),
(23, 8, '_wp_attached_file', '2019/10/logo.png'),
(24, 8, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:97;s:6:\"height\";i:123;s:4:\"file\";s:16:\"2019/10/logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25, 9, '_edit_lock', '1571392049:1'),
(26, 9, '_wp_trash_meta_status', 'publish'),
(27, 9, '_wp_trash_meta_time', '1571392068'),
(28, 10, '_edit_lock', '1571393204:1'),
(29, 10, '_wp_trash_meta_status', 'publish'),
(30, 10, '_wp_trash_meta_time', '1571393223'),
(31, 2, '_edit_lock', '1571492648:1'),
(32, 13, '_menu_item_type', 'custom'),
(33, 13, '_menu_item_menu_item_parent', '0'),
(34, 13, '_menu_item_object_id', '13'),
(35, 13, '_menu_item_object', 'custom'),
(36, 13, '_menu_item_target', ''),
(37, 13, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(38, 13, '_menu_item_xfn', ''),
(39, 13, '_menu_item_url', '#ourpromise'),
(41, 14, '_menu_item_type', 'custom'),
(42, 14, '_menu_item_menu_item_parent', '0'),
(43, 14, '_menu_item_object_id', '14'),
(44, 14, '_menu_item_object', 'custom'),
(45, 14, '_menu_item_target', ''),
(46, 14, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(47, 14, '_menu_item_xfn', ''),
(48, 14, '_menu_item_url', '#about'),
(50, 15, '_menu_item_type', 'custom'),
(51, 15, '_menu_item_menu_item_parent', '0'),
(52, 15, '_menu_item_object_id', '15'),
(53, 15, '_menu_item_object', 'custom'),
(54, 15, '_menu_item_target', ''),
(55, 15, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(56, 15, '_menu_item_xfn', ''),
(57, 15, '_menu_item_url', '#services'),
(59, 16, '_menu_item_type', 'custom'),
(60, 16, '_menu_item_menu_item_parent', '0'),
(61, 16, '_menu_item_object_id', '16'),
(62, 16, '_menu_item_object', 'custom'),
(63, 16, '_menu_item_target', ''),
(64, 16, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(65, 16, '_menu_item_xfn', ''),
(66, 16, '_menu_item_url', '#testimonials'),
(68, 17, '_menu_item_type', 'custom'),
(69, 17, '_menu_item_menu_item_parent', '0'),
(70, 17, '_menu_item_object_id', '17'),
(71, 17, '_menu_item_object', 'custom'),
(72, 17, '_menu_item_target', ''),
(73, 17, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(74, 17, '_menu_item_xfn', ''),
(75, 17, '_menu_item_url', '#partners'),
(77, 18, '_menu_item_type', 'custom'),
(78, 18, '_menu_item_menu_item_parent', '0'),
(79, 18, '_menu_item_object_id', '18'),
(80, 18, '_menu_item_object', 'custom'),
(81, 18, '_menu_item_target', ''),
(82, 18, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(83, 18, '_menu_item_xfn', ''),
(84, 18, '_menu_item_url', 'http://quote'),
(86, 19, '_menu_item_type', 'custom'),
(87, 19, '_menu_item_menu_item_parent', '0'),
(88, 19, '_menu_item_object_id', '19'),
(89, 19, '_menu_item_object', 'custom'),
(90, 19, '_menu_item_target', ''),
(91, 19, '_menu_item_classes', 'a:1:{i:0;s:10:\"orange_btn\";}'),
(92, 19, '_menu_item_xfn', ''),
(93, 19, '_menu_item_url', 'tel:+1234567890'),
(95, 20, '_form', '<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),
(96, 20, '_mail', 'a:8:{s:7:\"subject\";s:17:\" \"[your-subject]\"\";s:6:\"sender\";s:21:\" <<EMAIL>>\";s:4:\"body\";s:154:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on (http://sage.loc)\";s:9:\"recipient\";s:18:\"<EMAIL>\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(97, 20, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:17:\" \"[your-subject]\"\";s:6:\"sender\";s:21:\" <<EMAIL>>\";s:4:\"body\";s:96:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on (http://sage.loc)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:28:\"Reply-To: <EMAIL>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(98, 20, '_messages', 'a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),
(99, 20, '_additional_settings', NULL),
(100, 20, '_locale', 'en_US'),
(101, 24, '_edit_last', '1'),
(102, 24, '_edit_lock', '1571471639:1'),
(103, 2, '_edit_last', '1'),
(104, 2, 'promise_title', 'Our promise'),
(105, 2, '_promise_title', 'field_5da9ca06c9da3'),
(106, 2, 'promise_text', '<span>100%</span>Satisfaction Guarantee'),
(107, 2, '_promise_text', 'field_5da9e0ab116c4'),
(108, 27, 'promise_title', 'Our promise'),
(109, 27, '_promise_title', 'field_5da9ca06c9da3'),
(110, 27, 'promise_text', '<span>100%</span>Satisfaction Guarantee'),
(111, 27, '_promise_text', 'field_5da9e0ab116c4'),
(112, 30, '_edit_last', '1'),
(113, 30, '_edit_lock', '1571492652:1'),
(114, 30, 'cfs_fields', 'a:4:{i:0;a:8:{s:2:\"id\";s:1:\"1\";s:4:\"name\";s:15:\"promise_bigtext\";s:5:\"label\";s:8:\"Big text\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:0;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}i:1;a:8:{s:2:\"id\";s:1:\"3\";s:4:\"name\";s:15:\"promise_title_1\";s:5:\"label\";s:12:\"Title part 1\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:1;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}i:2;a:8:{s:2:\"id\";s:1:\"4\";s:4:\"name\";s:15:\"promise_title_2\";s:5:\"label\";s:12:\"Title part 2\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:2;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}i:3;a:8:{s:2:\"id\";s:1:\"5\";s:4:\"name\";s:12:\"promise_text\";s:5:\"label\";s:4:\"Text\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:3;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}}'),
(115, 30, 'cfs_rules', 'a:1:{s:14:\"page_templates\";a:2:{s:8:\"operator\";s:2:\"==\";s:6:\"values\";a:1:{i:0;s:29:\"views/template-home.blade.php\";}}}'),
(116, 30, 'cfs_extras', 'a:3:{s:5:\"order\";s:1:\"0\";s:7:\"context\";s:6:\"normal\";s:11:\"hide_editor\";s:1:\"0\";}'),
(121, 2, 'promise_sub1', '<span>100%</span>Satisfaction Guarantee'),
(122, 2, '_promise_sub1', 'field_5da9ca4fc9da4'),
(123, 2, 'promise_sub2', ''),
(124, 2, '_promise_sub2', 'field_5da9e08c116c3'),
(125, 27, 'promise_sub1', '<span>100%</span>Satisfaction Guarantee'),
(126, 27, '_promise_sub1', 'field_5da9ca4fc9da4'),
(127, 27, 'promise_sub2', ''),
(128, 27, '_promise_sub2', 'field_5da9e08c116c3'),
(133, 31, 'promise_title', 'Our promise'),
(134, 31, '_promise_title', 'field_5da9ca06c9da3'),
(135, 31, 'promise_text', '<span>100%</span>Satisfaction Guarantee'),
(136, 31, '_promise_text', 'field_5da9e0ab116c4'),
(137, 31, 'promise_sub1', '<span>100%</span>Satisfaction Guarantee'),
(138, 31, '_promise_sub1', 'field_5da9ca4fc9da4'),
(139, 31, 'promise_sub2', ''),
(140, 31, '_promise_sub2', 'field_5da9e08c116c3'),
(149, 32, '_edit_last', '1'),
(150, 32, '_edit_lock', '1571492659:1'),
(155, 32, 'cfs_fields', 'a:4:{i:0;a:8:{s:2:\"id\";s:1:\"6\";s:4:\"name\";s:16:\"workwith_bigtext\";s:5:\"label\";s:27:\"work with section: Big text\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:0;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}i:1;a:8:{s:2:\"id\";s:1:\"7\";s:4:\"name\";s:14:\"workwith_title\";s:5:\"label\";s:24:\"work with section: Title\";s:4:\"type\";s:4:\"text\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:1;s:7:\"options\";a:2:{s:13:\"default_value\";s:0:\"\";s:8:\"required\";s:1:\"0\";}}i:2;a:8:{s:2:\"id\";s:1:\"8\";s:4:\"name\";s:15:\"workwith_images\";s:5:\"label\";s:25:\"work with section: Images\";s:4:\"type\";s:4:\"loop\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:0;s:6:\"weight\";i:2;s:7:\"options\";a:5:{s:11:\"row_display\";s:1:\"0\";s:9:\"row_label\";s:8:\"Loop Row\";s:12:\"button_label\";s:7:\"Add Row\";s:9:\"limit_min\";s:0:\"\";s:9:\"limit_max\";s:0:\"\";}}i:3;a:8:{s:2:\"id\";s:1:\"9\";s:4:\"name\";s:12:\"workwith_img\";s:5:\"label\";s:3:\"img\";s:4:\"type\";s:4:\"file\";s:5:\"notes\";s:0:\"\";s:9:\"parent_id\";i:8;s:6:\"weight\";i:3;s:7:\"options\";a:3:{s:9:\"file_type\";s:4:\"file\";s:12:\"return_value\";s:2:\"id\";s:8:\"required\";s:1:\"0\";}}}'),
(156, 32, 'cfs_rules', 'a:1:{s:14:\"page_templates\";a:2:{s:8:\"operator\";s:2:\"==\";s:6:\"values\";a:1:{i:0;s:29:\"views/template-home.blade.php\";}}}'),
(157, 32, 'cfs_extras', 'a:3:{s:5:\"order\";s:1:\"0\";s:7:\"context\";s:6:\"normal\";s:11:\"hide_editor\";s:1:\"0\";}'),
(158, 33, '_wp_attached_file', '2019/10/bbb_logo.png'),
(159, 33, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:56;s:6:\"height\";i:97;s:4:\"file\";s:20:\"2019/10/bbb_logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(160, 34, '_wp_attached_file', '2019/10/Benjamin_logo.png'),
(161, 34, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:146;s:6:\"height\";i:63;s:4:\"file\";s:25:\"2019/10/Benjamin_logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(162, 35, '_wp_attached_file', '2019/10/dulux_logo.png'),
(163, 35, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:136;s:6:\"height\";i:65;s:4:\"file\";s:22:\"2019/10/dulux_logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(164, 36, '_wp_attached_file', '2019/10/Sherwin_logo.png'),
(165, 36, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:132;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2019/10/Sherwin_logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(166, 37, '_wp_attached_file', '2019/10/trustedpros_logo.png'),
(167, 37, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:85;s:6:\"height\";i:87;s:4:\"file\";s:28:\"2019/10/trustedpros_logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(168, 38, '_wp_attached_file', '2019/10/work_safe_log.png'),
(169, 38, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:153;s:6:\"height\";i:29;s:4:\"file\";s:25:\"2019/10/work_safe_log.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"work_safe_log-150x29.png\";s:5:\"width\";i:150;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(248, 2, 'promise_bigtext', 'Our promise'),
(249, 2, 'promise_title_1', '100%'),
(250, 2, 'promise_title_2', 'Satisfaction Guarantee'),
(251, 2, 'promise_text', 'Lorem ipsum dolor sit amet, consectetur adipisi cingelit, sed do eiusmod. tempor incididunt ut labore et dolore lorem '),
(252, 2, 'workwith_bigtext', 'We work with'),
(253, 2, 'workwith_title', 'We work with'),
(254, 2, 'workwith_img', '36'),
(255, 2, 'workwith_img', '35'),
(256, 2, 'workwith_img', '34'),
(257, 2, 'workwith_img', '37'),
(258, 2, 'workwith_img', '33'),
(259, 2, 'workwith_img', '38'),
(260, 39, '_wp_attached_file', '2019/10/logo-1.png'),
(261, 39, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:97;s:6:\"height\";i:123;s:4:\"file\";s:18:\"2019/10/logo-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(262, 40, '_wp_attached_file', '2019/10/clock_icon.png'),
(263, 40, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:22:\"2019/10/clock_icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(264, 41, '_wp_attached_file', '2019/10/phone_icon.png'),
(265, 41, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:15;s:6:\"height\";i:15;s:4:\"file\";s:22:\"2019/10/phone_icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266, 42, '_wp_attached_file', '2019/10/place_icon.png'),
(267, 42, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:16;s:6:\"height\";i:15;s:4:\"file\";s:22:\"2019/10/place_icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(268, 43, '_wp_attached_file', '2019/10/fb.png'),
(269, 43, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:14;s:6:\"height\";i:23;s:4:\"file\";s:14:\"2019/10/fb.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(270, 44, '_wp_attached_file', '2019/10/google.png'),
(271, 44, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:33;s:6:\"height\";i:21;s:4:\"file\";s:18:\"2019/10/google.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(272, 45, '_wp_attached_file', '2019/10/insta.png'),
(273, 45, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:23;s:6:\"height\";i:22;s:4:\"file\";s:17:\"2019/10/insta.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(274, 46, '_wp_attached_file', '2019/10/pint.png'),
(275, 46, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:22;s:6:\"height\";i:22;s:4:\"file\";s:16:\"2019/10/pint.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(276, 47, '_wp_attached_file', '2019/10/twi.png'),
(277, 47, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:26;s:6:\"height\";i:21;s:4:\"file\";s:15:\"2019/10/twi.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(278, 48, '_wp_attached_file', '2019/10/youtube.png'),
(279, 48, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:27;s:6:\"height\";i:20;s:4:\"file\";s:19:\"2019/10/youtube.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_posts`
--
CREATE TABLE `3g7cp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_posts`
--
INSERT INTO `3g7cp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2019-10-16 14:07:26', '2019-10-16 14:07:26', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2019-10-16 14:07:26', '2019-10-16 14:07:26', '', 0, 'http://sage.loc/?p=1', 0, 'post', '', 1),
(2, 1, '2019-10-16 14:07:26', '2019-10-16 14:07:26', '', 'Home page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2019-10-19 09:36:44', '2019-10-19 09:36:44', '', 0, 'http://sage.loc/?page_id=2', 0, 'page', '', 0),
(3, 1, '2019-10-16 14:07:26', '2019-10-16 14:07:26', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://sage.loc.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2019-10-16 14:07:26', '2019-10-16 14:07:26', '', 0, 'http://sage.loc/?page_id=3', 0, 'page', '', 0),
(4, 1, '2019-10-16 14:07:42', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2019-10-16 14:07:42', '0000-00-00 00:00:00', '', 0, 'http://sage.loc/?p=4', 0, 'post', '', 0),
(5, 1, '2019-10-16 14:24:16', '2019-10-16 14:24:16', '{\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [],\n \"sidebar-1\": [\n \"search-2\",\n \"recent-posts-2\",\n \"recent-comments-2\",\n \"archives-2\",\n \"categories-2\",\n \"meta-2\"\n ]\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-16 14:24:16\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'b9d7f032-b604-4354-85e3-7fa00223026f', '', '', '2019-10-16 14:24:16', '2019-10-16 14:24:16', '', 0, 'http://sage.loc/2019/10/16/b9d7f032-b604-4354-85e3-7fa00223026f/', 0, 'customize_changeset', '', 0),
(8, 1, '2019-10-18 09:39:07', '2019-10-18 09:39:07', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2019-10-18 09:39:07', '2019-10-18 09:39:07', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/logo.png', 0, 'attachment', 'image/png', 0),
(9, 1, '2019-10-18 09:47:48', '2019-10-18 09:47:48', '{\n \"blogname\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 09:40:15\"\n },\n \"blogdescription\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 09:40:15\"\n },\n \"sage-theme/resources::custom_logo\": {\n \"value\": 8,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 09:40:15\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '270b337c-958d-4d64-bff7-b0ce3f98e4eb', '', '', '2019-10-18 09:47:48', '2019-10-18 09:47:48', '', 0, 'http://sage.loc/?p=9', 0, 'customize_changeset', '', 0),
(10, 1, '2019-10-18 10:07:03', '2019-10-18 10:07:03', '{\n \"site_icon\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 09:48:32\"\n },\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 10:06:44\"\n },\n \"page_on_front\": {\n \"value\": \"2\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-10-18 10:07:03\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'b559f5fb-b481-490f-b85d-a994b5f9ec3c', '', '', '2019-10-18 10:07:03', '2019-10-18 10:07:03', '', 0, 'http://sage.loc/?p=10', 0, 'customize_changeset', '', 0),
(12, 1, '2019-10-18 10:15:56', '2019-10-18 10:15:56', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://sage.loc/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2019-10-18 10:15:56', '2019-10-18 10:15:56', '', 2, 'http://sage.loc/2019/10/18/2-revision-v1/', 0, 'revision', '', 0),
(13, 1, '2019-10-18 10:59:51', '2019-10-18 10:59:51', '', 'Our Promise', '', 'publish', 'closed', 'closed', '', 'our-promise', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=13', 1, 'nav_menu_item', '', 0),
(14, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=14', 2, 'nav_menu_item', '', 0),
(15, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=15', 3, 'nav_menu_item', '', 0),
(16, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'Testimonials', '', 'publish', 'closed', 'closed', '', 'testimonials', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=16', 4, 'nav_menu_item', '', 0),
(17, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'Partners', '', 'publish', 'closed', 'closed', '', 'partners', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=17', 5, 'nav_menu_item', '', 0),
(18, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'Quote', '', 'publish', 'closed', 'closed', '', 'quote', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=18', 6, 'nav_menu_item', '', 0),
(19, 1, '2019-10-18 11:03:47', '2019-10-18 11:03:47', '', 'Call us', '', 'publish', 'closed', 'closed', '', 'call-us', '', '', '2019-10-18 13:22:34', '2019-10-18 13:22:34', '', 0, 'http://sage.loc/?p=19', 7, 'nav_menu_item', '', 0),
(20, 1, '2019-10-18 14:14:58', '2019-10-18 14:14:58', '<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\n \"[your-subject]\"\n <<EMAIL>>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on (http://sage.loc)\<EMAIL>\nReply-To: [your-email]\n\n0\n0\n\n \"[your-subject]\"\n <<EMAIL>>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on (http://sage.loc)\n[your-email]\nReply-To: <EMAIL>\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2019-10-18 14:14:58', '2019-10-18 14:14:58', '', 0, 'http://sage.loc/?post_type=wpcf7_contact_form&p=20', 0, 'wpcf7_contact_form', '', 0),
(21, 1, '2019-10-18 14:15:26', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2019-10-18 14:15:26', '0000-00-00 00:00:00', '', 0, 'http://sage.loc/?post_type=acf-field-group&p=21', 0, 'acf-field-group', '', 0),
(22, 1, '2019-10-18 14:18:28', '2019-10-18 14:18:28', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://sage.loc/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Home page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2019-10-18 14:18:28', '2019-10-18 14:18:28', '', 2, 'http://sage.loc/2019/10/18/2-revision-v1/', 0, 'revision', '', 0),
(23, 1, '2019-10-18 14:18:49', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2019-10-18 14:18:49', '0000-00-00 00:00:00', '', 0, 'http://sage.loc/?post_type=acf-field-group&p=23', 0, 'acf-field-group', '', 0),
(24, 1, '2019-10-18 14:25:03', '2019-10-18 14:25:03', 'a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:29:\"views/template-home.blade.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}', 'HP promise section', 'hp-promise-section', 'publish', 'closed', 'closed', '', 'group_5da9c9fc63689', '', '', '2019-10-18 15:57:08', '2019-10-18 15:57:08', '', 0, 'http://sage.loc/?post_type=acf-field-group&p=24', 0, 'acf-field-group', '', 0),
(25, 1, '2019-10-18 14:25:03', '2019-10-18 14:25:03', 'a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}', 'Our promise', 'promise_title', 'publish', 'closed', 'closed', '', 'field_5da9ca06c9da3', '', '', '2019-10-18 15:57:08', '2019-10-18 15:57:08', '', 24, 'http://sage.loc/?post_type=acf-field&p=25', 0, 'acf-field', '', 0),
(26, 1, '2019-10-18 14:25:03', '2019-10-18 14:25:03', 'a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}', 'Subtitle part 1', 'promise_sub1', 'publish', 'closed', 'closed', '', 'field_5da9ca4fc9da4', '', '', '2019-10-18 15:57:08', '2019-10-18 15:57:08', '', 24, 'http://sage.loc/?post_type=acf-field&p=26', 1, 'acf-field', '', 0),
(27, 1, '2019-10-18 14:27:55', '2019-10-18 14:27:55', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://sage.loc/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Home page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2019-10-18 14:27:55', '2019-10-18 14:27:55', '', 2, 'http://sage.loc/2019/10/18/2-revision-v1/', 0, 'revision', '', 0),
(28, 1, '2019-10-18 15:57:08', '2019-10-18 15:57:08', 'a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}', 'Subtitle part 2', 'promise_sub2', 'publish', 'closed', 'closed', '', 'field_5da9e08c116c3', '', '', '2019-10-18 15:57:08', '2019-10-18 15:57:08', '', 24, 'http://sage.loc/?post_type=acf-field&p=28', 2, 'acf-field', '', 0),
(29, 1, '2019-10-18 15:57:08', '2019-10-18 15:57:08', 'a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}', 'Text', 'promise_text', 'publish', 'closed', 'closed', '', 'field_5da9e0ab116c4', '', '', '2019-10-18 15:57:08', '2019-10-18 15:57:08', '', 24, 'http://sage.loc/?post_type=acf-field&p=29', 3, 'acf-field', '', 0),
(30, 1, '2019-10-19 07:24:30', '2019-10-19 07:24:30', '', 'HP our promise section', '', 'publish', 'closed', 'closed', '', 'hp-our-promise-section', '', '', '2019-10-19 08:56:36', '2019-10-19 08:56:36', '', 0, 'http://sage.loc/?post_type=cfs&p=30', 0, 'cfs', '', 0),
(31, 1, '2019-10-19 07:37:44', '2019-10-19 07:37:44', '', 'Home page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2019-10-19 07:37:44', '2019-10-19 07:37:44', '', 2, 'http://sage.loc/2019/10/19/2-revision-v1/', 0, 'revision', '', 0),
(32, 1, '2019-10-19 09:01:49', '2019-10-19 09:01:49', '', 'HP work with section', '', 'publish', 'closed', 'closed', '', 'hp-work-with-section', '', '', '2019-10-19 09:36:25', '2019-10-19 09:36:25', '', 0, 'http://sage.loc/?post_type=cfs&p=32', 0, 'cfs', '', 0),
(33, 1, '2019-10-19 09:08:49', '2019-10-19 09:08:49', '', 'bbb_logo', '', 'inherit', 'open', 'closed', '', 'bbb_logo', '', '', '2019-10-19 09:08:49', '2019-10-19 09:08:49', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/bbb_logo.png', 0, 'attachment', 'image/png', 0),
(34, 1, '2019-10-19 09:08:50', '2019-10-19 09:08:50', '', 'Benjamin_logo', '', 'inherit', 'open', 'closed', '', 'benjamin_logo', '', '', '2019-10-19 09:08:50', '2019-10-19 09:08:50', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/Benjamin_logo.png', 0, 'attachment', 'image/png', 0),
(35, 1, '2019-10-19 09:08:50', '2019-10-19 09:08:50', '', 'dulux_logo', '', 'inherit', 'open', 'closed', '', 'dulux_logo', '', '', '2019-10-19 09:08:50', '2019-10-19 09:08:50', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/dulux_logo.png', 0, 'attachment', 'image/png', 0),
(36, 1, '2019-10-19 09:08:51', '2019-10-19 09:08:51', '', 'Sherwin_logo', '', 'inherit', 'open', 'closed', '', 'sherwin_logo', '', '', '2019-10-19 09:08:51', '2019-10-19 09:08:51', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/Sherwin_logo.png', 0, 'attachment', 'image/png', 0),
(37, 1, '2019-10-19 09:08:51', '2019-10-19 09:08:51', '', 'trustedpros_logo', '', 'inherit', 'open', 'closed', '', 'trustedpros_logo', '', '', '2019-10-19 09:08:51', '2019-10-19 09:08:51', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/trustedpros_logo.png', 0, 'attachment', 'image/png', 0),
(38, 1, '2019-10-19 09:08:52', '2019-10-19 09:08:52', '', 'work_safe_log', '', 'inherit', 'open', 'closed', '', 'work_safe_log', '', '', '2019-10-19 09:08:52', '2019-10-19 09:08:52', '', 2, 'http://sage.loc/wp-content/uploads/2019/10/work_safe_log.png', 0, 'attachment', 'image/png', 0),
(39, 1, '2019-10-19 10:24:26', '2019-10-19 10:24:26', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo-2', '', '', '2019-10-19 10:24:26', '2019-10-19 10:24:26', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/logo-1.png', 0, 'attachment', 'image/png', 0),
(40, 1, '2019-10-19 10:38:48', '2019-10-19 10:38:48', '', 'clock_icon', '', 'inherit', 'open', 'closed', '', 'clock_icon', '', '', '2019-10-19 10:38:48', '2019-10-19 10:38:48', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/clock_icon.png', 0, 'attachment', 'image/png', 0),
(41, 1, '2019-10-19 10:38:48', '2019-10-19 10:38:48', '', 'phone_icon', '', 'inherit', 'open', 'closed', '', 'phone_icon', '', '', '2019-10-19 10:38:48', '2019-10-19 10:38:48', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/phone_icon.png', 0, 'attachment', 'image/png', 0),
(42, 1, '2019-10-19 10:38:49', '2019-10-19 10:38:49', '', 'place_icon', '', 'inherit', 'open', 'closed', '', 'place_icon', '', '', '2019-10-19 10:38:49', '2019-10-19 10:38:49', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/place_icon.png', 0, 'attachment', 'image/png', 0),
(43, 1, '2019-10-19 10:43:45', '2019-10-19 10:43:45', '', 'fb', '', 'inherit', 'open', 'closed', '', 'fb', '', '', '2019-10-19 10:43:45', '2019-10-19 10:43:45', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/fb.png', 0, 'attachment', 'image/png', 0),
(44, 1, '2019-10-19 10:43:46', '2019-10-19 10:43:46', '', 'google', '', 'inherit', 'open', 'closed', '', 'google', '', '', '2019-10-19 10:43:46', '2019-10-19 10:43:46', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/google.png', 0, 'attachment', 'image/png', 0),
(45, 1, '2019-10-19 10:43:46', '2019-10-19 10:43:46', '', 'insta', '', 'inherit', 'open', 'closed', '', 'insta', '', '', '2019-10-19 10:43:46', '2019-10-19 10:43:46', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/insta.png', 0, 'attachment', 'image/png', 0),
(46, 1, '2019-10-19 10:43:47', '2019-10-19 10:43:47', '', 'pint', '', 'inherit', 'open', 'closed', '', 'pint', '', '', '2019-10-19 10:43:47', '2019-10-19 10:43:47', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/pint.png', 0, 'attachment', 'image/png', 0),
(47, 1, '2019-10-19 10:43:48', '2019-10-19 10:43:48', '', 'twi', '', 'inherit', 'open', 'closed', '', 'twi', '', '', '2019-10-19 10:43:48', '2019-10-19 10:43:48', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/twi.png', 0, 'attachment', 'image/png', 0),
(48, 1, '2019-10-19 10:43:48', '2019-10-19 10:43:48', '', 'youtube', '', 'inherit', 'open', 'closed', '', 'youtube', '', '', '2019-10-19 10:43:48', '2019-10-19 10:43:48', '', 0, 'http://sage.loc/wp-content/uploads/2019/10/youtube.png', 0, 'attachment', 'image/png', 0);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_termmeta`
--
CREATE TABLE `3g7cp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_terms`
--
CREATE TABLE `3g7cp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_terms`
--
INSERT INTO `3g7cp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Menu 1', 'menu-1', 0);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_term_relationships`
--
CREATE TABLE `3g7cp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_term_relationships`
--
INSERT INTO `3g7cp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(13, 2, 0),
(14, 2, 0),
(15, 2, 0),
(16, 2, 0),
(17, 2, 0),
(18, 2, 0),
(19, 2, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_term_taxonomy`
--
CREATE TABLE `3g7cp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_term_taxonomy`
--
INSERT INTO `3g7cp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 7);
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_usermeta`
--
CREATE TABLE `3g7cp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_usermeta`
--
INSERT INTO `3g7cp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, '3g7cp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, '3g7cp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'text_widget_custom_html'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"095a9cd066c7341d7eaea43d70d3fdf95353b9ebe8aa0cdc2a013cc0d3155c26\";a:4:{s:10:\"expiration\";i:1571580700;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1571407900;}}'),
(17, 1, '3g7cp_dashboard_quick_press_last_post_id', '4'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}'),
(19, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),
(20, 1, 'metaboxhidden_nav-menus', 'a:1:{i:0;s:12:\"add-post_tag\";}'),
(21, 1, 'nav_menu_recently_edited', '2'),
(22, 1, '3g7cp_user-settings', 'libraryContent=browse&editor=html'),
(23, 1, '3g7cp_user-settings-time', '1571480645'),
(24, 1, 'closedpostboxes_page', 'a:0:{}'),
(25, 1, 'metaboxhidden_page', 'a:0:{}'),
(26, 1, 'closedpostboxes_cfs', 'a:0:{}'),
(27, 1, 'metaboxhidden_cfs', 'a:1:{i:0;s:7:\"slugdiv\";}');
-- --------------------------------------------------------
--
-- Структура таблицы `3g7cp_users`
--
CREATE TABLE `3g7cp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `3g7cp_users`
--
INSERT INTO `3g7cp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$BXfj23D8hcNndUyq.F0XjIVQ0ygtJQ/', 'admin', '<EMAIL>', '', '2019-10-16 14:07:26', '', 0, 'admin');
--
-- Индексы сохранённых таблиц
--
--
-- Индексы таблицы `3g7cp_cfs_sessions`
--
ALTER TABLE `3g7cp_cfs_sessions`
ADD PRIMARY KEY (`id`);
--
-- Индексы таблицы `3g7cp_cfs_values`
--
ALTER TABLE `3g7cp_cfs_values`
ADD PRIMARY KEY (`id`),
ADD KEY `field_id_idx` (`field_id`),
ADD KEY `post_id_idx` (`post_id`);
--
-- Индексы таблицы `3g7cp_commentmeta`
--
ALTER TABLE `3g7cp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Индексы таблицы `3g7cp_comments`
--
ALTER TABLE `3g7cp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Индексы таблицы `3g7cp_links`
--
ALTER TABLE `3g7cp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Индексы таблицы `3g7cp_options`
--
ALTER TABLE `3g7cp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`);
--
-- Индексы таблицы `3g7cp_postmeta`
--
ALTER TABLE `3g7cp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Индексы таблицы `3g7cp_posts`
--
ALTER TABLE `3g7cp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Индексы таблицы `3g7cp_termmeta`
--
ALTER TABLE `3g7cp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Индексы таблицы `3g7cp_terms`
--
ALTER TABLE `3g7cp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Индексы таблицы `3g7cp_term_relationships`
--
ALTER TABLE `3g7cp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Индексы таблицы `3g7cp_term_taxonomy`
--
ALTER TABLE `3g7cp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Индексы таблицы `3g7cp_usermeta`
--
ALTER TABLE `3g7cp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Индексы таблицы `3g7cp_users`
--
ALTER TABLE `3g7cp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT для сохранённых таблиц
--
--
-- AUTO_INCREMENT для таблицы `3g7cp_cfs_values`
--
ALTER TABLE `3g7cp_cfs_values`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=111;
--
-- AUTO_INCREMENT для таблицы `3g7cp_commentmeta`
--
ALTER TABLE `3g7cp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `3g7cp_comments`
--
ALTER TABLE `3g7cp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT для таблицы `3g7cp_links`
--
ALTER TABLE `3g7cp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `3g7cp_options`
--
ALTER TABLE `3g7cp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=212;
--
-- AUTO_INCREMENT для таблицы `3g7cp_postmeta`
--
ALTER TABLE `3g7cp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=280;
--
-- AUTO_INCREMENT для таблицы `3g7cp_posts`
--
ALTER TABLE `3g7cp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;
--
-- AUTO_INCREMENT для таблицы `3g7cp_termmeta`
--
ALTER TABLE `3g7cp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT для таблицы `3g7cp_terms`
--
ALTER TABLE `3g7cp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT для таблицы `3g7cp_term_taxonomy`
--
ALTER TABLE `3g7cp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT для таблицы `3g7cp_usermeta`
--
ALTER TABLE `3g7cp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- AUTO_INCREMENT для таблицы `3g7cp_users`
--
ALTER TABLE `3g7cp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
|
insert into movie(id_movie, name, launch, director, category, synopsis)
values(1, 'Vingadores', 2012, '<NAME>', 'ação', 'filme bom');
insert into client(id_client, name, age, email, phone, address)
values(1, '<NAME>',19,'<EMAIL>',998796402,'Rua Santa Terezinha 863'); |
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 29, 2020 at 04:45 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.9
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: `project1`
--
-- --------------------------------------------------------
--
-- Table structure for table `articles`
--
CREATE TABLE `articles` (
`id` bigint(20) UNSIGNED NOT NULL,
`a_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`a_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`a_hot` tinyint(4) NOT NULL DEFAULT 0,
`a_status` tinyint(4) NOT NULL DEFAULT 1,
`a_menu_id` int(11) NOT NULL DEFAULT 0,
`a_view` int(11) NOT NULL DEFAULT 0,
`a_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`a_avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`a_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `articles`
--
INSERT INTO `articles` (`id`, `a_name`, `a_slug`, `a_hot`, `a_status`, `a_menu_id`, `a_view`, `a_description`, `a_avatar`, `a_content`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'bai-viet-moi', 0, 1, 2, 0, '<p>Sed a sapien in tellus fringilla vestibulum. Sed elementum nisl eget turpis pharetra, vel posuere felis volutpat. Sed elementum enim nulla, ac molestie orci sollicitudin ac. Cras vitae purus lacus. Pellentesque vel urna id nibh vehicula sagittis eget in turpis. Fusce semper pellentesque lacus. In augue augue, commodo sit amet turpis sit amet, posuere faucibus nunc. Morbi justo ipsum, tincidunt viverra augue sed, blandit gravida felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel magna libero. In varius venenatis libero, eget commodo augue tincidunt id. Proin sem nulla, faucibus id risus vel, vestibulum rhoncus tellus. Morbi maximus pretium nisl.</p>\r\n<p>Donec faucibus enim vitae volutpat sollicitudin. Mauris gravida nulla turpis, sit amet feugiat magna laoreet nec. Phasellus ut velit at tortor euismod placerat. Sed vulputate quam vel convallis convallis. Fusce gravida maximus elit non ullamcorper. Integer urna nunc, vehicula eu elit pharetra, condimentum tempor justo. Proin ac laoreet enim. Cras a lectus sit amet lacus ornare iaculis id sit amet ante.</p>\r\n<p><span class=\"style-italic\">Donec faucibus enim vitae volutpat sollicitudin. Mauris gravida nulla turpis, sit amet feugiat magna laoreet nec. Phasellus ut velit at tortor euismod placerat. Sed vulputate quam vel convallis convallis. Fusce gravida maximus elit non ullamcorper. Integer urna nunc, vehicula eu elit pharetra</span></p>\r\n<p>Fusce semper pellentesque lacus. In augue augue, commodo sit amet turpis sit amet, posuere faucibus nunc. Morbi justo ipsum, tincidunt viverra augue sed, blandit gravida felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel magna libero. In varius venenatis libero, eget commodo augue tincidunt id. Proin sem nulla, faucibus id risus vel, vestibulum rhoncus tellus. Morbi maximus pretium nisl.</p>', '1.jpg', NULL, '2020-09-29 05:45:53', '2020-09-29 07:00:44'),
(2, 'Chương trình khuyến mại', 'chuong-trinh-khuyen-mai', 1, 1, 2, 0, '<div class=\"ttm-box-desc-text\">\r\n<p>Mauris id enim id purus ornare tincidunt. Aenean vel consequat risus. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim sem at sem. Fusce tempus ex nibh, eget vulputate ligula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n</div>\r\n<div class=\"mt-20\">\r\n<p>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n</div>\r\n<h4>Less for this away much</h4>\r\n<p>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n<blockquote>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ort. Proin viverra.</blockquote>\r\n<p>Dummy, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauenim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placat semmi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n<div class=\"mt-30\"><img class=\"img-fluid alignleft\" src=\"http://localhost:88/project_sem_I/public/assets/images/single-img-two.jpg\" alt=\"\">\r\n<h5>Beneficial Strategies</h5>\r\n<p>Proin viverra nisi at nisl imperdiet auctnec ornare, estsed tincidunare tincidunt. trisutincidat,<br>senibeget.</p>\r\n<ul class=\"ttm-list ttm-list-style-icon ttm-list-icon-color-skincolor pt-5\">\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Quisque aliquet nibh sit amet lectus auctor.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Nulla at metus ultricies, placerat augue sed.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Curabitur mollis ex vestibulum, ullamcorper.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Quisque aliquet nibh sit amet lectus aucto.</span></li>\r\n</ul>\r\n</div>\r\n<p></p>\r\n<div class=\"ttm-blogbox-desc-footer\">\r\n<div class=\"ttm-blogbox-footer-readmore\"></div>\r\n</div>\r\n<p></p>\r\n<div class=\"mt-30\">\r\n<h4>Why Integrate Side Projects?</h4>\r\n</div>\r\n<p><span>Suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</span><span>.</span></p>', '17-Blog2.png', NULL, '2020-09-29 05:47:13', '2020-09-29 07:19:24'),
(4, 'giới thiệu sản phẩm', 'gioi-thieu-san-pham', 1, 1, 5, 0, '<div class=\"ttm-box-desc-text\">\r\n<p>Mauris id enim id purus ornare tincidunt. Aenean vel consequat risus. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim sem at sem. Fusce tempus ex nibh, eget vulputate ligula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n</div>\r\n<div class=\"mt-20\">\r\n<p>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n</div>\r\n<h4>Less for this away much</h4>\r\n<p>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n<blockquote>Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ort. Proin viverra.</blockquote>\r\n<p>Dummy, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauenim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placat semmi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n<div class=\"mt-30\"><img class=\"img-fluid alignleft\" src=\"file:///D:/Template/tools/images/single-img-two.jpg\" alt=\"\">\r\n<h5>Beneficial Strategies</h5>\r\n<p>Proin viverra nisi at nisl imperdiet auctnec ornare, estsed tincidunare tincidunt. trisutincidat,<br>senibeget.</p>\r\n<ul class=\"ttm-list ttm-list-style-icon ttm-list-icon-color-skincolor pt-5\">\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Quisque aliquet nibh sit amet lectus auctor.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Nulla at metus ultricies, placerat augue sed.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Curabitur mollis ex vestibulum, ullamcorper.</span></li>\r\n<li><span class=\"fa fa-check\"></span><span class=\"ttm-list-li-content\">Quisque aliquet nibh sit amet lectus aucto.</span></li>\r\n</ul>\r\n</div>\r\n<div class=\"mt-30\">\r\n<h4>Why Integrate Side Projects?</h4>\r\n<p>Suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at Donec ornare, est sed tincidunt placerat, sem mi suscipit mi, at varius enim Mauris ienim id purus ornare tincidunt. Aenean vel consequat riss. Proin viverra nisi at nisl imperdiet auctor. Donec ornare, esed tincidunt placerat sem mi suscipit mi, at varius enim sem at sem. Fuce tempus ex nibh, eget vlputate lgula ornare eget. Nunc facilisis erat at ligula blandit tempor. maecenas</p>\r\n</div>', '8%20(1).jpg', NULL, '2020-09-29 06:55:21', '2020-09-29 07:19:20'),
(6, 'cuối tuần mặc gì chơi', 'cuoi-tuan-mac-gi-choi', 1, 1, 1, 0, '<div class=\"head-detail_blog\">\r\n<h1>CUỐI TUẦN MẶC GÌ ĐI CHƠI</h1>\r\n<span class=\"date-detail\"></span></div>\r\n<div class=\"nd\">\r\n<p>Mùa hè luôn là thời điểm nắng nóng khiến các chàng trai luôn mong muốn tìm được cho mình một item thoải mái nhưng lại đầy cuốn hút trong mắt người đối diện, điều đấy sẽ không hề khó khi các chàng trai tin tưởng và lựa chọn thương hiệu H2T <br><br>Một số ý tưởng sau đây đến từ các stylist nhà H2T hy vọng sẽ định hình được phong cách mà các chàng trai đang theo đuổi hoặc sẽ thay đổi để bắt kịp xu hướng thời trang hiện nay<br><br>Với những mẫu Polo lịch lãm được kết hợp cùng quần short hy vọng sẽ đem lại cho các chàng trai một set đồ perfect.</p>\r\n<p><img src=\"https://h2tstore.vn/media/news/1706__26A3962.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3958.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3953.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3945.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3934.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3947.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3931.jpg\" alt=\"\" width=\"1000\" height=\"1000\"><img src=\"https://h2tstore.vn/media/news/1706__26A3939.jpg\" alt=\"\" width=\"1000\" height=\"1000\"></p>\r\n</div>', '5.jpg', NULL, '2020-09-29 07:00:32', '2020-09-29 07:01:59'),
(9, 'Đừng tiếc Chi mạnh tay cho 48 mẫu Áo Khoác Parka Cực Ấm, Ưa Chuộng nhất mùa Lạnh này', 'dung-tiec-chi-manh-tay-cho-48-mau-ao-khoac-parka-cuc-am-ua-chuong-nhat-mua-lanh-nay', 0, 1, 5, 0, '<p lang=\"zxx\" align=\"JUSTIFY\"><span><a href=\"https://h2tshop.com/ao-khoac-nam.html\">Áo Khoác Parka</a> thường được gọi với cái tên “bình dân” là áo khoác Bắc Cực hay Anorak là trang phục tốt nhất để chống lại cái rét buốt của khí hậu những ngày đại hàn. Áo được làm từ các loại vải không thấm nước và có độ dài dao động trong khoảng từ thắt lưng tới đầu gối. Những chiếc <strong>áo khoác Parka</strong> của <a href=\"https://h2tshop.com/\">H2T</a> được thiết kế hơi rộng, đem lại cảm giác thoải mái, phóng khoáng và một chút “bụi phủi” mang đậm chất du mục cho người mặc. Đừng tiếc chi mạnh tay cho 1 in 48 mẫu Áo Khoác Parka \"Cực\" ấm Ưa Chuộng nhất mùa Lạnh này nhé bởi bạn sẽ không bao giờ thất vọng đâu!</span></p>\r\n<ul>\r\n<li lang=\"zxx\"><span><strong>Áo Khoác Parka là gì?</strong></span></li>\r\n</ul>\r\n<p lang=\"zxx\" align=\"JUSTIFY\">Có nguồn gốc từ loại áo chống rét của người Eskimo, áo parka rất được ưu ái trong những ngày đại hàn bởi khả năng giữ ấm tuyệt vời. Đặc điểm của chiếc áo khoác này tại H2T là được cắt may rộng rãi, có thể có mũ và lớp lót lông bên trong, thường gắn liền với các gam màu trầm, quân đội như xanh khaki, nâu, đen... Item này rất được ưa chuộng ở các nước xứ lạnh bởi ngoài khả năng giữ ấm tương đối tốt, nó còn mang lại nét phóng khoáng, thoải mái cho người mặc.</p>\r\n<p lang=\"zxx\" align=\"JUSTIFY\">Để chống chọi hiệu quả với cái rét ẩm của miền Bắc, bạn nên diện những chiếc áo dày dặn bên trong như len vặn thừng để giữ ấm tuyệt đối cho cơ thể. Cũng nên chọn áo trong có gam màu tương phản với áo parka để trang phục thêm nổi bật hơn trong các mẫu dưới đây của H2T nhé.</p>\r\n<p lang=\"zxx\" align=\"JUSTIFY\"><span><strong>Áo Khoác Parka - TOP áo khoác nam được yêu thích nhất tại H2T</strong></span></p>\r\n<p class=\"p1\">Nếu có một lời khuyên dành cho bạn ngay khi tiết trời đang sang thu vào đông này thì đó là: Đừng ngại chi tiền cho những chiếc áo khoác chất lượng! Có thể nói không một món đồ nào quan trọng và đáng đầu tư hơn một chiếc áo khoác ấm khi trời chuyển lạnh. Để chọn được chiếc áo khoác tốt và phù hợp nhất bạn nên ưu tiên 3 tiêu chí: chất liệu, kiểu dáng và sự tiện dụng. Vì sao chất liệu cần được đặt lên hàng đầu? Bởi một chiếc áo khoác có chất liệu tốt sẽ thể hiện khả năng giữ ấm tuyệt vời của nó. Mà trời lạnh thì không gì quý giá hơn sự ấm áp phải không?</p>\r\n<p class=\"p1\"><span><strong>1. Áo parka nam AK-0549</strong></span></p>\r\n<p class=\"p1\"><img src=\"https://h2tshop.com/media/product/2446_36_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p class=\"p1\">Dáng áo parka này giữ ấm cực tốt. Kiểu dáng trẻ trung, tiện lợi phù hợp với thời trang dạo phố thường ngày là điểm mạnh của áo parka. Chất liệu gió bên ngoài cùng lớp lót ấm áp bên trong giúp bạn có thể sống sót qua mùa đông khắc nghiệt nhất.</p>\r\n<p class=\"p1\"><span><strong>>>> Chi tiết SP: <a href=\"https://h2tshop.com/ao-parka-nam-ak-0549.html\">Áo parka nam AK-0549</a></strong></span></p>\r\n<p class=\"p1\"><span><strong>2. Parka kaki zanzi AK-0486</strong></span></p>\r\n<p class=\"p1\"><img src=\"https://h2tshop.com/media/product/2390_27_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p class=\"p1\">Áo thường được đệm lớp bông dày, với mũ to bản có viền lông, là vũ khí chống gió rét, mưa nhỏ rất tốt. Parka xanh quân đội vẫn luôn là màu sắc được phái mạnh ưa chộng nhất bên cạnh những màu sắc khác cũng như xanh hải quân, đen, xám… Chúng dễ kết hợp với các trang phục khác như áo bò, vest, sơ mi, áo phông…</p>\r\n<p class=\"p1\"><span><strong>>>> Chi tiết SP:<a href=\"https://h2tshop.com/parka-kaki-zanzi-ak-0486.html\"> Parka kaki zanzi AK-0486</a></strong></span></p>\r\n<p class=\"p1\"><strong><span>3. Parka gió nam AP-0527</span></strong></p>\r\n<p><img src=\"https://h2tshop.com/media/product/2404_14_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p>Áo Parka nam thường được giới trẻ lựa chọn cho mình vào mùa đông. Nếu bạn là tín đồ thời trang thì chắc chắn không thể thiếu áo <strong>Parka gió nam AP-0527</strong> này trong tủ đồ của bạn. Với <strong>Chất liệu </strong>Vải gió cao cấp, chống thấm nước tới 90%, trần bông ấm áp, thiết kế trẻ trung năng động, bo thun ở cổ tay, túi to 2 bên rất tiện lợi cho người mặc.</p>\r\n<p><span><strong>>>> Chi tiết SP: <a href=\"https://h2tshop.com/parka-gio-nam-ap-0527.html\">Parka gió nam AP-0527</a></strong></span></p>\r\n<p><strong><span>4. Parka zanzi lót lông cao cấp AK-0520</span></strong></p>\r\n<p><img src=\"https://h2tshop.com/media/product/2397_1_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p>Đúng như tên gọi của nó, áo có lớp ngoài vải gió cao cấp cùng mix da mang đến vẻ cá tính, thời thượng cho các chàng trai. Ngoài ra, lớp lót lông dạy dặn bên trong sẽ giúp các chàng cực ấm áp trong những thời tiết lạnh hay cực lạnh đấy. Chàng có thể mix cùng <a href=\"https://h2tshop.com/ao-thun.html\">áo len, áo thun</a><span> </span>cùng<span> </span><a href=\"https://h2tshop.com/quan-nam/c37.html\">quần hộp<span> </span></a>cùng tông màu zanzi hay<a href=\"https://h2tshop.com/quan-bo-nam/c5.html\"><span> </span>quần jean</a><span> </span>tối màu là đã cực chất rồi. </p>\r\n<p><span><strong>>>> Chi tiết SP:<a href=\"https://h2tshop.com/parka-zanzi-lot-long-cao-cap-ak-0520.html\"> Parka zanzi lót lông cao cấp AK-0520</a></strong></span></p>\r\n<p><span><strong>5. Áo parka kaki AK-0489</strong></span></p>\r\n<p><img src=\"https://h2tshop.com/media/product/2375_32_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p>Chất liệu kaki dày dặn kèm lót lông ấm áp cũng là một trong số những áo khoác Parka nam cực hot cho những ngày lạnh. Bạn thấy đấy, chiếc áo này cực dễ mặc và mix đồ cho những chàng trai hay cả những cô gái yêu thích phong cách cá tính, chất chơi. </p>\r\n<p><span><strong>>>> Chi tiết SP: <a href=\"https://h2tshop.com/ao-parka-kaki-ak-0489.html\">Áo parka kaki AK-0489</a></strong></span></p>\r\n<p><strong><span>6. Áo Parka nam AK-0487</span></strong></p>\r\n<p><img src=\"https://h2tshop.com/media/product/2371_29_1.jpg\" alt=\"\" width=\"800\" height=\"800\"></p>\r\n<p>Bất chấp xu hướng thời trang thay đổi chóng mặt những chiếc <strong>Áo Parka nam AK-0487</strong> trải qua bao nhiêu mùa vẫn là một món đồ được giới trẻ ưa chuộng. <strong>Chất liệu</strong>: Kaki dày dặn, bên trong được trần 1 lớp bông ấm áp. <strong>Áo Parka nam AK-0487</strong> dài qua mông, chất liệu dày dặn phần mũ có lông, đặc biệt gây ấn tượng cho người mặc bằng phong cách cá tính, các khóa kéo được thiết kế bố trí tinh tế ở túi áo và phần trước ngực kết hợp với túi kéo khóa bên rất phù hợp với các chàng trai năng động.</p>\r\n<p><span><strong>>>> Chi tiết SP: <a href=\"https://h2tshop.com/ao-parka-nam-ak-0487.html\">Áo Parka nam AK-0487</a></strong></span></p>\r\n<p>Parka không phải là xu hướng mới xuất hiện gần đây, chúng đã từng xuất hiện trên sàn catwalk từ những năm 2008-2009. Và cho tới nay, những chiếc áo parka vẫn luôn là cảm hứng sáng tạo cho các nhà thiết kế mỗi dịp Thu/Đông mới. Mùa Thu/Đông năm nay, H2T đã thổi một luồng gió mới cho áo parka khi tạo cho chúng những chi tiết và điểm nhấn rất mới lạ như: với chi tiết đuôi tôm, phần lông đắp ở mũ, tay áo hay viền da tinh tế, màu sắc tươi sáng và rực rỡ hơn.</p>\r\n<p><span><strong>Bạn hãy Tiếp tục xem tại đây</strong>: </span></p>\r\n<ul>\r\n<li><span><a href=\"https://h2tshop.com/ao-khoac-nam.html\">42 mẫu Áo Khoác Parka \"Cực\" ấm Ưa Chuộng nhất mùa Lạnh này</a></span></li>\r\n<li><span><a href=\"https://h2tshop.com/top-99-mau-ao-khoac-jeans-nam-moi-nhat-2019-cho-cac-chang-trai-thoi-thuong.html\">TOP 99 Mẫu Áo Khoác Jeans nam mới nhất 2019 cho các chàng Trai Thời Thượng</a></span></li>\r\n</ul>', '107_h2t.png', NULL, '2020-09-29 07:09:04', NULL),
(10, 'Hướng dẫn cách giặt và bảo quản quần âu đúng cách', 'huong-dan-cach-giat-va-bao-quan-quan-au-dung-cach', 0, 1, 6, 0, '<div><strong>Quần âu cùng với <a href=\"https://h2tshop.com/so-mi-dai-tay/c11.html\">áo sơ mi nam</a> là các trang phục tạo nên vẻ lịch lãm của quý ông. Và việc làm sạch chúng cũng đòi hỏi rất nhiều kỳ công từ người dùng. </strong><br><strong>Thực tế hiện nay cho thấy, dù bạn có giữ gìn chiếc <a href=\"https://h2tshop.com/quan-au-nam/c7.html\">quần âu</a><span> </span>của mình như thế nào đi chăng nữa thì cũng không tránh được việc phải đem chúng đi giặt. Đối với nhiều loại quần tây có vải len thì nếu không chú ý trong việc giặt là sẽ khiến cho chiếc quần nhanh chóng bị phai màu, xù lông, biến dạng… Bài viết sau đây sẽ giúp bạn cách giặt và bảo quản quần âu sao cho bền đẹp nhất.</strong></div>\r\n<h2><span><strong>#1. Hạn chế giặt thường xuyên đối với quần âu</strong></span></h2>\r\n<div>Theo như các chuyên gia và nhà sản xuất thì quần tây chỉ nên giặt khi cần thiết, khoảng 2-3 lần trong tháng. Điều này sẽ giúp cho chiếc quần được bền màu hơn, chất liệu theo đó cũng được đảm bảo hơn.<br>Quần âu chủ yếu bao gồm chất liệu là cotton và linen bạn có thể lựa chọn giữa giặt khô hoặc giặt ướt đều được. Tuy nhiên, nếu lựa chọn giặt ướt thì bạn nên giặt bằng tay để chiếc quần được bền đẹp hơn. Nguyên nhân là bởi khi giặt tay thì phần nào chiếc quần âu sẽ không bị vò nhiều lần như máy giặt, qua đó đảm bảo chiếc quần được giữ dáng tốt hơn.<br><br><a class=\"fancy_image\" href=\"https://jpcleaning.com.vn/images/2018/04/26/hot.gif\" rel=\"fancy_gallery\"><img src=\"https://jpcleaning.com.vn/images/2018/04/26/hot.gif\" alt=\"\"></a><em><strong><a href=\"http://h2tshop.com/7-bien-tau-giup-quy-ong-dien-so-mi-ca-tuan-khong-chan/a98.html\">7 biến tấu giúp quý ông diện sơ mi cả tuần không chán</a></strong></em></div>\r\n<div><br><img src=\"https://h2tshop.com/media/product/1242_16_7.jpg\" alt=\"\"></div>\r\n<div>\r\n<h1 class=\"h-title left\"><span><em><a href=\"https://h2tshop.com/quan-au-nam-q-1640/p1242.html\">Quần âu nam Q - 1640</a> - H2TShop</em></span></h1>\r\n</div>\r\n<div><span><strong>#2. Hạn chế dùng nước xả vải và chất tẩy với quần âu</strong></span></div>\r\n<div> </div>\r\n<div>Trên mỗi chiếc quần đều có gắn các tag lưu ý về điều kiện cũng như <strong><a href=\"http://h2tshop.com/huong-dan-cach-su-dung-va-bao-quan-ao-da-tai-nha-h2t/a75.html\">hướng dẫn cách giặt</a></strong><span> </span>đối với từng loại quần tây. Đa phần trên mác đều đưa ra lời gợi ý đó là bạn nên dùng sữa tắm, xà phòng thay vì bột giặt để làm sạch quần âu. Đặc biệt, không được dùng các bột giặt có tính tẩy trắng cao để tránh làm bạc màu và sờn vải.<br>Đối với nước xả vải, hầu hết mọi người đều dùng trên đồ giặt của mình để chúng có mùi hương được thơm lâu. Tuy nhiên, mặt trái của việc sử dụng nước xả vải trên quần tây đó là làm vải nhanh mềm từ đó làm mất form ban đầu của quần.<br><br><strong>>>> Xem thêm:</strong> <em><strong><a href=\"http://h2tshop.com/nhung-mon-do-co-ban-giup-dan-ong-tro-nen-quyen-ru/a100.html\">Những món đồ cơ bản giúp đàn ông trở nên quyến rũ</a></strong></em></div>\r\n<h2><span><strong>#3. Phơi quần âu nam đúng cách</strong></span></h2>\r\n<div>Quần tây là trang phục cực kỳ chú trọng tới việc giữ form dáng. Trong quá trình giặt và phơi, bạn nên chú ý không nên sấy, vắt kiệt chiếc quần khiến quần bị để lại vết nhàu trên vải. Trong quá trình phơi, bạn nên phơi ở phần đỉa của thắt lưng hoặc có thể gập đôi quần và vắt lên mắc quần áo. Khi phơi, nên lộn mặt trái của quần ra ngoài để hạn chế sự phai màu. Khu vực thích hợp để phơi quần tây đó là ở nơi có bóng râm, tránh nắng trực tiếp, để cho quần khô tự nhiên.</div>\r\n<h2><span><strong>#4. Là ủi quần tây đúng cách</strong></span></h2>\r\n<div>Nguyên tắc để có được một chiếc quần là ủi phẳng phiu đó là trước hết bạn cần lộn các túi bên trong ra và ủi trước. Sau đó, là ủi tới các phần đường xẻ của khóa quần và thắt lưng quần. Đối với phần nếp ly quần, để tránh hiện tượng bị nhăn, bạn trước hết cần gấp quần tây thẳng, so 2 ống với nhau và dùng kẹp cố định chặt 4 góc rồi ủi. Có thể xịt thêm 1 ít nước để có được các nếp ly gọn gàng, phẳng lỳ.</div>', '101_1.jpg', NULL, '2020-09-29 07:14:42', NULL),
(11, 'Những món đồ cơ bản giúp đàn ông trở nên quyến rũ', 'nhung-mon-do-co-ban-giup-dan-ong-tro-nen-quyen-ru', 0, 1, 6, 0, '<p>Đàn ông vốn không coi <strong><a href=\"https://h2tshop.com/that-lung/c28.html\">thắt lưng</a></strong>, ví tiền hay cà vạt là những vật trang sức. Nhưng họ không ngờ rằng, nhờ chúng mà cá tính của phái mạnh được được nhân lên gấp bội. Không khó để sắm về những món đồ đảm bảo chức năng, nhưng tận dụng chúng để nâng tầm phòng cách thì là điều không phải mày râu nào cũng nắm rõ.</p>\r\n<p><img src=\"http://mtv.vn/img/men-fashion.jpg\" alt=\"Kết quả hình ảnh cho gu thời trang nam sành điệu\"></p>\r\n<p><em>Phong cách, thần thái và gu thời trang sành điệu của cánh mày râu chính là điều phái đẹp ngưỡng mộ.</em></p>\r\n<p><span><strong>Kính mắt</strong></span></p>\r\n<p>Bên cạnh việc bảo vệ đôi mắt khỏi tác hại của môi trường, kính râm còn mang đến cho phái mạnh phong cách thời trang rất riêng biệt.</p>\r\n<p><em>Mỗi mày râu nên có ít nhất một cặp kính mắt nam với kiểu dáng phù hợp gương mặt và màu sắc lịch lãm, ấn tượng. Đây là món phụ kiện thu hút sự chú ý đặc biệt đến diện mạo của phái mạnh., giúp họ nổi bật hơn khi đeo hay cả khi kẹp chúng ở cổ - túi áo.</em></p>\r\n<p><span><strong><a href=\"https://h2tshop.com/that-lung/c28.html\">Thắt lưng</a></strong></span></p>\r\n<p><strong><a href=\"https://h2tshop.com/quan-au-nam/c7.html\">Quần âu</a></strong> và <strong><a href=\"https://h2tshop.com/so-mi-dai-tay/c11.html\">sơ mi nam</a><span> </span></strong>là những trang phục không thể thiếu với đàn ông, nhất là trong những dịp trọng đại. Sự kết hợp giữa chúng chỉ thực sự ăn ý khi có mặt chiếc thắt lưng da thật sang trọng. Phái mạnh đừng coi thường tầm quan trọng của vật dụng vốn bị che lấp bởi trang phục này. Chỉ cần nhìn thoáng qua người đối diện cũng có thể đánh giá gu thời trang, sự đẳng cấp của bạn bằng chất liệu, ổ khóa và những chi tiết trên chiếc thắt lưng da.</p>\r\n<p><img src=\"http://suckhoedanong.vn/uploads/001-SKDO-new-sitemap/5-Phong-cach/2-Thoi-trang/3-loi-co-ban-thuong-mac-o-phong-cach-thoi-trang-nam/3-loi-co-ban-thuong-mac-o-phong-cach-thoi-trang-nam.jpg\" alt=\"Kết quả hình ảnh cho thắt lưng nam người mẫu\"></p>\r\n<p><strong>>> Tham khảo: <a href=\"https://h2tshop.com/that-lung/c28.html\">Những mẫu thắt lưng da cao cấp của H2TShop</a></strong></p>\r\n<p><span><strong>Cà vạt</strong></span></p>\r\n<p>Là <strong><a href=\"https://h2tshop.com/phu-kien/c3.html\">phụ kiện</a></strong><span> </span>quen thuộc trong tủ đồ của phái mạnh nhưng không phải tất cả cánh đàn ông đều sử dụng hiệu quả vật dụng này. Thông thường, họ chỉ mang cà vạt trong những dịp quan trọng, cho rằng đó là một thủ tục rườm rà. Nhưng phái mạnh quên mất rằng, đây chính là điểm nhấn bắt mắt trên nền bộ trang phục đơn giản của nam giới. Nếu cánh mày râu không sở hữu chiếc sơ mi quá ấn tượng, hãy phối chúng cùng màu cà – vạt thật nổi bật. Chỉ bấy nhiêu thôi cũng đủ biến phái mạnh thành tâm điểm của mọi cuộc họp hành, giao lưu hay hội thảo.</p>\r\n<p><img src=\"http://dreamshop.com.vn/images/news/main/e1baa3nh-3.jpg\" alt=\"Hình ảnh có liên quan\"></p>\r\n<p><span><strong><a href=\"https://h2tshop.com/vi-da/c30.html\">Ví tiền</a></strong></span></p>\r\n<p>Sự quyến rũ của đàn ông có lẽ sẽ giảm đi một nửa nếu họ xuất hiện trước mặt đối phương và rút ra một chiếc ví sần sùi, nhàu nát. Chẳng phải phụ nữ đang quá dò xét về khả năng tài chính của phái mạnh đâu. Chỉ đơn giản là họ muốn xem cách mày râu chăm sóc ra sao với cái ‘kho tài lộc’ của mình.</p>\r\n<p><img src=\"https://h2tshop.com/media/product/702_3_34_4.jpg\" alt=\"\"></p>\r\n<div class=\"content-blog-detail\">\r\n<p><em>Không cần phải là món đồ có màu sắc hay thiết kế quá kiểu cách, đàn ông nên chọn cho mình chiếc ví đơn giản nhưng đủ để thể hiện cá tính riêng biệt.</em></p>\r\n</div>', '3-loi-co-ban-thuong-mac-o-phong-cach-thoi-trang-nam.jpg', NULL, '2020-09-29 07:17:14', NULL),
(12, 'Quần kaki nam - item không bao giờ lỗi mốt', 'quan-kaki-nam-item-khong-bao-gio-loi-mot', 0, 1, 6, 0, '<p class=\"content-excerpt\">Chiếc <strong><a href=\"https://h2tshop.com/quan-kaki/c6.html\">quần kaki nam</a></strong><span> </span>tưởng chừng sẽ làm người mặc khó chịu với dáng bó sát nhưng thực tế không phải vậy. Được làm từ chất liệu kaki bền đẹp, có khả năng co giãn và thấm hút mồ hôi, quần kaki đem lại cảm giác thoải mái, kể cả khi vận động.</p>\r\n<div class=\"lo-post-content\">\r\n<p>Quần kaki nam được xem là một trong những items không bao giờ lỗi mốt bởi khả năng kết hợp với mọi loại áo từ<span> </span><strong><a href=\"https://h2tshop.com/so-mi-dai-tay/c11.html\">sơ mi nam</a></strong>, <strong><a href=\"https://h2tshop.com/ao-phong-ao-thun-nam/c8.html\">áo thun</a></strong><span> </span>đến áo len,…Có rất nhiều kiểu quần kaki nam khác nhau như quần kaki ống côn, quần kaki ống đứng, hay quần kaki baggy. Và với bài viết này,<span> </span><strong>H2TShop</strong><span> </span>sẽ giúp các chàng trai tìm hiểu về đặc điểm cũng như cách phối quần kaki nam quen thuộc.</p>\r\n<p><img src=\"https://h2tshop.com/media/product/1008_1_7.jpg\" alt=\"\"></p>\r\n<p>So với những chiếc quần kaki thông thường, quần kaki ống côn có thiết kế phần ống quần bó sát, giúp người mặc có cảm giác đôi chân thon gọn và dài hơn. Chiếc quần kaki ống côn tưởng chừng sẽ gây khó chịu bởi phom dáng bó sát nhưng với độ co giãn và thấm hút mồ hôi của chất liệu kaki, chiếc quần này không chỉ tôn dáng mà còn đem lại sự thoải mái kể cả khi vận động nhiều.</p>\r\n<p>Hãy cùng điểm qua một vài gợi ý mix and match cùng chiếc quần kaki sau đây nhé!</p>\r\n<p><span><strong>#1. Năng động với áo thun</strong></span></p>\r\n<p>Với sự đa dạng về kiểu dáng cũng như màu sắc, không có lý do gì để bạn không yêu thích cách phối quần kaki ống côn với áo thun phải không nào? Cách mix đồ này đem đến cho các chàng trai vẻ ngoài trẻ trung, năng động, rất thích hợp cho những buổi dạo phố cuối tuần hoặc hẹn hò lãng mạn.</p>\r\n<p><img src=\"https://www.lofficiel.vn/wp-content/uploads/2018/05/10/quan-ong-con-8.jpg\" alt=\"cách phối quần kaki ống côn với áo thun tay dài\"></p>\r\n<div id=\"attachment_88049\" class=\"wp-caption aligncenter\">\r\n<div class=\"wp-caption-text\">Áo thun tay dài và nón fedora thanh lịch và trẻ trung</div>\r\n<div class=\"wp-caption-text\"> </div>\r\n<div class=\"wp-caption-text\"><img src=\"https://www.lofficiel.vn/wp-content/uploads/2018/05/10/quan-ong-con-3.jpg\" alt=\"cách phối quần kaki ống côn với áo polo\"></div>\r\n<div class=\"wp-caption-text\">Khỏe khoắn và năng động với <strong><a href=\"https://h2tshop.com/ao-phong-nam-atc18-0162/p1943.html\">áo polo</a></strong></div>\r\n<div class=\"wp-caption-text\"> </div>\r\n<div class=\"wp-caption-text\"><span><strong>#2. Lịch lãm khi kết hợp với áo sơ mi</strong></span></div>\r\n<div class=\"wp-caption-text\"> </div>\r\n<div class=\"wp-caption-text\">Nếu chọn quần kaki ống côn để đi làm mỗi ngày, bạn chỉ cần chú ý đến thời tiết để chọn được một chiếc áo sơ mi phù hợp. Với những ngày thời tiết mát mẻ, áo sơ mi dài tay và cà vạt sẽ là một lựa chọn hoàn hảo. Ngược lại,<span> </span><strong><a href=\"https://h2tshop.com/ao-so-mi-nam-smc18-0153/p1941.html\">áo sơ mi ngắn tay</a></strong> và quần kaki ống côn sẽ thích hợp hơn với những ngày thời tiết oi bức.\r\n<p><img src=\"https://h2tshop.com/media/product/1941_3989153098_1498883322.jpg\" alt=\"\"></p>\r\n<p><em><strong>Quần kaki nam + <a href=\"https://h2tshop.com/ao-so-mi-nam-smc18-0153/p1941.html\">Áo Sơ Mi Nam SMC18-0153</a></strong></em></p>\r\n<p><em><strong><img src=\"https://h2tshop.com/media/product/1855_8308356346_2007896927.jpg\" alt=\"\"></strong></em></p>\r\n<p> </p>\r\n</div>\r\n</div>\r\n<p><strong>Bạn vẫn có thể chọn những chiếc<span> </span><a href=\"https://h2tshop.com/ao-so-mi-nam-smc18-0097/p1855.html\">Áo Sơ Mi Nam SMC18-0097</a> thanh lịch và tinh tế để kết hợp với quần kaki </strong></p>\r\n<p><span><strong>#3. Kết hợp với giầy</strong></span></p>\r\n<p>Cũng giống như <strong><a href=\"https://h2tshop.com/quan-bo-nam/c5.html\">quần jeans</a>, </strong>quần kaki ống côn có thể kết hợp được với hầu hết các loại giày như sneakers, sandals, <strong><a href=\"https://h2tshop.com/giay-da-nam-g-992/p1507.html\">boots</a></strong><span> </span>hay giày lười loafer. Chỉ cần chọn được một đôi giày phù hợp với trang phục là phong cách thời trang của bạn đã được nâng tầm rồi.</p>\r\n<p><strong><img src=\"https://h2tshop.com/media/product/1752_20_1.jpg\" alt=\"\"></strong></p>\r\n<div id=\"attachment_88064\" class=\"wp-caption aligncenter\">\r\n<div class=\"wp-caption-text\">Nhưng sneaker vẫn là sự lựa chọn của đông đảo cánh đàn ông vì sự tiện dụng và năng động</div>\r\n</div>\r\n<p> <img src=\"https://h2tstore.vn/media/news/1506_quan-ong-con-12.jpg\" alt=\"\" width=\"691\" height=\"1037\"></p>\r\n<div id=\"attachment_88053\" class=\"wp-caption aligncenter\">\r\n<div class=\"wp-caption-text\">Những chàng trai lịch lãm không thể thiếu những đôi loafer cổ điển và thời thượng</div>\r\n<div class=\"wp-caption-text\"> </div>\r\n<div class=\"wp-caption-text\"><span><strong>#4. Điểm thêm phụ kiện</strong></span></div>\r\n<div class=\"wp-caption-text\"> </div>\r\n<div class=\"wp-caption-text\">Để có thể phối đồ với quần kaki ống côn một cách hiệu quả và nổi bật, phái mạnh đừng quên điểm thêm <strong><a href=\"https://h2tshop.com/phu-kien/c3.html\">phụ kiện</a><span> </span></strong>để làm điểm nhấn như nón, kính mát, đồng hồ, vòng đeo tay,…</div>\r\n</div>\r\n</div>', '94_1008__mg_5420.jpg', NULL, '2020-09-29 07:22:27', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `brands`
--
CREATE TABLE `brands` (
`id` bigint(20) UNSIGNED NOT NULL,
`br_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`br_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`br_hot` tinyint(4) NOT NULL DEFAULT 0,
`br_active` tinyint(4) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `brands`
--
INSERT INTO `brands` (`id`, `br_name`, `br_slug`, `br_hot`, `br_active`, `created_at`, `updated_at`) VALUES
(1, 'gucci1', 'gucci1', 0, 1, '2020-09-10 08:18:15', NULL),
(2, 'thời trang NEM Fashion', 'thoi-trang-nem-fashion', 0, 1, '2020-09-10 08:18:27', NULL),
(3, 'Seven AM.', 'seven-am', 0, 1, '2020-09-10 08:18:31', NULL),
(4, 'K&K Fashion.', 'kk-fashion', 0, 1, '2020-09-10 08:18:36', NULL),
(5, 'Eva de Eva.', 'eva-de-eva', 0, 1, '2020-09-10 08:18:41', NULL),
(6, 'Elise.', 'elise', 0, 1, '2020-09-10 08:18:46', NULL),
(7, 'Hnoss', 'hnoss', 0, 1, '2020-09-10 08:18:50', NULL),
(8, 'H2T', 'h2t', 0, 1, '2020-09-10 08:18:56', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`c_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`c_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`c_status` tinyint(4) NOT NULL DEFAULT 1,
`c_hot` tinyint(4) NOT NULL DEFAULT 0,
`c_parent_id` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `c_name`, `c_slug`, `c_status`, `c_hot`, `c_parent_id`, `created_at`, `updated_at`) VALUES
(6, 'áo sơ mi', 'ao-so-mi', 1, 1, 5, '2020-09-10 08:13:56', '2020-09-26 17:46:59'),
(7, 'áo thun', 'ao-thun', 1, 1, 5, '2020-09-10 08:14:07', '2020-09-26 17:46:44'),
(12, 'áo phông', 'ao-phong', 1, 1, 5, '2020-09-10 08:15:54', '2020-09-26 17:46:55'),
(15, 'quần kaki', 'quan-kaki', 1, 1, 13, '2020-09-10 08:16:45', '2020-09-29 11:50:51'),
(16, 'quần jogger', 'quan-jogger', 1, 0, 14, '2020-09-10 08:16:56', '2020-09-26 17:46:16'),
(17, 'áo vest', 'ao-vest', 1, 0, 0, '2020-09-29 10:58:00', NULL),
(18, 'trang sức', 'trang-suc', 1, 0, 0, '2020-09-29 10:58:12', NULL),
(19, 'giầy', 'giay', 1, 1, 0, '2020-09-29 10:58:17', '2020-09-29 11:50:53');
-- --------------------------------------------------------
--
-- Table structure for table `clients`
--
CREATE TABLE `clients` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`birthday` date DEFAULT NULL,
`gender` tinyint(4) DEFAULT NULL,
`coupon_code_id` tinyint(4) DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clients`
--
INSERT INTO `clients` (`id`, `name`, `email`, `email_verified_at`, `password`, `status`, `phone`, `address`, `avatar`, `last_login`, `birthday`, `gender`, `coupon_code_id`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'quang', '<EMAIL>', NULL, <PASSWORD>', 1, '0981558501', 'số 3 ngõ 361 vũ tông phan', 'anh.jpg', NULL, '1998-05-10', 1, NULL, '3vnNOlZJGSF7DZKArPN6UwLpehqnrXQkl59SNp8Qlp7XfnhebbS4wALEKUbl', NULL, '2020-09-29 14:41:08'),
(9, '<NAME>', '<EMAIL>', NULL, '$2y$10$UIovNPgSEqMgdzhKsUAu/.iL9SArpv5hPMLKLVlVQyWQInVCSlofq', 1, '0981558563', NULL, NULL, NULL, NULL, NULL, NULL, 'oy05oECIqNYG4x7t6rHLke4KH0bjJwOAh6e3X9HrgVKW5s13bIlGBWhTuRzP', '2020-09-17 01:08:55', '2020-09-28 10:57:10'),
(11, 'test', '<EMAIL>', NULL, '$2y$10$D8eupANZFslBA6fmb/41Bu60WyLkhwFBHs9.5.Bf1Mhx4sq7jRZ2u', 0, '0951251', NULL, NULL, NULL, NULL, NULL, NULL, 'M8RW58jSpLm05pdLkldEHNK5lQgCQJZBbLJTOVdo3cs8dWaGi8i9x3zYsVM6', '2020-09-28 17:43:39', '2020-09-28 17:43:49'),
(12, 'chung', '<EMAIL>', NULL, '$2y$10$hhD2arvfBnRJQDSTuOl9AusZKVTeyL2cACirNMdjrRlIlDF.37zCa', 1, '012365478', NULL, NULL, NULL, NULL, NULL, NULL, 'BoXLr895iSZaam3hx1KqRWySOCSu63u4Vit5qrYdT6IF5wxyI3jqB4QTsKE9', '2020-09-29 11:30:07', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `colors`
--
CREATE TABLE `colors` (
`id` bigint(20) UNSIGNED NOT NULL,
`cl_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`cl_status` tinyint(4) DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `colors`
--
INSERT INTO `colors` (`id`, `cl_name`, `cl_status`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 1, '2020-09-10 08:22:09', NULL),
(2, 'trắng', 1, '2020-09-10 08:33:41', NULL),
(3, 'nâu', 1, '2020-09-10 08:35:59', NULL),
(4, 'xám', 1, '2020-09-10 08:38:12', NULL),
(5, 'đen', 1, '2020-09-10 08:40:42', NULL),
(6, 'đỏ', 1, '2020-09-10 08:56:21', NULL),
(7, 'xanh', 1, '2020-09-10 10:04:41', NULL),
(8, 'tím', 1, '2020-09-29 11:23:21', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `favourites`
--
CREATE TABLE `favourites` (
`id` bigint(20) UNSIGNED NOT NULL,
`fa_user_id` int(11) NOT NULL DEFAULT 0,
`fa_product_id` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `favourites`
--
INSERT INTO `favourites` (`id`, `fa_user_id`, `fa_product_id`, `created_at`, `updated_at`) VALUES
(114, 1, 15, NULL, NULL),
(119, 1, 16, NULL, NULL),
(122, 9, 16, NULL, NULL),
(125, 9, 15, NULL, NULL),
(127, 9, 25, NULL, NULL),
(128, 9, 23, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `keywords`
--
CREATE TABLE `keywords` (
`id` bigint(20) UNSIGNED NOT NULL,
`k_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`k_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`k_hot` tinyint(4) NOT NULL DEFAULT 0,
`k_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `keywords`
--
INSERT INTO `keywords` (`id`, `k_name`, `k_slug`, `k_hot`, `k_description`, `created_at`, `updated_at`) VALUES
(2, 'sản phẩm mới', 'san-pham-moi', 0, 'mới về hàng', '2020-09-10 08:17:27', NULL),
(3, 'bán chạy', 'ban-chay', 0, 'mua nhiều', '2020-09-10 08:17:40', NULL),
(4, 'nổi bât', 'noi-bat', 0, 'đẹp chất lượng', '2020-09-10 08:18:03', NULL),
(6, 'sale 99', 'sale-99', 0, 'ok', '2020-09-19 02:51:42', NULL),
(7, 'hot', 'hot', 0, 'dđ', '2020-09-19 02:51:55', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `menus`
--
CREATE TABLE `menus` (
`id` bigint(20) UNSIGNED NOT NULL,
`mn_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mn_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mn_status` tinyint(4) NOT NULL DEFAULT 1,
`mn_hot` tinyint(4) NOT NULL DEFAULT 0,
`mn_avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mn_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mn_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `menus`
--
INSERT INTO `menus` (`id`, `mn_name`, `mn_slug`, `mn_status`, `mn_hot`, `mn_avatar`, `mn_banner`, `mn_description`, `created_at`, `updated_at`) VALUES
(1, 'sự kiện', 'su-kien', 1, 0, NULL, NULL, NULL, '2020-09-29 05:41:56', '2020-09-29 05:49:02'),
(2, 'khuyến mãi', 'khuyen-mai', 1, 0, NULL, NULL, NULL, '2020-09-29 05:42:02', NULL),
(5, 'giới thiệu', 'gioi-thieu', 1, 0, NULL, NULL, NULL, '2020-09-29 06:54:41', NULL),
(6, 'thông tin bổ ích', 'thong-tin-bo-ich', 1, 0, NULL, NULL, NULL, '2020-09-29 07:11:23', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2020_09_10_075617_create_categories_table', 1),
(5, '2020_09_10_075638_create_brands_table', 1),
(6, '2020_09_10_075654_create_products_table', 1),
(7, '2020_09_10_075721_create_keywords_table', 1),
(8, '2020_09_10_075738_create_products_keywords_table', 1),
(9, '2020_09_10_075800_create_sizes_table', 1),
(10, '2020_09_10_075814_create_colors_table', 1),
(11, '2020_09_10_080421_create_products_details_table', 1),
(12, '2020_09_14_110342_create_clients_table', 2),
(13, '2020_09_15_082136_create_orders_table', 3),
(14, '2020_09_15_085801_create_orders_details_table', 4),
(15, '2020_09_15_085912_create_shippings_table', 4),
(16, '2020_09_16_145106_create_favourites_table', 5),
(17, '2020_09_18_045505_create_ratings_table', 6),
(18, '2020_09_21_155030_create_slides_table', 7),
(19, '2020_09_23_161649_create_payments_table', 8),
(20, '2020_09_27_130923_create_roles_table', 9),
(21, '2020_09_27_131047_create_user_roles_table', 10),
(22, '2020_09_27_133415_create_roles_table', 11),
(23, '2020_09_27_133456_create_user_roles_table', 11),
(24, '2020_09_29_102939_create_blogs_table', 12),
(25, '2020_09_29_103430_create_articles_table', 12),
(26, '2020_09_29_122242_create_menus_table', 13),
(27, '2020_09_29_122328_create_articles_table', 13);
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`order_user_id` int(11) NOT NULL,
`order_total_money` int(11) NOT NULL DEFAULT 0,
`order_shipping_fee` int(11) DEFAULT 0,
`order_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order_payment` tinyint(4) DEFAULT 1,
`order_status` tinyint(4) DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`order_note` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`id`, `order_user_id`, `order_total_money`, `order_shipping_fee`, `order_name`, `order_email`, `order_phone`, `order_address`, `order_payment`, `order_status`, `created_at`, `updated_at`, `order_note`) VALUES
(53, 9, 320000, 2, '<NAME>', '<EMAIL>', '0981558563', 'so 3 ngo 361 vu tong phan', 1, -1, '2020-09-23 17:00:00', '2020-09-29 11:32:25', 'assfd'),
(54, 1, 320000, 2, 'quang', '<EMAIL>', '0981558501', 'so 3 ngo 361 vu tong phan', 1, 2, '2020-09-24 08:18:31', '2020-09-25 20:42:49', 'cẩn thận nha'),
(55, 1, 560000, 2, 'quang', 'quang<EMAIL>', '0981558501', 'so 3 ngo 361 vu tong phan', 2, 3, '2020-09-24 08:32:34', '2020-09-25 20:43:54', 'ádfadsfsdaf'),
(56, 1, 250000, 2, 'quang', '<EMAIL>', '0981558501', 'so 3 ngo 361 vu tong phan', 1, 1, '2020-09-25 20:43:33', NULL, 'giao hàng cẩn thận'),
(57, 1, 320000, 2, 'quang', '<EMAIL>', '0981558501', 'nam gian nam truc nam dinh', 1, 3, '2020-09-26 04:55:46', '2020-09-26 04:56:31', 'goi điện trước khi giao hàng'),
(58, 1, 98000, 2, 'quang', '<EMAIL>', '0981558501', 'van chang', 2, 3, '2020-09-26 05:02:32', '2020-09-26 05:02:56', 'giao hàng tối'),
(60, 9, 298000, 2, '<NAME>', '<EMAIL>', '0981558563', NULL, 1, 1, '2020-09-29 11:27:34', NULL, 'giao hàng cẩn thận nha'),
(61, 12, 448000, 2, 'chung', '<EMAIL>', '012365478', NULL, 2, 2, '2020-09-29 11:32:03', '2020-09-29 11:32:19', 'gọi trước khi giao hàng');
-- --------------------------------------------------------
--
-- Table structure for table `orders_details`
--
CREATE TABLE `orders_details` (
`id` bigint(20) UNSIGNED NOT NULL,
`od_order_id` int(11) NOT NULL DEFAULT 0,
`od_product_id` int(11) NOT NULL DEFAULT 0,
`od_qty` tinyint(4) NOT NULL DEFAULT 0,
`od_price` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `orders_details`
--
INSERT INTO `orders_details` (`id`, `od_order_id`, `od_product_id`, `od_qty`, `od_price`, `created_at`, `updated_at`) VALUES
(74, 53, 18, 1, 320000, NULL, NULL),
(75, 54, 18, 1, 320000, NULL, NULL),
(76, 55, 16, 1, 560000, NULL, NULL),
(77, 56, 6, 1, 250000, NULL, NULL),
(78, 57, 18, 1, 320000, NULL, NULL),
(79, 58, 5, 1, 98000, NULL, NULL),
(81, 60, 25, 1, 99000, NULL, NULL),
(82, 60, 23, 1, 199000, NULL, NULL),
(83, 61, 25, 1, 99000, NULL, NULL),
(84, 61, 23, 1, 199000, NULL, NULL),
(85, 61, 24, 1, 150000, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `payments`
--
CREATE TABLE `payments` (
`id` bigint(20) UNSIGNED NOT NULL,
`payment_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `payments`
--
INSERT INTO `payments` (`id`, `payment_type`, `payment_status`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', '1', '2020-09-23 16:22:13', '2020-09-23 16:22:13'),
(2, '<NAME>', '1', '2020-09-23 16:23:01', '2020-09-23 16:23:01');
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`pro_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`pro_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`pro_price` int(11) NOT NULL DEFAULT 0,
`pro_price_entry` int(11) DEFAULT 0 COMMENT 'giá nhập',
`pro_sale` int(11) DEFAULT 0,
`pro_avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pro_avatar_list` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pro_view` int(11) NOT NULL DEFAULT 0,
`pro_hot` tinyint(4) NOT NULL DEFAULT 0,
`pro_active` tinyint(4) NOT NULL DEFAULT 1,
`pro_pay` int(11) NOT NULL DEFAULT 0,
`pro_description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pro_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pro_number` int(11) DEFAULT NULL,
`pro_review_total` int(11) NOT NULL DEFAULT 0,
`pro_review_star` int(11) NOT NULL DEFAULT 0,
`pro_category_id` bigint(20) UNSIGNED NOT NULL,
`pro_brand_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `pro_name`, `pro_slug`, `pro_price`, `pro_price_entry`, `pro_sale`, `pro_avatar`, `pro_avatar_list`, `pro_view`, `pro_hot`, `pro_active`, `pro_pay`, `pro_description`, `pro_content`, `pro_number`, `pro_review_total`, `pro_review_star`, `pro_category_id`, `pro_brand_id`, `created_at`, `updated_at`) VALUES
(1, 'Áo thun phối màu AT 1081', 'ao-thun-phoi-mau-at-1081', 234997, 150000, 0, '3073__nik6457.jpg', '3073__nik6457.jpg,3073__nik6460.jpg,3073__nik6461.jpg,3073__nik6462.jpg,3073__nik6465.jpg', 8, 0, 1, 1, '<p><strong><span>ÁO PHÔNG NAM</span></strong></p>\r\n<p><span><strong><em><span><a href=\"https://h2tstore.vn/ao-thun-khong-co.html\">Áo thun nam</a></span> </em></strong>luôn là item gắn liền với thời tiết mùa hè mùa hè, Với thiết kế đơn giản và phổ biến trên thị trường. Bên cạnh thiết kế đơn sắc, áo thun phối màu cũng là sản phẩm thu hút nhiều sự quan tâm. Chính vì thế trong bộ sưu tập hè 2020 MIIX đã cho ra mắt dòng sản phẩm phối màu đơn giản nhưng mang lại sự chú ý từ những người xung quanh.</span></p>\r\n<p><strong><span>C<span>hất liệu:</span></span></strong><span><span> </span>100% cotton</span></p>\r\n<p><span><strong><span>Thiết kế áo: </span></strong></span></p>\r\n<p><span>+ Thoáng mát thoải mái ( cotton)</span></p>\r\n<p><span>+ Thấm hút mồ hôi tốt ( cotton)</span></p>\r\n<p><span>+ Mềm mại, thân thiện với da ( cotton)</span></p>\r\n<p><span><strong><span>Màu sắc:</span></strong><span> <span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Trắng phối Ghi (Gc), xanh đậm phối đen(Kc), trắng phối xanh nhạt (Kn), đen (Bc)</span></span></span></p>\r\n<p><strong><span> Size hiện có:</span></strong><span> S, M, L, XL</span></p>\r\n<p><strong><span>Mix and Match <span>: </span></span></strong><span><span>Đơn giản chỉ cần 1 chiếc</span></span><span><span> <em><strong><span><a href=\"https://h2tstore.vn/quan-ngo.html\">quần short</a></span></strong></em></span><span> và 1 đôi </span><span><strong><em><span><a href=\"https://h2tstore.vn/giay-da-nam.html\">giày thể thao</a> </span></em></strong></span><span><span><span>đã cho bạn một set đồ tự tin</span></span></span><span><span> </span></span></span></p>', NULL, 50, 0, 0, 7, 8, '2020-09-10 08:22:09', '2020-09-29 10:56:33'),
(3, 'Sơ mi công sở trắng SM-1034', 'so-mi-cong-so-trang-sm-1034', 435000, 350000, 0, '3064_35abaef5694e9210cb5f.jpg', '3064_35abaef5694e9210cb5f%20(1).jpg,3064_35abaef5694e9210cb5f%20(2).jpg,3064_35abaef5694e9210cb5f.jpg,3064_43dcca860d3df663af2c.jpg,3064_7ab371eab6514d0f1440.jpg,3064_d9fe3abbfd00065e5f11.jpg', 3, 0, 1, 1, '<p><strong>SƠ MI NAM</strong></p>\r\n<p><span>Sơ mi là mẫu áo tồn tại theo thời gian. Từ những chiếc<span> <a href=\"https://h2tstore.vn/so-mi-dai-tay-2.html\">áo sơ mi</a></span> truyền thống đến hiện đại với những thiết kế tinh tế cầu kỳ hơn. <strong>Sơ</strong> <strong>mi trắng công sở SM-1034</strong> là mẫu áo thần thánh đem lại cho bạn vẻ đẹp trẻ trung, lịch lãm mà không kém phần sang trọng.</span></p>\r\n<p><strong>Chất liệu:<span> </span></strong><span>50% bamboo, 50% Polyester</span></p>\r\n<p><span><span><strong>Thiết kế áo: <span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br></span></strong><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">+ Kháng khuẩn và chống tia UV. ( bamboo)</span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br>+ Bề mặt bóng đẹp ( bamboo)<br>+ An toàn không gây kích ứng da ( bamboo)<br>+ Thấm hút mồ hôi tốt ( bamboo)<br>+ Giữ phom dáng ( polyeste)<br>+ Ổn định kích thước, độ nhăn nhàu thấp ( polyeste)<br></span></span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><span><span>+ Độ bền cao, dễ chăm sóc và dễ sử dụng.( polyeste)</span></span></span></span><strong><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br></span></strong></p>\r\n<p><span><strong>Màu sắc:</strong> Trắng (Tc)</span></p>\r\n<p><span><strong>Size hiện có:</strong> S, M, L, XL</span></p>\r\n<p><strong>Mix and Match: </strong></p>\r\n<ul>\r\n<li>Từ cổ chí kim gắn liền với sơ mi luôn là <span><a href=\"https://h2tstore.vn/quan-au-nam.html\">quần tây</a></span> sang trọng, lịch sự.</li>\r\n<li>Ngoài ra, với kiểu dáng hiện đại thì sơ mi kết hợp cùng quần Kaki hay Jean đều rất nổi bật.</li>\r\n</ul>', NULL, 50, 0, 0, 6, 1, '2020-09-10 08:33:41', '2020-09-11 23:30:33'),
(4, 'Áo phông polo nam AP-1075', 'ao-phong-polo-nam-ap-1075', 365000, 300000, 299998, '3067__26a3777.jpg', '3067__26a0897%20(1).jpg,3067__26a0897.jpg,3067__26a3773.jpg,3067__26a3775.jpg,3067__26a3776.jpg,3067__26a3777.jpg', 3, 1, 1, 3, '<p><strong><span>ÁO PHÔNG NAM</span></strong></p>\r\n<p><span><strong><em><span><a href=\"https://h2tstore.vn/ao-thun-polo.html\"><span>Áo thun nam</span></a></span></em></strong></span><strong><em><span> </span></em></strong><span>polo<strong><em> </em></strong>là mẫu áo đơn giản kết hợp kiểu dáng giữa cổ đức và chất thun thoáng mát. Là item đã được cải tiến phối màu so với thiết kế cổ điển thông thường cho cánh mày râu, không những mang lại cho người mặc sự lịch lãm nhưng đồng thời cũng trẻ trung. Thiết kế trơn đơn giản dễ phối đồ .</span></p>\r\n<p><strong><span>Chất liệu:</span></strong><span> 85% cotton, 15% polyester</span></p>\r\n<p><strong><span>Thiết kế áo: </span></strong></p>\r\n<p><span><span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">+ Thoáng mát thoải mái ( cotton)<br>+ Thấm hút mồ hôi tốt ( cotton)<br>+ Mềm mại, thân thiện với da ( cotton)<br>+ Giữ phom dáng ( polyeste)<br>+ Ổn định kích thước, độ nhăn nhàu thấp ( polyeste)<br></span></span><span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">+ Độ bền cao, dễ chăm sóc và dễ sử dụng.( polyeste)</span></span><strong><span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br></span></span></strong></span></p>\r\n<p><strong><span>Màu sắc:</span></strong><span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Trắng (Tc), đen(Bc), xanh(Xc), tím than đậm (Kđ), tím than nhạt (Kn), ghi đậm(Gđ), ghi nhạt (Gn), cam(Oc), hồng(Hc)</span></span></p>\r\n<p><strong><span> Size hiện có:</span></strong><span> S, M, L, XL</span></p>\r\n<p><strong><span>Mix and Match : </span></strong><span>Đơn giản chỉ cần 1 chiếc</span><span> <strong><em><span><a href=\"https://h2tstore.vn/quan-ngo.html\">quần short</a></span></em></strong></span><span><span> </span>và 1 đôi </span><em><strong><span><span><a href=\"https://h2tstore.vn/giay-da-nam.html\">giày thể thao</a></span> </span></strong></em><span>đã cho bạn một set đồ tự tin</span></p>', NULL, 9, 0, 0, 12, 4, '2020-09-10 08:35:59', '2020-09-21 22:01:54'),
(5, 'Áo thun 3 lỗ AT-0753', 'ao-thun-3-lo-at-0753', 98000, 30000, 0, '2702__mg_3442.jpg', '2702__mg_3442.jpg,2702__mg_3459.jpg,2702__mg_3461.jpg,2702__mg_3463.jpg,2702__mg_3465.jpg,2702__mg_3466.jpg,2702__mg_3471.jpg,2702__mg_3473.jpg', 7, 1, 1, 4, 'thoáng mát', NULL, 47, 0, 0, 7, 7, '2020-09-10 08:37:04', '2020-09-29 10:56:43'),
(6, 'Áo thun nam in hình ATV0-1171', 'ao-thun-nam-in-hinh-atv0-1171', 250000, 150000, 0, '3183__nik0111.jpg', '3183__nik0104.jpg,3183__nik0106.jpg,3183__nik0107.jpg,3183__nik0111%20(1).jpg,3183__nik0111%20(2).jpg,3183__nik0111.jpg,3183__nik0114.jpg', 16, 1, 1, 14, '<p><strong>ÁOTHUN NAM</strong></p>\r\n<p><span><strong><a href=\"https://h2tstore.vn/ao-thun-khong-co.html\"><em>Áo thun nam</em></a></strong></span> là trang phục thông dụng nhất trong thế giới thời trang và chưa có một phụ kiện thời trang nào đánh bật được vị trí số 1 của nó. Luôn là mẫu áo cực đơn giản nhưng lại không hề đơn giản chút nào. Phù hợp với mọi đối tượng sử dụng. Với thiết kế đơn giản mặt trước bassic trơn lưng áp họa tiết in chữ làm điểm nhấn nổi bật cho người mặc.</p>\r\n<p><strong>Thiết kế áo:</strong></p>\r\n<ul>\r\n<li>Áo cổ tròn, thiết kế đơn giản, dễ phối đố.</li>\r\n<li>Gam màu lạnh phù hợp với mọi lứa tuổi</li>\r\n<li>Dáng áo basic truyền thống.</li>\r\n</ul>\r\n<p><strong>Đặc tính áo: </strong></p>\r\n<ul>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thoáng mát thoải mái ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thấm hút mồ hôi tốt ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Mềm mại, thân thiện với da ( cotton)</span><strong><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br></span></strong></li>\r\n</ul>\r\n<p><strong>Màu sắc: </strong>Đen (Bc)</p>\r\n<p><strong>Size hiện có: </strong>S, M, L, XL</p>\r\n<p><strong>Mix and Match: </strong></p>\r\n<ul>\r\n<li>Chẳng cần phối đồ gì cho phức tạp, chỉ cần phối hợp cùng chiếc <em><strong><span><a href=\"https://h2tstore.vn/quan-bo-nam.html\">quần jean</a></span> </strong></em> và <span><strong><a href=\"https://h2tstore.vn/giay-da-nam.html\"><em>đôi giày thể thao</em></a></strong></span> đã có 1 set đồ cực kỳ năng động rồi.</li>\r\n<li>Đơn giản chỉ cần 1 chiếc <span><strong><em><a href=\"https://h2tstore.vn/quan-ngo.html\">quần short</a></em></strong></span> và 1 đôi <span><em><strong><a href=\"https://h2tstore.vn/giay-da-nam.html\">giày thể thao</a> </strong></em></span>đã cho bạn một set đồ tự tin</li>\r\n</ul>', NULL, 44, 0, 0, 7, 3, '2020-09-10 08:38:12', '2020-09-29 10:56:22'),
(7, 'Quần hộp kaki Q-1009', 'quan-hop-kaki-q-1009', 495000, 300000, 0, '3164__26a7479.jpg', '3164__26a7479.jpg,3164__26a7491.jpg,3164__26a7492.jpg,3164__26a7494.jpg,3164__26a7495.jpg', 2, 0, 1, 1, '<p><span><em><strong><a href=\"https://h2tstore.vn/quan-kaki.html\">Quần Jogger kaki</a></strong></em> </span>là mẫu quần không quá quen thuộc hay thông dụng như quần Jean hay quần âu. Hiện nay quần jogger kaki vẫn là mẫu quần được giới bạn trẻ rất ưa chuộng. Xuất phát từ quần thể thao truyền thống, quần jogger kaki được kết hợp giữa phong cách đầy trẻ trung, năng động cùng với sự sang trọng và lịch lãm. đem lại phong cách riêng cho các chàng trai</p>\r\n<p><strong>Chất liệu:</strong> 94% cotton, 6% elastane </p>\r\n<p><strong>Thiết kế quần: </strong></p>\r\n<ul>\r\n<li>Thiết kế basic, màu sắc không kén người mặc.</li>\r\n<li>Túi túi chéo truyền thống, kiểu dáng trẻ trung có kèm khóa kéo.</li>\r\n<li>Khuy cài cùng dây rút đi kèm sẽ tạo cảm giác thoải mái vận động</li>\r\n</ul>\r\n<p><strong>Đặc tính quần :</strong></p>\r\n<ul>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thoáng mát thoải mái ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thấm hút mồ hôi tốt ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Mềm mại, thân thiện với da ( cotton)</span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Giữ phom dáng ( elastane)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Có khả năng đàn hồi tốt ( elastane)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Được cài trong vải sợi chính để tạo tăng độ co giãnthoải mái ( elastane)</span></li>\r\n</ul>', NULL, 49, 0, 0, 15, 3, '2020-09-10 08:39:36', '2020-09-11 23:29:44'),
(8, 'Quần Jogger QOH0-1125', 'quan-jogger-qoh0-1125', 425000, 250000, 0, '3141__nik7746.jpg', '3141__nik7746%20(2).jpg,3141__nik7746.jpg,3141__nik7752.jpg,3141__nik7753.jpg,3141__nik7760.jpg,3141__nik7762.jpg', 1, 0, 1, 1, '<p><span><em><strong><a href=\"https://h2tstore.vn/quan-kaki.html\">Quần Jogger kaki</a></strong></em> </span>là mẫu quần không quá quen thuộc hay thông dụng như quần Jean hay quần âu. Hiện nay quần jogger kaki vẫn là mẫu quần được giới bạn trẻ rất ưa chuộng. Xuất phát từ quần thể thao truyền thống, quần jogger kaki được kết hợp giữa phong cách đầy trẻ trung, năng động cùng với sự sang trọng và lịch lãm. đem lại phong cách riêng cho các chàng trai</p>\r\n<p><strong>Chất liệu:</strong> 94% cotton, 6% elastane </p>\r\n<p><strong>Thiết kế quần: </strong></p>\r\n<ul>\r\n<li>Thiết kế basic, màu sắc không kén người mặc.</li>\r\n<li>Túi túi chéo truyền thống, kiểu dáng trẻ trung có kèm khóa kéo.</li>\r\n<li>Khuy cài cùng dây rút đi kèm sẽ tạo cảm giác thoải mái vận động</li>\r\n</ul>\r\n<p><strong>Đặc tính quần :</strong></p>\r\n<ul>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thoáng mát thoải mái ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Thấm hút mồ hôi tốt ( cotton)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Mềm mại, thân thiện với da ( cotton)</span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Giữ phom dáng ( elastane)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Có khả năng đàn hồi tốt ( elastane)<br></span></li>\r\n<li><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Được cài trong vải sợi chính để tạo tăng độ co giãnthoải mái ( elastane)</span></li>\r\n</ul>', NULL, 49, 0, 0, 16, 2, '2020-09-10 08:40:42', '2020-09-11 23:30:10'),
(14, 'Áo thun cotton basic AT-0828', 'ao-thun-cotton-basic-at-0828', 195000, 99999, 0, '2780__dsc0531.jpg', '2780__dsc0531.jpg,2780__dsc0541.jpg,2780__dsc0543.jpg,2780__dsc0662.jpg,2780__dsc0682.jpg', 14, 1, 1, 8, '<p><strong>ÁO PHÔNG ĐƠN GIẢN NHẸ NHÀNG</strong></p>\r\n<p>Áo phông là mẫu áo cực đơn giản nhưng lại không hề đơn giản chút nào. Được gọi là mẫu áo thần thánh mix được với tất cả các set đồ. Có thể nhắc đến mẫu<span> </span><strong>Áo thun cotton basic AT-0828</strong><span> </span>với màu sắc đơn giản, trầm tính cực dễ kết hợp đồ.</p>\r\n<p><strong>Chất liệu: </strong>Cotton, mềm mịn.</p>\r\n<p><strong>Thiết kế áo:</strong></p>\r\n<ul>\r\n<li>Áo cổ tròn, thiết kế đơn giản, dễ phối đố.</li>\r\n<li>Gam màu lạnh phù hợp với mọi lứa tuổi</li>\r\n<li>Dáng áo basic truyền thống.</li>\r\n</ul>', NULL, 44, 0, 0, 7, 2, '2020-09-10 09:58:46', '2020-09-11 23:28:25'),
(15, 'Áo thun nam ATC0-1219', 'ao-thun-nam-atc0-1219', 320000, 150000, 0, '3330__nik0658.jpg', '3330__nik0658%20(1).jpg,3330__nik0658.jpg,3330__nik0660.jpg,3330__nik0666.jpg,3330__nik0667.jpg,3330__nik0669.jpg', 30, 1, 1, 19, '<p><strong>ÁO PHÔNG ĐƠN GIẢN NHẸ NHÀNG</strong></p>\r\n<p>Áo phông là mẫu áo cực đơn giản nhưng lại không hề đơn giản chút nào. Được gọi là mẫu áo thần thánh mix được với tất cả các set đồ. Có thể nhắc đến mẫu<span> </span><strong>Áo thun cotton basic AT-0828</strong><span> </span>với màu sắc đơn giản, trầm tính cực dễ kết hợp đồ.</p>\r\n<p><strong>Chất liệu: </strong>Cotton, mềm mịn.</p>\r\n<p><strong>Thiết kế áo:</strong></p>\r\n<ul>\r\n<li>Áo cổ tròn, thiết kế đơn giản, dễ phối đố.</li>\r\n<li>Gam màu lạnh phù hợp với mọi lứa tuổi</li>\r\n<li>Dáng áo basic truyền thống.</li>\r\n</ul>\r\n<p><strong>Màu sắc: </strong>Ghi, Đen, Trắng</p>\r\n<p><strong>Size hiện có: </strong>S, M, L, XL</p>', NULL, 0, 5, 16, 7, 4, '2020-09-10 10:04:41', '2020-09-19 01:43:16'),
(16, 'Áo sơ mi Oxford SMT0-1094', 'ao-so-mi-oxford-smt0-1094', 560000, 400000, 0, '3133__nik7080.jpg', '3073__nik6465%20(1).jpg,3073__nik6465.jpg,3133__nik7073.jpg,3133__nik7076.jpg,3133__nik7077.jpg', 25, 0, 1, 2, '<p><span><strong>SƠ MI NAM</strong></span></p>\r\n<p><span><span><a href=\"https://h2tstore.vn/so-mi-dai-tay-2.html\"><em>Sơ mi</em> </a></span>là mẫu áo tồn tại theo thời gian không thể thiếu cùng các chàng trai. Từ những chiếc<span> <a href=\"https://h2tstore.vn/so-mi-dai-tay-2.html\">áo sơ mi</a></span> truyền thống đến hiện đại với những thiết kế tinh tế cầu kỳ hơn.Sơ mi kaki là mẫu áo mới được phát triển và ưa chuộng mấy năm gần đây. Tuy là những sản phẩm mới nhưng lại được giới trẻ khá ưa chuộng</span></p>\r\n<p><span><strong>Chất liệu:</strong> 100% cotton. (kaki)</span></p>\r\n<p><span><strong>Thiết kế áo: <span data-sheets-value=\"{\" data-sheets-userformat=\"{\"> <span data-sheets-value=\"{\" data-sheets-userformat=\"{\"> <br></span></span></strong><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><span data-sheets-value=\"{\" data-sheets-userformat=\"{\">+ Thoáng mát thoải mái ( cotton)</span></span><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br>+ Thấm hút mồ hôi tốt ( cotton)<br>+ Mềm mại, thân thiện với da ( cotton)</span></span></span></p>\r\n<p><span><strong>Màu sắc:</strong> <span data-sheets-value=\"{\" data-sheets-userformat=\"{\">Sọc vàng (Vc), sọc xanh(Xc)</span><strong><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><span data-sheets-value=\"{\" data-sheets-userformat=\"{\"><br></span></span></strong></span></p>\r\n<p><span><strong>Size hiện có:</strong> S, M, L, XL</span></p>\r\n<p><span><strong>Mix and Match: </strong></span></p>\r\n<ul>\r\n<li><span>Từ cổ chí kim gắn liền với sơ mi luôn là <em><span><a href=\"https://h2tstore.vn/quan-au-nam.html\">quần tây</a></span></em> sang trọng, lịch sự.</span></li>\r\n<li><span>Ngoài ra, với kiểu dáng hiện đại thì sơ mi kết hợp cùng <span><em><a href=\"https://h2tstore.vn/quan-kaki.html\">quần Kaki</a></em></span> hay <span><a href=\"https://h2tstore.vn/quan-bo-nam.html\"><em>Jean</em></a></span> đều rất nổi bật.</span></li>\r\n</ul>', NULL, 48, 2, 8, 6, 4, '2020-09-12 05:13:13', '2020-09-28 09:34:09'),
(18, 'Áo thun nam ATC0-1207', 'ao-thun-nam-atc0-1207', 320000, 249996, 0, '3320__nik0514.jpg', '3320__nik0512.jpg,3320__nik0514%20(1).jpg,3320__nik0514.jpg,3320__nik0517.jpg,3320__nik0531.jpg', 35, 0, 1, 32, '<ul class=\"tab-control\" role=\"tablist\">\r\n<li class=\"active\" id=\"tab1\"><a href=\"https://h2tstore.vn/ao-thun-nam-atc0-1207.html#description\">MÔ TẢ CHI TIẾT</a></li>\r\n</ul>\r\n<div class=\"tab-content\">\r\n<div class=\"tab-pane active\" id=\"description\">\r\n<div class=\"content\">\r\n<p><img src=\"https://h2tstore.vn/media/product/3320__nik0517.jpg\" alt=\"\"></p>\r\n</div>\r\n</div>\r\n</div>', NULL, 40, 5, 18, 7, 3, '2020-09-12 21:50:24', '2020-09-23 08:53:36'),
(19, 'Giày thể thao G-0812', 'giay-the-thao-g-0812', 795000, 600000, 0, '2770_23_1.jpg', '2770_23_9.jpg,2770_23_8.jpg,2770_23_7.jpg,2770_23_6.jpg', 2, 0, 1, 0, '<p><strong>GIÀY NAM TRẺ TRUNG</strong></p>\r\n<p>Giày nam từng một thời \"làm mưa, làm gió\" và cho đến nay nó vẫn được ưa chuộng. Khi nhu cầu sử dụng cùng thị hiếu người tiêu dùng ngày càng cao thì bắt buộc những mẫu thiết kế giày càng phải thay đổi kiểu dáng liên tục để phù hợp với thị trường. Mẫu <strong>giày thể thao G-0812</strong> sẽ mang đến cho bạn phong cách giày thể thao mới nhất.<strong> </strong></p>\r\n<p><strong>Chất liệu: </strong>Sợi vải đan.</p>\r\n<p><strong>Thiết kế giày: </strong></p>\r\n<ul>\r\n<li>Giày được thiết kế dáng thể thao khỏe khoắn.</li>\r\n<li>Điểm khác biệt là giày được thiết kế đế cao 2-3p, thân giày chun nỉ co giãn thoải mái.</li>\r\n</ul>\r\n<p><strong>Màu sắc: </strong>Đen, Trắng</p>\r\n<p><strong>Size hiện có: </strong>38, 39, 40, 41, 42, 43</p>\r\n<p><strong>Mix and Match: </strong></p>\r\n<ul>\r\n<li>Kiểu dáng được thiết kế Basic nên dễ dàng kết hợp với bất kỳ 1 set đồ nào từ đơn giản đến cá tính, trẻ trung.</li>\r\n</ul>', NULL, 50, 0, 0, 19, 1, '2020-09-29 11:04:08', '2020-09-29 11:06:22'),
(20, 'Chelsea boots nam G-1001', 'chelsea-boots-nam-g-1001', 890000, 700000, 0, '2987__nik8523.jpg', '2987__nik8526.jpg,2987__nik8525.jpg,2987__nik8525%20(1).jpg,2987__nik8524%20(1).jpg,2987__nik8523.jpg', 2, 0, 1, 0, '<p><strong>GIÀY NAM CỰC CHẤT</strong></p>\r\n<p>Boots nam là một trong những mẫu giày cực hot thời gian gần đây. Thiết kế từ chất liệu da, những mẫu giày nam ngày càng được biến tấu đẹp hơn, hợp thời trang hơn. Mẫu <span><a href=\"https://h2tstore.vn/giay-da-nam.html\">Giày nam</a></span><strong> Chealsea Boots nam G-1001</strong> sẽ đốn ngã những tín đồ giày Boots từ ánh nhìn đầu tiên.</p>\r\n<p><strong>Chất liệu:</strong> Da trơn.</p>\r\n<p><strong>Thiết kế giày: </strong></p>\r\n<ul>\r\n<li>Thiết kế cổ giày cao quá mắt cá chân dễ đi không bị vướng gót.</li>\r\n<li>Đế gỗ chắc chắn.</li>\r\n</ul>\r\n<p><strong>Màu sắc:</strong> Đen</p>\r\n<p><strong>Size hiện có:</strong> 38, 39, 40, 41, 42, 43</p>\r\n<p><strong>Mix and Match:</strong> </p>\r\n<ul>\r\n<li>Còn gì hợp gout hơn khi <strong>Đôi Chelsea boots nam G-1001</strong> kế hợp cùng <span><a href=\"https://h2tstore.vn/quan-bo-nam.html\">quần jean</a></span>, vài chiếc <a href=\"https://h2tstore.vn/ao-thun.html\">á<span>o nỉ</span></a> dài tay trông bạn rất bảnh đó nhé.</li>\r\n</ul>', NULL, 30, 0, 0, 19, 5, '2020-09-29 11:08:59', NULL),
(22, 'Quần jean nam QJD0-1199', 'quan-jean-nam-qjd0-1199', 580000, 400000, 0, '3311__nik8617.jpg', '3311__nik8618.jpg,3311__nik8617.jpg,3311__nik8617%20(1).jpg,3311__nik8616.jpg,3311__nik8611.jpg', 2, 0, 1, 0, 'hàng đẹp chất lượng cao', NULL, 20, 0, 0, 16, 6, '2020-09-29 11:17:29', NULL),
(23, 'Quần hộp kaki co giãn Q-0319', 'quan-hop-kaki-co-gian-q-0319', 199000, 100000, 0, '2201_0319%20(1).jpg', '2201_9190351084_2145446%20(1).jpg,2201_13_4.jpg,2201_13_3.jpg,2201_0319.jpg,2201_0319%20(1).jpg', 3, 0, 1, 2, '<p><strong><span>QUẦN TÚI HỘP CÁ TÍNH</span></strong></p>\r\n<p><span>Gần đây, những chiếc quần túi hộp đã quay lại phổ biến hơn bao giờ hết. Thật dễ dàng để bạn biến phong cách thời trang của mình trở nên chất hơn với <strong>Quần hộp Kaki Q- 0530 </strong>mà <a href=\"https://h2tshop.com/\">H2T </a>mang đến cho bạn</span></p>\r\n<p><span><strong>Chất liệu</strong>: Kaki dày dặn, bền màu</span></p>\r\n<h1><span>Thiết kế:</span></h1>\r\n<ul>\r\n<li><span><strong>Quần hộp Kaki Q- 0530<span> </span></strong>có 2 sắc màu đen và ghi rất dễ trong việc phối đồ, đặc biệt màu đen đang được nhiều bạn trẻ yêu thích bởi sự bí ẩn, cá tính mạnh mẽ.</span></li>\r\n<li><span><strong>Quần hộp Kaki Quần- 0530</strong> có ống rộng vừa phải tạo cảm giác thoải mái không quá bó sát khó chịu, cùng với những chiếc túi hộp to rất phù hợp cho những chàng trai thích sự thoải mái mang phong cách phong trần cá tính.</span></li>\r\n</ul>\r\n<p><span><strong>Màu sắc</strong>: Ghi </span></p>\r\n<p><span><strong>Size hiện có sẵn</strong>: S, M, L, XL, XXL</span></p>\r\n<h1><span>Mix and Match:</span></h1>\r\n<ul>\r\n<li><span>Với chiếc quần <strong>Quần hộp Kaki Q- 0530</strong> không khó để bạn phối cùng những chiếc <a href=\"https://h2tshop.com/so-mi-dai-tay.html\">Áo sơ mi</a> oversized.</span></li>\r\n<li><span><a href=\"https://h2tshop.com/quan-kaki/c6.html\">Quần hộp Kaki</a> + Áo phông + <a href=\"https://h2tshop.com/tui-xach/c29.html\">Túi khoác chéo </a>sẽ giúp bạn nhìn trông cá tính.</span></li>\r\n</ul>', NULL, 18, 0, 0, 15, 7, '2020-09-29 11:20:47', NULL),
(24, 'Áo phông Justmen AP-0754', 'ao-phong-justmen-ap-0754', 150000, 80000, 0, '2731_0754%20(2).jpg', '2731_1_8.jpg,2731_1_7.jpg,2731_1_6.jpg,2731_0754%20(2).jpg,2731_0754%20(1).jpg', 3, 0, 1, 1, '<div id=\"product-detail-bottom-left\">\r\n<div class=\"article describe detail-tab info_tab clearfix\">\r\n<div class=\"tab-content\">\r\n<div class=\"tab-pane active\" id=\"description\">\r\n<div class=\"content\">\r\n<p><img src=\"https://h2tstore.vn/media/product/2731_1_7.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_8.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_4.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_3.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_1.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_2.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_6.jpg\" alt=\"\"><img src=\"https://h2tstore.vn/media/product/2731_1_5.jpg\" alt=\"\"></p>\r\n</div>\r\n</div>\r\n</div>\r\n<ul class=\"tab-control\" role=\"tablist\" id=\"binhluan\">\r\n<li class=\"active\"><a href=\"https://h2tstore.vn/ao-phong-polo-justmen-ap-0754.html#comment\">BÌNH LUẬN<span> </span><span class=\"ducdt_review_count\">(0)</span></a></li>\r\n</ul>\r\n<div class=\"tab-pane pt-0\" id=\"comment\">\r\n<div class=\"comment-form\"><form action=\"https://h2tstore.vn/ajax/post_comment.php\" method=\"post\" enctype=\"multipart/form-data\" onsubmit=\"return check_field(0)\" class=\"form-post m-0\">\r\n<div class=\"relative\"><textarea name=\"user_post[content]\" placeholder=\"Mời bạn viết đánh giá về sản phẩm này, vui lòng viết tiếng Việt có dấu\" id=\"content0\"></textarea>\r\n<div class=\"group-form\"></div>\r\n</div>\r\n</form></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"product-detail-bottom-right\">\r\n<div class=\"article news detail-tab clearfix\">\r\n<ul class=\"tab-control\" role=\"tablist\">\r\n<ul class=\"tab-control\" role=\"tablist\">\r\n<li role=\"presentation\" class=\"active\"><a href=\"https://h2tstore.vn/ao-phong-polo-justmen-ap-0754.html#news\" aria-controls=\"home\" role=\"tab\" data-toggle=\"tab\">TIN TỨC NỔI BẬT</a></li>\r\n</ul>\r\n</ul>\r\n<span> </span>\r\n<ul class=\"tab-control\" role=\"tablist\">\r\n<li class=\"view-all\"><a href=\"https://h2tstore.vn/tin-tuc\">Xem hết</a></li>\r\n</ul>\r\n<div class=\"tab-content\">\r\n<div role=\"tabpanel\" class=\"tab-pane active\">\r\n<div class=\"item\">\r\n<div class=\"image\"><img src=\"https://h2tstore.vn/media/news/120_116__26a3967.jpg\" alt=\"CUỐI TUẦN MẶC GÌ ĐI CHƠI\"></div>\r\n<a href=\"https://h2tstore.vn/cuoi-tuan-mac-gi-di-choi.html\" class=\"clearfix\"></a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>', NULL, 19, 2, 3, 7, 2, '2020-09-29 11:23:21', '2020-09-29 11:31:30'),
(25, 'Áo Sơ Mi SMR18-0040', 'ao-so-mi-smr18-0040', 99000, 50000, 0, '1759_0040%20(1).jpg', '1759__dsc6931.jpg,1759__dsc6923.jpg,1759__dsc6919.jpg,1759_0040.jpg,1759_0040%20(1).jpg', 3, 0, 1, 2, '<h1><strong>Mô tả sản phẩm</strong></h1>\r\n<div class=\"box-detail\">\r\n<p><strong>Sơ mi denim ắt hẳn là một cái tên không mấy xa lạ đối với những gã trai ngông nghênh, trên người đầy bụi bặm cá tính. Chỉ với chiếc<a href=\"https://h2tshop.com/so-mi-dai-tay/c11.html\"><span> </span>sơ mi dài tay</a> đơn giản, nhưng hiệu quả của cách phối đồ này đem lại nhiều bất ngờ. Dù bạn lặp lại phong cách này liên tục thì chỉ với một chút biến tấu nhỏ là bạn sẽ luôn cá tính trong mắt người đối diện. Cùng<span> </span><a href=\"https://h2tshop.com/\">H2tshop<span> </span></a>điểm danh các mãu sơ mi nam dài tay nhé!</strong></p>\r\n</div>\r\n<p><strong>👑 Chất liệu:</strong> demi</p>\r\n<p><strong>👑 Màu sắc:</strong> Nâu, Xanh đen, Đen</p>\r\n<p><strong>👑 Size hiện có sẵn: M, L, XL, XXL</strong></p>\r\n<p><strong>👑 Thiết kế áo:</strong> <strong>Kiểu Classic cổ điển -</strong> cổ Đức (hay Narro Point). Khi đóng cúc áo trên cùng, hai bên cổ tạo với nhau một góc tầm 80-90 độ. Phần cổ thường được bôi một lớp hồ cứng nhằm cố định, khiến cổ áo cứng cáp hơn, không bị rũ. Cúc cài, vạt áo vát nhẹ và có cúc ở cổ tay áo. </p>\r\n<p>🚹<span> </span><strong>Áo Sơ Mi Nam SMR18-0040</strong><span> </span>+ Quần shorts chinos,<span> </span><a href=\"https://h2tshop.com/quan-ngo/c13.html\"><strong>quần shorts jeans</strong></a>, quần shorts nỉ đều dễ dàng kết thân với sơ mi denim.</p>\r\n<p>🚹<span> </span><strong>Áo Sơ Mi Nam SMR18-0040</strong><span> </span>Với khí hậu nóng bức của Việt Nam, mở khuy cổ áo đôi khi lại nam tính hơn nhiều. Về quần, bạn có thể chọn quần tây,<span> </span><a href=\"https://h2tshop.com/quan-kaki/c6.html\"><strong>quần kaki</strong><span> </span></a>hoặc<span> </span><a href=\"https://h2tshop.com/quan-bo-nam/c5.html\"><strong>quần jeans</strong></a><span> </span>tùy thích.</p>\r\n<p>🚹<span> </span><strong>Áo Sơ Mi Nam SMR18-0040<span> </span></strong>làm khoác ngoài<span> </span><a href=\"https://h2tshop.com/ao-phong-ao-thun-nam/c8.html\"><strong>áo phông</strong></a>, mặc cùng quần jeans khác tông màu hoặc quần kaki đơn giản. Thông thường nam giới hay kết hợp với áo phông trắng mặc bên trong. Tuy nhiên, với những chiếc sơ mi đậm màu, bạn có thể mặc cùng với áo phông đen hoặc tối màu, hiệu ứng đem lại sẽ làm bạn bất ngờ đấy.</p>', NULL, 18, 4, 13, 6, 5, '2020-09-29 11:25:49', '2020-09-29 11:31:09');
-- --------------------------------------------------------
--
-- Table structure for table `products_details`
--
CREATE TABLE `products_details` (
`id` bigint(20) UNSIGNED NOT NULL,
`prod_product_id` bigint(20) UNSIGNED NOT NULL,
`prod_color_id` bigint(20) UNSIGNED DEFAULT NULL,
`prod_size_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products_details`
--
INSERT INTO `products_details` (`id`, `prod_product_id`, `prod_color_id`, `prod_size_id`) VALUES
(2, 3, 2, 2),
(6, 7, 3, 4),
(7, 8, 5, 5),
(12, 14, 5, 3),
(13, 15, 7, 3),
(19, 4, 3, 2),
(20, 18, 5, 1),
(21, 16, 2, 1),
(22, 6, 4, 2),
(23, 1, 1, 1),
(24, 5, 2, 3),
(28, 19, 2, 1),
(29, 20, 5, 6),
(33, 22, 7, 8),
(34, 23, 3, 9),
(36, 24, 8, 3),
(37, 25, 7, 1);
-- --------------------------------------------------------
--
-- Table structure for table `products_keywords`
--
CREATE TABLE `products_keywords` (
`id` bigint(20) UNSIGNED NOT NULL,
`pk_product_id` bigint(20) UNSIGNED NOT NULL,
`pk_keyword_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products_keywords`
--
INSERT INTO `products_keywords` (`id`, `pk_product_id`, `pk_keyword_id`) VALUES
(22, 14, 4),
(23, 15, 3),
(27, 7, 3),
(28, 8, 3),
(29, 3, 2),
(39, 4, 3),
(40, 18, 2),
(41, 16, 2),
(42, 6, 3),
(43, 1, 2),
(44, 5, 2),
(48, 19, 2),
(49, 20, 2),
(53, 22, 4),
(54, 23, 7),
(56, 24, 3),
(57, 25, 2);
-- --------------------------------------------------------
--
-- Table structure for table `ratings`
--
CREATE TABLE `ratings` (
`id` bigint(20) UNSIGNED NOT NULL,
`r_user_id` int(11) NOT NULL DEFAULT 0,
`r_product_id` int(11) NOT NULL DEFAULT 0,
`r_status` tinyint(4) NOT NULL DEFAULT 0,
`r_number` tinyint(4) NOT NULL DEFAULT 0,
`r_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `ratings`
--
INSERT INTO `ratings` (`id`, `r_user_id`, `r_product_id`, `r_status`, `r_number`, `r_content`, `created_at`, `updated_at`) VALUES
(83, 1, 18, 0, 3, 'sản phẩm tạm được', '2020-09-18 20:12:51', '2020-09-18 20:12:51'),
(84, 1, 18, 0, 1, 'san pham tuyet voi. Lan sau toi se mua no', '2020-09-19 00:13:09', '2020-09-19 00:13:09'),
(85, 1, 18, 0, 4, 'sản phẩm bình thường', '2020-09-19 00:13:47', '2020-09-19 00:13:47'),
(86, 1, 18, 0, 5, 'sản phẩm trên cả tuyệt vời', '2020-09-19 00:14:16', '2020-09-19 00:14:16'),
(87, 1, 18, 0, 5, 'sản phẩm đẹp chắc chắn', '2020-09-19 00:14:35', '2020-09-19 00:14:35'),
(88, 1, 15, 0, 2, 'sản phẩm tương đối tệ', '2020-09-19 00:15:12', '2020-09-19 00:15:12'),
(89, 1, 15, 0, 2, 'giao <NAME>', '2020-09-19 00:15:28', '2020-09-19 00:15:28'),
(90, 1, 15, 0, 5, 'sản phẩm tuyệt vời', '2020-09-19 00:15:41', '2020-09-19 00:15:41'),
(91, 1, 15, 0, 5, 'giao hàng nhanh hàng đẹp chất lượng nhân viên nhiệt tình', '2020-09-19 00:16:02', '2020-09-19 00:16:02'),
(92, 9, 15, 0, 2, 'tạm được', '2020-09-19 01:43:16', '2020-09-19 01:43:16'),
(94, 9, 16, 0, 3, 'sản phẩm này khá ok', '2020-09-28 09:34:09', '2020-09-28 09:34:09'),
(95, 9, 25, 0, 5, 'sản phẩm quá tuyệt vời . t đã mua 2 cái', '2020-09-29 11:28:09', '2020-09-29 11:28:09'),
(96, 9, 24, 0, 1, 'sản phẩm khá tệ', '2020-09-29 11:28:33', '2020-09-29 11:28:33'),
(97, 9, 25, 0, 3, 'tạm được', '2020-09-29 11:28:48', '2020-09-29 11:28:48'),
(98, 9, 25, 0, 1, 'cực kì tệ', '2020-09-29 11:29:03', '2020-09-29 11:29:03'),
(99, 12, 25, 0, 4, 'sản phẩm đẹp chất lượng nhưng giao hàng hơi chậm', '2020-09-29 11:31:09', '2020-09-29 11:31:09'),
(100, 12, 24, 0, 2, 'sản phẩm tệ được mỗi giao hàng nhanh', '2020-09-29 11:31:30', '2020-09-29 11:31:30');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `name`, `permissions`, `created_at`, `updated_at`) VALUES
(1, 'Admin', '[\"admin.get.login\",\"admin.get.register\",\"admin.get.error\",\"admin.get.profile\",\"admin.index\",\"admin.get.logout\",\"admin.category.index\",\"admin.category.view\",\"admin.category.create\",\"admin.category.update\",\"admin.category.active\",\"admin.category.hot\",\"admin.category.delete\",\"admin.product.index\",\"admin.product.view\",\"admin.product.create\",\"admin.product.update\",\"admin.product.active\",\"admin.product.hot\",\"admin.product.delete\",\"admin.image.index\",\"admin.keyword.index\",\"admin.keyword.create\",\"admin.keyword.update\",\"admin.keyword.hot\",\"admin.keyword.delete\",\"admin.brand.index\",\"admin.brand.create\",\"admin.brand.update\",\"admin.brand.hot\",\"admin.brand.delete\",\"admin.user.index\",\"admin.user.status\",\"admin.user.create\",\"admin.user.update\",\"admin.user.delete\",\"admin.client.index\",\"admin.client.view\",\"admin.client.status\",\"admin.client.delete\",\"admin.rating.index\",\"admin.rating.delete\",\"admin.slide.index\",\"admin.slide.create\",\"admin.slide.update\",\"admin.slide.active\",\"admin.slide.delete\",\"admin.order.index\",\"admin.order.delete\",\"ajax.admin.order.order_detail.delete\",\"ajax.admin.order.detail\",\"admin.order.action\",\"admin.role.index\",\"admin.role.create\",\"admin.role.update\",\"admin.role.delete\",\"admin.menu.index\",\"admin.menu.create\",\"admin.menu.update\",\"admin.menu.active\",\"admin.menu.hot\",\"admin.menu.delete\",\"admin.article.index\",\"admin.article.create\",\"admin.article.update\",\"admin.article.active\",\"admin.article.hot\",\"admin.article.delete\"]', NULL, '2020-09-29 05:40:01'),
(11, 'CTV quản lý sản phẩm', '[\"admin.index\",\"admin.get.logout\",\"admin.product.index\",\"admin.product.view\",\"admin.product.create\",\"admin.product.update\",\"admin.product.active\",\"admin.product.hot\",\"admin.product.delete\",\"admin.keyword.index\",\"admin.keyword.create\",\"admin.keyword.update\",\"admin.keyword.hot\",\"admin.keyword.delete\",\"admin.brand.index\",\"admin.brand.create\",\"admin.brand.update\",\"admin.brand.hot\",\"admin.brand.delete\",\"admin.index\",\"admin.get.logout\"]', NULL, '2020-09-28 03:20:21'),
(12, 'CTV quản lý đơn hàng', '[\"admin.order.index\",\"admin.order.delete\",\"ajax.admin.order.order_detail.delete\",\"ajax.admin.order.detail\",\"admin.order.action\",\"admin.index\",\"admin.get.logout\"]', NULL, NULL),
(13, 'CTV quản lý system', '[\"admin.slide.index\",\"admin.slide.create\",\"admin.slide.update\",\"admin.slide.active\",\"admin.slide.delete\",\"admin.index\",\"admin.get.logout\"]', NULL, NULL),
(17, 'CTV quản lý danh mục', '[\"admin.category.index\",\"admin.category.view\",\"admin.category.create\",\"admin.category.update\",\"admin.category.active\",\"admin.category.hot\",\"admin.category.delete\",\"admin.product.index\",\"admin.product.view\",\"admin.product.create\",\"admin.product.update\",\"admin.product.active\",\"admin.product.hot\",\"admin.product.delete\",\"admin.index\",\"admin.get.logout\"]', NULL, NULL),
(18, 'khách', '[\"admin.index\",\"admin.get.logout\",\"admin.index\",\"admin.get.logout\"]', NULL, NULL),
(19, 'chỉ xem', '[\"admin.index\",\"admin.category.index\",\"admin.product.index\",\"admin.image.index\",\"admin.keyword.index\",\"admin.brand.index\",\"admin.user.index\",\"admin.rating.index\",\"admin.slide.index\",\"admin.order.index\",\"admin.role.index\"]', NULL, '2020-09-29 11:32:55'),
(20, 'CTV quản lý menu và bài viết', '[\"admin.menu.index\",\"admin.menu.create\",\"admin.menu.update\",\"admin.menu.active\",\"admin.menu.hot\",\"admin.menu.delete\",\"admin.article.index\",\"admin.article.create\",\"admin.article.update\",\"admin.article.active\",\"admin.article.hot\",\"admin.article.delete\",\"admin.index\",\"admin.get.logout\"]', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `shippings`
--
CREATE TABLE `shippings` (
`id` bigint(20) UNSIGNED NOT NULL,
`shipping_type` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping_status` tinyint(4) DEFAULT NULL,
`shipping_fee` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `shippings`
--
INSERT INTO `shippings` (`id`, `shipping_type`, `shipping_status`, `shipping_fee`, `created_at`, `updated_at`) VALUES
(1, 'giao hàng thường\r\n', 1, '30000', '2020-09-23 16:37:08', '2020-09-23 16:37:08'),
(2, 'giao hàng trong vòng 24h', 1, '50000', '2020-09-23 16:39:43', '2020-09-23 16:39:43');
-- --------------------------------------------------------
--
-- Table structure for table `sizes`
--
CREATE TABLE `sizes` (
`id` bigint(20) UNSIGNED NOT NULL,
`sz_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`sz_status` tinyint(4) DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sizes`
--
INSERT INTO `sizes` (`id`, `sz_name`, `sz_status`, `created_at`, `updated_at`) VALUES
(1, 'M', 1, '2020-09-10 08:22:09', NULL),
(2, 'L', 1, '2020-09-10 08:33:41', NULL),
(3, 'S', 1, '2020-09-10 08:37:04', NULL),
(4, '29', 1, '2020-09-10 08:39:36', NULL),
(5, '30', 1, '2020-09-10 08:40:42', NULL),
(6, '40', 1, '2020-09-29 11:08:59', NULL),
(7, 'XXl', 1, '2020-09-29 11:12:59', NULL),
(8, '34', 1, '2020-09-29 11:17:29', NULL),
(9, '32', 1, '2020-09-29 11:20:47', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `slides`
--
CREATE TABLE `slides` (
`id` bigint(20) UNSIGNED NOT NULL,
`sd_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sd_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sd_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sd_target` tinyint(4) NOT NULL DEFAULT 1,
`sd_action` tinyint(4) NOT NULL DEFAULT 1,
`sd_sort` tinyint(4) NOT NULL DEFAULT 1,
`sd_status` tinyint(4) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `slides`
--
INSERT INTO `slides` (`id`, `sd_title`, `sd_link`, `sd_image`, `sd_target`, `sd_action`, `sd_sort`, `sd_status`, `created_at`, `updated_at`) VALUES
(4, 'welcome to asusu shop', 'http://localhost/project/product', '14.jpg', 1, 1, 1, 1, '2020-09-22 02:53:22', '2020-09-22 03:21:25'),
(5, 'let get a look', 'http://localhost/project/product', '13.jpg', 1, 1, 2, 1, '2020-09-22 03:15:12', '2020-09-22 03:21:31'),
(7, 'shop now', 'http://localhost/project/product', '12.jpg', 1, 1, 3, 1, '2020-09-22 03:17:04', '2020-09-22 03:21:37');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0,
`address` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`avatar` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `status`, `address`, `avatar`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(12, '<NAME>', '<EMAIL>', NULL, 1, NULL, NULL, '$2y$10$fITL6ngNJYe.ftOgIWu2H.tgFXlVlh1x8O7V40axay.cEVLBjILyC', '0SvCQEU9Lppj5fhIVKOUwJmBqnRYR44DKVNLuYh8W333AgRf1XatbtdUS5LU', '2020-09-28 04:54:02', '2020-09-28 04:54:02'),
(16, 'nam', '<EMAIL>', NULL, 1, NULL, NULL, '$2y$10$yxVtjaBE2NQ5xuxVWpG2Vux6AZaTlEH6nE.qffkyhzu/ASk.KHVcK', NULL, '2020-09-28 16:40:48', '2020-09-28 16:40:48'),
(17, 'Admin manager', '<EMAIL>', NULL, 1, NULL, NULL, '$2y$10$7Ku4OcoxEiJBLdaTsIIQS.ODXSIhPuAgx8iSkzOEgQKw4fjH4HI..', NULL, '2020-09-28 03:22:20', NULL),
(18, 'cuong', '<EMAIL>', NULL, 1, NULL, NULL, '$2y$10$AUxEf3JAbKb0K0HACOEwyOGz1hoUNVanyx4o4wIBH15m2MyY0PYua', NULL, '2020-09-28 04:39:09', '2020-09-28 04:39:09'),
(26, 'test', '<EMAIL>', NULL, 0, NULL, NULL, '$2y$10$KAw.5.5A5KRkwT95EekxTuvuUEfi0h1jvjpMkopyd3jkwSloi6wa6', NULL, '2020-09-28 16:39:27', '2020-09-28 17:50:07');
-- --------------------------------------------------------
--
-- Table structure for table `user_roles`
--
CREATE TABLE `user_roles` (
`user_id` bigint(20) UNSIGNED NOT NULL,
`role_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `user_roles`
--
INSERT INTO `user_roles` (`user_id`, `role_id`) VALUES
(12, 1),
(16, 11),
(16, 12),
(17, 1),
(18, 18),
(26, 18);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `articles`
--
ALTER TABLE `articles`
ADD PRIMARY KEY (`id`),
ADD KEY `articles_a_slug_index` (`a_slug`),
ADD KEY `articles_a_hot_index` (`a_hot`),
ADD KEY `articles_a_status_index` (`a_status`),
ADD KEY `articles_a_blog_id_index` (`a_menu_id`);
--
-- Indexes for table `brands`
--
ALTER TABLE `brands`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `brands_br_slug_unique` (`br_slug`);
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `categories_c_slug_unique` (`c_slug`);
--
-- Indexes for table `clients`
--
ALTER TABLE `clients`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `clients_email_unique` (`email`),
ADD UNIQUE KEY `clients_phone_unique` (`phone`);
--
-- Indexes for table `colors`
--
ALTER TABLE `colors`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `colors_cl_name_unique` (`cl_name`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `favourites`
--
ALTER TABLE `favourites`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `favourites_fa_user_id_fa_product_id_unique` (`fa_user_id`,`fa_product_id`);
--
-- Indexes for table `keywords`
--
ALTER TABLE `keywords`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `keywords_k_slug_unique` (`k_slug`);
--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `menus_mn_slug_unique` (`mn_slug`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders_details`
--
ALTER TABLE `orders_details`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `payments`
--
ALTER TABLE `payments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`),
ADD KEY `products_pro_category_id_foreign` (`pro_category_id`),
ADD KEY `products_pro_brand_id_foreign` (`pro_brand_id`);
--
-- Indexes for table `products_details`
--
ALTER TABLE `products_details`
ADD PRIMARY KEY (`id`),
ADD KEY `products_details_prod_product_id_foreign` (`prod_product_id`),
ADD KEY `products_details_prod_color_id_foreign` (`prod_color_id`),
ADD KEY `products_details_prod_size_id_foreign` (`prod_size_id`);
--
-- Indexes for table `products_keywords`
--
ALTER TABLE `products_keywords`
ADD PRIMARY KEY (`id`),
ADD KEY `products_keywords_pk_product_id_foreign` (`pk_product_id`),
ADD KEY `products_keywords_pk_keyword_id_foreign` (`pk_keyword_id`);
--
-- Indexes for table `ratings`
--
ALTER TABLE `ratings`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `shippings`
--
ALTER TABLE `shippings`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sizes`
--
ALTER TABLE `sizes`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `sizes_sz_name_unique` (`sz_name`);
--
-- Indexes for table `slides`
--
ALTER TABLE `slides`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `user_roles`
--
ALTER TABLE `user_roles`
ADD PRIMARY KEY (`user_id`,`role_id`),
ADD KEY `user_roles_role_id_foreign` (`role_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `articles`
--
ALTER TABLE `articles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `brands`
--
ALTER TABLE `brands`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
--
-- AUTO_INCREMENT for table `clients`
--
ALTER TABLE `clients`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `colors`
--
ALTER TABLE `colors`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `favourites`
--
ALTER TABLE `favourites`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=129;
--
-- AUTO_INCREMENT for table `keywords`
--
ALTER TABLE `keywords`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62;
--
-- AUTO_INCREMENT for table `orders_details`
--
ALTER TABLE `orders_details`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=86;
--
-- AUTO_INCREMENT for table `payments`
--
ALTER TABLE `payments`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `products_details`
--
ALTER TABLE `products_details`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `products_keywords`
--
ALTER TABLE `products_keywords`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58;
--
-- AUTO_INCREMENT for table `ratings`
--
ALTER TABLE `ratings`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `shippings`
--
ALTER TABLE `shippings`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `sizes`
--
ALTER TABLE `sizes`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `slides`
--
ALTER TABLE `slides`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `products`
--
ALTER TABLE `products`
ADD CONSTRAINT `products_pro_brand_id_foreign` FOREIGN KEY (`pro_brand_id`) REFERENCES `brands` (`id`),
ADD CONSTRAINT `products_pro_category_id_foreign` FOREIGN KEY (`pro_category_id`) REFERENCES `categories` (`id`);
--
-- Constraints for table `products_details`
--
ALTER TABLE `products_details`
ADD CONSTRAINT `products_details_prod_color_id_foreign` FOREIGN KEY (`prod_color_id`) REFERENCES `colors` (`id`),
ADD CONSTRAINT `products_details_prod_product_id_foreign` FOREIGN KEY (`prod_product_id`) REFERENCES `products` (`id`),
ADD CONSTRAINT `products_details_prod_size_id_foreign` FOREIGN KEY (`prod_size_id`) REFERENCES `sizes` (`id`);
--
-- Constraints for table `products_keywords`
--
ALTER TABLE `products_keywords`
ADD CONSTRAINT `products_keywords_pk_keyword_id_foreign` FOREIGN KEY (`pk_keyword_id`) REFERENCES `keywords` (`id`),
ADD CONSTRAINT `products_keywords_pk_product_id_foreign` FOREIGN KEY (`pk_product_id`) REFERENCES `products` (`id`);
--
-- Constraints for table `user_roles`
--
ALTER TABLE `user_roles`
ADD CONSTRAINT `user_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`),
ADD CONSTRAINT `user_roles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);
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>gunasaputra/cimb<filename>cimb.sql
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 03 Feb 2019 pada 12.17
-- Versi server: 10.1.37-MariaDB
-- Versi PHP: 7.3.0
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: `cimb`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `payroll`
--
CREATE TABLE `payroll` (
`id` int(11) NOT NULL,
`nama_payroll` varchar(50) NOT NULL,
`alamat` varchar(50) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `payroll`
--
INSERT INTO `payroll` (`id`, `nama_payroll`, `alamat`, `status`) VALUES
(1, 'Club Med', 'Kawasan BTDC / ITDC Badung, Bali\r\n', 1),
(2, 'Bali Nusa Dua Convention Center', 'Kawasan BTDC / ITDC Badung, Bali', 1),
(3, 'Awarta Hotel', 'Kawasan BTDC / ITDC Badung, Bali', 1),
(4, 'Amarterra Villa', 'Kawasan BTDC / ITDC Badung, Bali', 1),
(5, 'The Mulia', 'Kawasan Sawangan Nusa Dua, Benoa ,Badung, Bali', 0),
(6, 'Mantra Sakala Hotel', 'jl.pratama, tanjung benoa', 1),
(7, 'potato head beach club', 'petitenget', 1);
-- --------------------------------------------------------
--
-- Struktur dari tabel `pengumuman`
--
CREATE TABLE `pengumuman` (
`id` int(10) NOT NULL,
`judul` varchar(50) NOT NULL,
`isi_pengumuman` varchar(100) NOT NULL,
`status` int(10) NOT NULL,
`user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `pengumuman`
--
INSERT INTO `pengumuman` (`id`, `judul`, `isi_pengumuman`, `status`, `user_id`) VALUES
(1, 'Monthly Meeting', 'Kepada seluruh staf PL agar berkumpul Hari senin tanggal 21 januari 2019 di kantor jam 10 wita', 1, 5);
-- --------------------------------------------------------
--
-- Struktur dari tabel `permohonan`
--
CREATE TABLE `permohonan` (
`id` int(11) NOT NULL,
`nama_nasabah` varchar(50) NOT NULL,
`alamat_nasabah` varchar(50) NOT NULL,
`dob` date NOT NULL,
`hp` int(15) NOT NULL,
`agama` varchar(10) NOT NULL,
`pendidikan` varchar(5) NOT NULL,
`jabatan` varchar(15) NOT NULL,
`departemen` varchar(15) NOT NULL,
`lama_bekerja` varchar(10) NOT NULL,
`pengajuan` int(11) NOT NULL,
`tenor` varchar(10) NOT NULL,
`no_rekening` int(12) NOT NULL,
`payroll_id` int(11) DEFAULT NULL,
`status_permohonan` int(11) NOT NULL DEFAULT '1',
`user_id` int(11) DEFAULT NULL,
`tanggal_permohonan` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `permohonan`
--
INSERT INTO `permohonan` (`id`, `nama_nasabah`, `alamat_nasabah`, `dob`, `hp`, `agama`, `pendidikan`, `jabatan`, `departemen`, `lama_bekerja`, `pengajuan`, `tenor`, `no_rekening`, `payroll_id`, `status_permohonan`, `user_id`, `tanggal_permohonan`) VALUES
(1, '<NAME>', 'kuta', '1996-11-21', 811866868, 'kristen', 's1', 'host', 'first impressio', '2tahun', 25000000, '12', 2147483647, 1, 1, 5, '2019-02-03 18:33:54'),
(2, 'oka nuantara', '', '0000-00-00', 0, '', '', '', '', '', 2000000, '', 0, 1, 1, NULL, '2019-02-03 18:33:54'),
(3, 'oka nuantara', '', '0000-00-00', 0, '', '', '', '', '', 25000000, '', 0, 2, 1, 5, '2019-02-03 18:33:54'),
(4, 'Yoga', 'jl.wijaya kusuma', '1995-03-15', 2147483647, 'hindu', 'smk', 'accounting', 'finance', '2 tahun', 20000000, '24', 2147483647, 1, 1, 5, '2019-02-03 18:33:54'),
(5, '<NAME>', 'Jl. Pratama no.90', '1996-08-27', 2147483647, 'hindu', 'SMU', 'housekeeper', 'public area', '3 tahun', 10000000, '12', 2147483647, 3, 2, 5, '2019-02-03 18:33:54'),
(6, 'dewa', 'saDSSAD', '2019-02-20', 0, 'ASDA', 'ASDAS', 'ASDASD', 'ASDASD', 'ASDASD', 0, 'SADAS', 0, 1, 1, 7, '2019-02-03 19:11:05');
-- --------------------------------------------------------
--
-- Struktur dari tabel `user`
--
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`nama_user` varchar(50) NOT NULL,
`alamat_user` text NOT NULL,
`email` varchar(250) NOT NULL,
`password` varchar(32) NOT NULL,
`telepon` varchar(20) NOT NULL,
`jenis_kelamin` varchar(20) NOT NULL,
`role` varchar(20) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data untuk tabel `user`
--
INSERT INTO `user` (`id`, `nama_user`, `alamat_user`, `email`, `password`, `telepon`, `jenis_kelamin`, `role`, `status`) VALUES
(5, 'Guna', 'Tabanan', '<EMAIL>', '<PASSWORD>e2271', '081237129612', 'Laki-laki', 'FA', 1),
(6, 'yoga', '<PASSWORD>', '<EMAIL>', '<PASSWORD>', '0808979', 'Laki-laki', 'Admin', 1),
(7, 'oka', 'asdasd', '<EMAIL>', '<PASSWORD>', 'asdsada', 'Laki-laki', 'FA', 1);
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `payroll`
--
ALTER TABLE `payroll`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `pengumuman`
--
ALTER TABLE `pengumuman`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `permohonan`
--
ALTER TABLE `permohonan`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `payroll`
--
ALTER TABLE `payroll`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT untuk tabel `pengumuman`
--
ALTER TABLE `pengumuman`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT untuk tabel `permohonan`
--
ALTER TABLE `permohonan`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT untuk tabel `user`
--
ALTER TABLE `user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
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>andyzhenghn/LinuxStuding<filename>SQL/lxf/08transaction/repeatable_read.sql
-- 在 Repeatable Read隔离级别下,一个事务可能会遇到幻读(Phantom Read)的问题
-- 幻读是指,在一个事务中,第一次查询某条记录,发现没有,但是,当试图更新这条不存在的记录时,竟然能成功,并且再次读取同一记录,就出现了
-- 分别开启两个MySQL客户端连接,按顺序依次执行事务A和事务B
-- 事务 A
-- step1
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;
-- step2
BEGIN;
-- step3
-- step4
INSERT INTO students (id, name) VALUES (99, 'Bob');
-- step5
COMMIT;
-- step6
-- step7
-- step8
-- step9
-- 事务 B
-- step1
SET TRANSACTION ISOLATION LEVEL PEPEATABLE READ;
-- step2
BEGIN;
-- step3
SELECT * FROM students WHERE id=99;
-- step4
-- step5
-- step6
SELECT * FROM students WHERE id=99;
-- step7
UPDATE students SET name='Alice' WHERE id=99;
-- step8
SELECT * FROM students WHERE id=99;
-- step9
COMMIT;
-- 事务B在第3步第一次读取id=99的记录时,读到的记录为空,说明不存在id=99的记录
-- 随后,事务A在第4步插入了一条id=99的记录并提交。事务B在第6步再次读取id=99的记录时,读到的记录仍然为空
-- 但是,事务B在第7步试图更新这条不存在的记录时,竟然成功了,并且,事务B在第8步再次读取id=99的记录时,记录出现了
-- 幻读就是没有读到的记录,以为不存在,但其实是可以更新成功的,并且,更新成功后,再次读取,就出现了 |
<filename>db/views/stats_v01.sql<gh_stars>1-10
SELECT recipes.id AS recipe_id,
ingredients.id AS ingredient_id,
foods.id AS food_id,
foods.calories * ingredients.quantity / recipes.serving_size AS calories,
foods.total_carbohydrate * ingredients.quantity / recipes.serving_size AS carbs,
foods.protein * ingredients.quantity / recipes.serving_size AS protein,
foods.total_fat * ingredients.quantity / recipes.serving_size AS fat
FROM foods
JOIN ingredients ON foods.id = ingredients.food_id
JOIN recipes ON ingredients.recipe_id = recipes.id
GROUP BY recipes.id, ingredients.id, foods.id
ORDER BY recipes.id ASC;
|
SELECT FirstName,LastName,HireDate,d.[Name] AS [DeptName] FROM Employees e
JOIN Departments d ON e.DepartmentID = d.DepartmentID
WHERE HireDate > '1999-1-1'
AND d.[Name] IN('Sales','Finance')
ORDER BY HireDate |
<filename>tests/test_data/sql/17.01/17.01-feature_b-ddl.sql
SET ROLE north;
CREATE INDEX CONCURRENTLY
account_user ON account_user(id)
WHERE created_at IS NULL;
|
-- file:alter_table.sql ln:1891 expect:true
INSERT INTO old_system_table(othercol) VALUES ('somedata'), ('otherdata')
|
<filename>samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/Purchasing/Tables/SupplierTransactions.sql
CREATE TABLE [Purchasing].[SupplierTransactions] (
[SupplierTransactionID] INT CONSTRAINT [DF_Purchasing_SupplierTransactions_SupplierTransactionID] DEFAULT (NEXT VALUE FOR [Sequences].[TransactionID]) NOT NULL,
[SupplierID] INT NOT NULL,
[TransactionTypeID] INT NOT NULL,
[PurchaseOrderID] INT NULL,
[PaymentMethodID] INT NULL,
[SupplierInvoiceNumber] NVARCHAR (20) NULL,
[TransactionDate] DATE NOT NULL,
[AmountExcludingTax] DECIMAL (18, 2) NOT NULL,
[TaxAmount] DECIMAL (18, 2) NOT NULL,
[TransactionAmount] DECIMAL (18, 2) NOT NULL,
[OutstandingBalance] DECIMAL (18, 2) NOT NULL,
[FinalizationDate] DATE NULL,
[IsFinalized] AS (case when [FinalizationDate] IS NULL then CONVERT([bit],(0)) else CONVERT([bit],(1)) end) PERSISTED,
[LastEditedBy] INT NOT NULL,
[LastEditedWhen] DATETIME2 (7) CONSTRAINT [DF_Purchasing_SupplierTransactions_LastEditedWhen] DEFAULT (sysdatetime()) NOT NULL,
CONSTRAINT [PK_Purchasing_SupplierTransactions] PRIMARY KEY NONCLUSTERED ([SupplierTransactionID] ASC),
CONSTRAINT [FK_Purchasing_SupplierTransactions_Application_People] FOREIGN KEY ([LastEditedBy]) REFERENCES [Application].[People] ([PersonID]),
CONSTRAINT [FK_Purchasing_SupplierTransactions_PaymentMethodID_Application_PaymentMethods] FOREIGN KEY ([PaymentMethodID]) REFERENCES [Application].[PaymentMethods] ([PaymentMethodID]),
CONSTRAINT [FK_Purchasing_SupplierTransactions_PurchaseOrderID_Purchasing_PurchaseOrders] FOREIGN KEY ([PurchaseOrderID]) REFERENCES [Purchasing].[PurchaseOrders] ([PurchaseOrderID]),
CONSTRAINT [FK_Purchasing_SupplierTransactions_SupplierID_Purchasing_Suppliers] FOREIGN KEY ([SupplierID]) REFERENCES [Purchasing].[Suppliers] ([SupplierID]),
CONSTRAINT [FK_Purchasing_SupplierTransactions_TransactionTypeID_Application_TransactionTypes] FOREIGN KEY ([TransactionTypeID]) REFERENCES [Application].[TransactionTypes] ([TransactionTypeID])
);
GO
CREATE CLUSTERED INDEX [CX_Purchasing_SupplierTransactions]
ON [Purchasing].[SupplierTransactions]([TransactionDate] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
CREATE NONCLUSTERED INDEX [FK_Purchasing_SupplierTransactions_SupplierID]
ON [Purchasing].[SupplierTransactions]([SupplierID] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
CREATE NONCLUSTERED INDEX [FK_Purchasing_SupplierTransactions_TransactionTypeID]
ON [Purchasing].[SupplierTransactions]([TransactionTypeID] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
CREATE NONCLUSTERED INDEX [FK_Purchasing_SupplierTransactions_PurchaseOrderID]
ON [Purchasing].[SupplierTransactions]([PurchaseOrderID] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
CREATE NONCLUSTERED INDEX [FK_Purchasing_SupplierTransactions_PaymentMethodID]
ON [Purchasing].[SupplierTransactions]([PaymentMethodID] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
CREATE NONCLUSTERED INDEX [IX_Purchasing_SupplierTransactions_IsFinalized]
ON [Purchasing].[SupplierTransactions]([IsFinalized] ASC)
ON [PS_TransactionDate] ([TransactionDate]);
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Auto-created to support a foreign key', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'INDEX', @level2name = N'FK_Purchasing_SupplierTransactions_SupplierID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Auto-created to support a foreign key', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'INDEX', @level2name = N'FK_Purchasing_SupplierTransactions_TransactionTypeID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Auto-created to support a foreign key', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'INDEX', @level2name = N'FK_Purchasing_SupplierTransactions_PurchaseOrderID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Auto-created to support a foreign key', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'INDEX', @level2name = N'FK_Purchasing_SupplierTransactions_PaymentMethodID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Index used to quickly locate unfinalized transactions', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'INDEX', @level2name = N'IX_Purchasing_SupplierTransactions_IsFinalized';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = N'All financial transactions that are supplier-related', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Numeric ID used to refer to a supplier transaction within the database', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'SupplierTransactionID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Supplier for this transaction', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'SupplierID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Type of transaction', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'TransactionTypeID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'ID of an purchase order (for transactions associated with a purchase order)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'PurchaseOrderID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'ID of a payment method (for transactions involving payments)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'PaymentMethodID';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Invoice number for an invoice received from the supplier', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'SupplierInvoiceNumber';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Date for the transaction', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'TransactionDate';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Transaction amount (excluding tax)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'AmountExcludingTax';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Tax amount calculated', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'TaxAmount';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Transaction amount (including tax)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'TransactionAmount';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Amount still outstanding for this transaction', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'OutstandingBalance';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Date that this transaction was finalized (if it has been)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'FinalizationDate';
GO
EXECUTE sp_addextendedproperty @name = N'Description', @value = 'Is this transaction finalized (invoices, credits and payments have been matched)', @level0type = N'SCHEMA', @level0name = N'Purchasing', @level1type = N'TABLE', @level1name = N'SupplierTransactions', @level2type = N'COLUMN', @level2name = N'IsFinalized';
|
<reponame>smith750/kc
DELIMITER /
CREATE TABLE SEQ_PERSON_SIGN_MOD_ID (
id bigint(19) not null auto_increment, primary key (id)
) ENGINE MyISAM
/
ALTER TABLE SEQ_PERSON_SIGN_MOD_ID auto_increment = 1
/
DELIMITER ;
|
<filename>macros/fivetran/base/fivetran_fb_url_tag.sql
{% macro fivetran_fb_url_tag() %}
{{adapter_macro('facebook_ads.fivetran_fb_url_tag')}}
{% endmacro %}
{% macro default__fivetran_fb_url_tag() %}
{% set utm_key_value_pairs={
"affcode": "url_host",
"utm_source": "utm_source",
"utm_medium": "utm_medium",
"utm_campaign": "utm_campaign",
"utm_content": "utm_content",
"utm_term": "utm_term"
} %}
with base as (
select
nullif(type,'') as type,
nullif(key,'') as key,
creative_id,
nullif(value,'') as value
from
{{ var('url_tag_table') }}
),
final as (
select distinct
creative_id,
{% for key, value in utm_key_value_pairs.items()%}
first_value(
case
when key = '{{key}}' then value
else null
end
{{facebook_ads.ignore_nulls()}}
over (
partition by creative_id
order by key
) as {{value}}
{% if not loop.last %}
,
{% endif %}
{% endfor %}
from base
)
select * from final
{% endmacro %} |
--
-- File: V1.1.0001__create_table_inventory_item.sql
-- Purpose: Create the initial INVENTORY_ITEM table
-- Database compliance: H2
--
--
CREATE SEQUENCE HIBERNATE_SEQUENCE START WITH 1 INCREMENT BY 1;
CREATE TABLE inventory_item
(
id bigint NOT NULL DEFAULT nextval('HIBERNATE_SEQUENCE'),
description VARCHAR(255),
external_reference_id VARCHAR(255) NOT NULL,
name VARCHAR(64) NOT NULL,
price INTEGER NOT NULL,
quantity_in_stock INTEGER NOT NULL,
CONSTRAINT inventory_item_pkey PRIMARY KEY (id),
CONSTRAINT uk_ii_name UNIQUE (name),
CONSTRAINT uk_ii_ext_ref_id UNIQUE (external_reference_id)
);
|
--liquibase formatted sql
--changeset nvoxland:1 runAlways:true
use srx
go
if exists (select 1 from sysobjects where type = 'U' and name = 'test1')
begin
drop table test1
end
go
--changeset nvoxland:2 runAlways:false
select 4
go
--changeset nvoxland:3 runAlways:false
create table test1 (
id int primary key,
name varchar(255)
)
go
--changeset nvoxland:4 runAlways:false
select 'rnandakumar'
print "wow"
go
--changeset nvoxland:5
--use release_maint
--go
print "wow"
go
|
CREATE TABLE empregados (cpf VARCHAR(15), enome VARCHAR(60), salario FLOAT, cpf_supervisor VARCHAR(15), dnumero INT, PRIMARY KEY(cpf));
INSERT INTO empregados VALUES('49382234322', '<NAME>', 2350, '2434332222', 1010);
INSERT INTO empregados VALUES('586733922290', '<NAME>', 3500, '2434332222', 1010);
INSERT INTO empregados VALUES('2434332222' , '<NAME>', 2350, null, 1010);
INSERT INTO empregados VALUES('1733332162' , '<NAME>', 8350, null, 1020);
INSERT INTO empregados VALUES('4244435272' , '<NAME>', 3310, null, 1020);
INSERT INTO empregados VALUES('1014332672' , '<NAME>', 2900, null, 1010);
CREATE TABLE departamentos (dnumero INT, dnome VARCHAR(60), cpf_gerente VARCHAR(15), PRIMARY KEY (dnumero));
INSERT INTO departamentos VALUES(1010, 'Pesquisa', '49382234322');
INSERT INTO departamentos VALUES(1020, 'Ensino', '2434332222');
CREATE TABLE trabalha (cpf_emp VARCHAR(15), pnumero INT);
INSERT INTO trabalha VALUES ('49382234322', 2010);
INSERT INTO trabalha VALUES ('586733922290', 2020);
INSERT INTO trabalha VALUES ('49382234322', 2020);
CREATE TABLE projetos (pnumero INT, pnome VARCHAR(45), dnumero INT, PRIMARY KEY(pnumero));
INSERT INTO projetos VALUES (2010, 'Alpha', 1010);
INSERT INTO projetos VALUES (2020, 'Beta', 1020);
SELECT
empregados.cpf,
empregados.enome,
departamentos.dnome
FROM empregados JOIN departamentos ON empregados.dnumero = departamentos.dnumero
WHERE (SELECT COUNT(*) FROM trabalha WHERE trabalha.cpf_emp = empregados.cpf) = 0 ORDER BY empregados.cpf;
|
CREATE PROCEDURE [svc].[usp_TextActivity_Insert]
@TextId UNIQUEIDENTIFIER
,@TwilioSid NVARCHAR (50)
,@TwilioStatus NVARCHAR (10)
,@TwilioMessage NVARCHAR (500)
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
BEGIN TRANSACTION;
DECLARE @ACTIVITYID UNIQUEIDENTIFIER = NEWID()
DECLARE @STATUSATUTC DATETIMEOFFSET (7) = GETUTCDATE()
INSERT INTO [dbo].[tbl_TextActivity]
(
Id
,TextId
,TwilioSid
,TwilioStatus
,TwilioMessage
,StatusAtUtc
)
VALUES
(
@ACTIVITYID
,@TextId
,@TwilioSid
,@TwilioStatus
,@TwilioMessage
,@STATUSATUTC
);
IF @@ROWCOUNT != 1
THROW 51000, 'ERROR', 1;
SELECT * FROM [dbo].[tbl_TextActivity]
WHERE Id = @ACTIVITYID
COMMIT TRANSACTION;
END TRY
BEGIN CATCH
ROLLBACK TRANSACTION;
THROW;
END CATCH
END
|
<filename>store/queries/ledger_import_entries.sql
INSERT INTO ledger_entries (
ledger_id,
public_key,
delegate,
delegation,
balance,
timing_initial_minimum_balance,
timing_cliff_time,
timing_cliff_amount,
timing_vesting_period,
timing_vesting_increment
)
VALUES @values |
CREATE TABLE "FILLSCHEME"
("FILLSCHEME_ID" NUMBER(20,0),
"FILLSCHEMEPATTERN" VARCHAR2(128),
"CORRECTIONFACTOR" BINARY_FLOAT,
"PIXELCORRECTIONFACTOR" BINARY_FLOAT,
CONSTRAINT "FILLSCHEME_PK" PRIMARY KEY ("FILLSCHEME_ID")
);
GRANT SELECT ON "FILLSCHEME" TO PUBLIC;
GRANT SELECT,INSERT,DELETE,UPDATE ON FILLSCHEME TO CMS_LUMI_WRITER;
|
ALTER TABLE actions DROP COLUMN postprocess_script;
|
<gh_stars>100-1000
-- supported collation
SELECT COLLATIONPROPERTY('Traditional_Spanish_CS_AS', 'CodePage'), COLLATIONPROPERTY('Traditional_Spanish_CS_AS', 'ComparisonStyle'), COLLATIONPROPERTY('Traditional_Spanish_CS_AS', 'Version'), COLLATIONPROPERTY('Traditional_Spanish_CS_AS', 'LCID');
go
SELECT COLLATIONPROPERTY('Traditional_Spanish_CS_AS', 'INVALID');
go
SELECT COLLATIONPROPERTY('INVALID', 'LCID');
go
|
SET client_min_messages TO WARNING;
\set ECHO none
with data as (
select
ARRAY[7.0,8.0,1.0,2.0,3.0,5.0,6.0,4.0] as colin,
ARRAY[ST_GeomFromText('POINT(2.1744 41.4036)'),ST_GeomFromText('POINT(2.1228 41.3809)'),ST_GeomFromText('POINT(2.1511 41.3742)'),ST_GeomFromText('POINT(2.1528 41.4136)'),ST_GeomFromText('POINT(2.165 41.3917)'),ST_GeomFromText('POINT(2.1498 41.3713)'),ST_GeomFromText('POINT(2.1533 41.3683)'),ST_GeomFromText('POINT(2.131386 41.413998)')] as geomin
)
select cdb_crankshaft.CDB_TINmap(geomin, colin, 2) from data;
|
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字Header(非保留),作为用户组名
--关键字不带引号-成功
drop group if exists Header;
create group Header with password '<PASSWORD>';
drop group Header;
--关键字带双引号-成功
drop group if exists "Header";
create group "Header" with password '<PASSWORD>';
drop group "Header";
--关键字带单引号-合理报错
drop group if exists 'Header';
create group 'Header' with password '<PASSWORD>';
--关键字带反引号-合理报错
drop group if exists `Header`;
create group `Header` with password '<PASSWORD>';
|
-- Comando CREATE.
-- Cria um banco de dados.
CREATE DATABASE cadastro;
-- Cria uma tabela se ela ainda não existir.
CREATE TABLE IF NOT EXISTS pessoas (
id int NOT NULL AUTO_INCREMENT,
nome varchar(30) NOT NULL,
nascimento date,
sexo enum('M', 'F'),
peso decimal (5, 2),
altura decimal(3, 2),
nacionalidade varchar(20) DEFAULT 'Brasil',
PRIMARY KEY (id)
) DEFAULT CHARSET = utf8; |
SELECT COUNT(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'requests'
AND COLUMN_NAME = 'has_response';
|
<filename>susara_music.sql
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 21, 2019 at 05:13 AM
-- Server version: 10.3.15-MariaDB
-- PHP Version: 7.1.30
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: `susara_music`
--
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`adminId` int(10) UNSIGNED NOT NULL,
`fname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phoneNo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`street` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`nic` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`userId` int(10) UNSIGNED NOT NULL,
`remember_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `bills`
--
CREATE TABLE `bills` (
`billNo` int(10) UNSIGNED NOT NULL,
`instrumentName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`instrumentNo` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `bill_ex`
--
CREATE TABLE `bill_ex` (
`billNo` int(10) UNSIGNED NOT NULL,
`totalAmount` double NOT NULL,
`cashierId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `carts`
--
CREATE TABLE `carts` (
`cartId` int(10) UNSIGNED NOT NULL,
`itemName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`totalAmount` double NOT NULL,
`cashierId` int(10) UNSIGNED NOT NULL,
`adminId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `carts_customers`
--
CREATE TABLE `carts_customers` (
`cartId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `cashiers`
--
CREATE TABLE `cashiers` (
`cashierId` int(10) UNSIGNED NOT NULL,
`fname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phoneNo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`street` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`nic` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`userId` int(10) UNSIGNED NOT NULL,
`adminId` int(10) UNSIGNED NOT NULL,
`remember_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `customers`
--
CREATE TABLE `customers` (
`customerId` int(10) UNSIGNED NOT NULL,
`fname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`street` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phoneNo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`nic` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_verified_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`active_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `customers`
--
INSERT INTO `customers` (`customerId`, `fname`, `lname`, `no`, `street`, `city`, `phoneNo`, `nic`, `email`, `password`, `remember_token`, `email_verified_at`, `created_at`, `updated_at`, `active`, `active_token`) VALUES
(34, 'user', '01', '43', 'badulla', 'bandarawela', '1234567890', '1234567890', '<EMAIL>', '$2y$10$PntkaQk<PASSWORD>HLtxVOnJqYeYQ5eF93oosKZG8haDKEX5IOYHStmcfq', NULL, '2019-06-20 23:18:58', '2019-06-20 17:48:58', '2019-06-20 17:48:58', 0, 'UFitV6aLt05hMAvukfsT');
-- --------------------------------------------------------
--
-- Table structure for table `customers_lessons`
--
CREATE TABLE `customers_lessons` (
`lessonNo` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `instruments`
--
CREATE TABLE `instruments` (
`instrumentId` int(10) UNSIGNED NOT NULL,
`instrumentName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`imagepath` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `instruments_customers`
--
CREATE TABLE `instruments_customers` (
`instrumentId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `instruments_ex`
--
CREATE TABLE `instruments_ex` (
`instrumentId` int(10) UNSIGNED NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` double NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`adminId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `lessons`
--
CREATE TABLE `lessons` (
`lessonNo` int(10) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `lessons_ex`
--
CREATE TABLE `lessons_ex` (
`lessonNo` int(10) UNSIGNED NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`adminId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `manual_payments`
--
CREATE TABLE `manual_payments` (
`mPaymentId` int(10) UNSIGNED NOT NULL,
`itmeName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `manual_payments_ex`
--
CREATE TABLE `manual_payments_ex` (
`mPyamentId` int(10) UNSIGNED NOT NULL,
`totalAmount` double NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`cashierId` int(10) UNSIGNED NOT NULL,
`adminId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2019_06_04_053453_create_users_table', 1),
(2, '2019_06_04_053540_create_users_user_roles_table', 1),
(3, '2019_06_04_053639_create_admins_table', 1),
(4, '2019_06_04_053724_create_cashiers_table', 1),
(5, '2019_06_04_053838_create_customers_table', 1),
(6, '2019_06_04_054010_create_new_items_table', 1),
(7, '2019_06_04_054048_create_new_items_categories_table', 1),
(8, '2019_06_04_054321_create_stocks_table', 1),
(9, '2019_06_04_054346_create_stock_ex_table', 1),
(10, '2019_06_04_055236_create_manual_payments_table', 1),
(11, '2019_06_04_055340_create_manual_payments_ex_table', 1),
(12, '2019_06_04_055539_create_online_payments_table', 1),
(13, '2019_06_04_055952_create_instruments_table', 1),
(14, '2019_06_04_060054_create_online_payments_ex_table', 1),
(15, '2019_06_04_060307_create_online_payments_ex2_table', 1),
(16, '2019_06_04_060413_create_lessons_table', 1),
(17, '2019_06_04_060500_create_lessons_ex_table', 1),
(18, '2019_06_04_060547_create_carts_table', 1),
(19, '2019_06_04_060651_create_bills_table', 1),
(20, '2019_06_04_060729_create_bills-ex_table', 1),
(21, '2019_06_04_060835_create_instruments_ex_table', 1),
(22, '2019_06_04_060944_create_instruments_customers_table', 1),
(23, '2019_06_04_061044_create_carts_customers_table', 1),
(24, '2019_06_04_061137_create_customers_lessons_table', 1),
(25, '2019_06_04_061223_create_song_details_table', 1),
(26, '2019_06_04_061255_create_song_details_ex_table', 1),
(27, '2019_06_04_061409_create_song_details_customers_table', 1),
(28, '2019_06_04_061456_create_tune_instruments_table', 1),
(29, '2019_06_04_061532_create_tune_instruments_ex_table', 1),
(30, '2019_06_04_061716_create_tune_instruments_customers_table', 1),
(31, '2019_06_08_165835_create_orders_table', 1),
(32, '2019_06_16_070336_create_user_activation_table', 1),
(33, '2019_06_18_130217_add_active_to_customers', 2),
(34, '2019_06_18_131052_add_active_to_customers', 3);
-- --------------------------------------------------------
--
-- Table structure for table `new_items`
--
CREATE TABLE `new_items` (
`itemNo` int(10) UNSIGNED NOT NULL,
`itemName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `new_items_categories`
--
CREATE TABLE `new_items_categories` (
`itemNo` int(10) UNSIGNED NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` double NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`adminId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `online_payments`
--
CREATE TABLE `online_payments` (
`oPaymentId` int(11) NOT NULL,
`orderId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `online_payments_ex`
--
CREATE TABLE `online_payments_ex` (
`oPyamentId` int(10) UNSIGNED NOT NULL,
`totalAmount` double NOT NULL,
`quantity` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`cashierId` int(10) UNSIGNED NOT NULL,
`adminId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL,
`instrumentId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `online_payments_ex2`
--
CREATE TABLE `online_payments_ex2` (
`oPaymentId` int(10) UNSIGNED NOT NULL,
`creditCardNo` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`orderId` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `song_details`
--
CREATE TABLE `song_details` (
`songId` int(10) UNSIGNED NOT NULL,
`songName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lyrics` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `song_details-ex`
--
CREATE TABLE `song_details-ex` (
`songId` int(10) UNSIGNED NOT NULL,
`artist` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`adminId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `song_details_customers`
--
CREATE TABLE `song_details_customers` (
`songId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `stocks`
--
CREATE TABLE `stocks` (
`sItemNo` int(10) UNSIGNED NOT NULL,
`sItemName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `stock_ex`
--
CREATE TABLE `stock_ex` (
`sItemNo` int(10) UNSIGNED NOT NULL,
`price` double NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`quantity` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `tune_instruments`
--
CREATE TABLE `tune_instruments` (
`instrumentNo` int(10) UNSIGNED NOT NULL,
`instrumentname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `tune_instruments_customers`
--
CREATE TABLE `tune_instruments_customers` (
`instrumentId` int(10) UNSIGNED NOT NULL,
`customerId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `tune_instrument_ex`
--
CREATE TABLE `tune_instrument_ex` (
`instrumentNo` int(10) UNSIGNED NOT NULL,
`inpiutFrequency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`predefinedFrequency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`userId` int(10) UNSIGNED NOT NULL,
`username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`userId`, `username`, `password`, `created_at`, `updated_at`) VALUES
(1, 'admin', <PASSWORD>', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `users_activations`
--
CREATE TABLE `users_activations` (
`id` bigint(20) UNSIGNED NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`create_at` timestamp NOT NULL DEFAULT current_timestamp(),
`userId` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users_user_roles`
--
CREATE TABLE `users_user_roles` (
`userId` int(10) UNSIGNED NOT NULL,
`userRole` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`adminId`),
ADD UNIQUE KEY `admins_email_unique` (`email`),
ADD KEY `admins_userid_foreign` (`userId`);
--
-- Indexes for table `bills`
--
ALTER TABLE `bills`
ADD PRIMARY KEY (`billNo`);
--
-- Indexes for table `bill_ex`
--
ALTER TABLE `bill_ex`
ADD PRIMARY KEY (`billNo`),
ADD KEY `bill_ex_cashierid_foreign` (`cashierId`),
ADD KEY `bill_ex_customerid_foreign` (`customerId`);
--
-- Indexes for table `carts`
--
ALTER TABLE `carts`
ADD PRIMARY KEY (`cartId`),
ADD KEY `carts_cashierid_foreign` (`cashierId`),
ADD KEY `carts_adminid_foreign` (`adminId`);
--
-- Indexes for table `carts_customers`
--
ALTER TABLE `carts_customers`
ADD KEY `carts_customers_cartid_foreign` (`cartId`),
ADD KEY `carts_customers_customerid_foreign` (`customerId`);
--
-- Indexes for table `cashiers`
--
ALTER TABLE `cashiers`
ADD PRIMARY KEY (`cashierId`),
ADD UNIQUE KEY `cashiers_email_unique` (`email`),
ADD KEY `cashiers_userid_foreign` (`userId`),
ADD KEY `cashiers_adminid_foreign` (`adminId`);
--
-- Indexes for table `customers`
--
ALTER TABLE `customers`
ADD PRIMARY KEY (`customerId`),
ADD UNIQUE KEY `customers_email_unique` (`email`);
--
-- Indexes for table `customers_lessons`
--
ALTER TABLE `customers_lessons`
ADD KEY `customers_lessons_lessonno_foreign` (`lessonNo`),
ADD KEY `customers_lessons_customerid_foreign` (`customerId`);
--
-- Indexes for table `instruments`
--
ALTER TABLE `instruments`
ADD PRIMARY KEY (`instrumentId`);
--
-- Indexes for table `instruments_customers`
--
ALTER TABLE `instruments_customers`
ADD KEY `instruments_customers_instrumentid_foreign` (`instrumentId`),
ADD KEY `instruments_customers_customerid_foreign` (`customerId`);
--
-- Indexes for table `instruments_ex`
--
ALTER TABLE `instruments_ex`
ADD PRIMARY KEY (`instrumentId`),
ADD KEY `instruments_ex_adminid_foreign` (`adminId`);
--
-- Indexes for table `lessons`
--
ALTER TABLE `lessons`
ADD PRIMARY KEY (`lessonNo`);
--
-- Indexes for table `lessons_ex`
--
ALTER TABLE `lessons_ex`
ADD PRIMARY KEY (`lessonNo`),
ADD KEY `lessons_ex_adminid_foreign` (`adminId`);
--
-- Indexes for table `manual_payments`
--
ALTER TABLE `manual_payments`
ADD PRIMARY KEY (`mPaymentId`);
--
-- Indexes for table `manual_payments_ex`
--
ALTER TABLE `manual_payments_ex`
ADD PRIMARY KEY (`mPyamentId`),
ADD KEY `manual_payments_ex_cashierid_foreign` (`cashierId`),
ADD KEY `manual_payments_ex_adminid_foreign` (`adminId`),
ADD KEY `manual_payments_ex_customerid_foreign` (`customerId`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `new_items`
--
ALTER TABLE `new_items`
ADD PRIMARY KEY (`itemNo`);
--
-- Indexes for table `new_items_categories`
--
ALTER TABLE `new_items_categories`
ADD PRIMARY KEY (`itemNo`),
ADD KEY `new_items_categories_adminid_foreign` (`adminId`);
--
-- Indexes for table `online_payments`
--
ALTER TABLE `online_payments`
ADD PRIMARY KEY (`oPaymentId`);
--
-- Indexes for table `online_payments_ex`
--
ALTER TABLE `online_payments_ex`
ADD PRIMARY KEY (`oPyamentId`),
ADD KEY `online_payments_ex_cashierid_foreign` (`cashierId`),
ADD KEY `online_payments_ex_adminid_foreign` (`adminId`),
ADD KEY `online_payments_ex_customerid_foreign` (`customerId`),
ADD KEY `online_payments_ex_instrumentid_foreign` (`instrumentId`);
--
-- Indexes for table `online_payments_ex2`
--
ALTER TABLE `online_payments_ex2`
ADD PRIMARY KEY (`oPaymentId`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `song_details`
--
ALTER TABLE `song_details`
ADD PRIMARY KEY (`songId`);
--
-- Indexes for table `song_details-ex`
--
ALTER TABLE `song_details-ex`
ADD PRIMARY KEY (`songId`),
ADD KEY `song_details_ex_adminid_foreign` (`adminId`);
--
-- Indexes for table `song_details_customers`
--
ALTER TABLE `song_details_customers`
ADD KEY `song_details_customers_songid_foreign` (`songId`),
ADD KEY `song_details_customers_customerid_foreign` (`customerId`);
--
-- Indexes for table `stocks`
--
ALTER TABLE `stocks`
ADD PRIMARY KEY (`sItemNo`);
--
-- Indexes for table `stock_ex`
--
ALTER TABLE `stock_ex`
ADD PRIMARY KEY (`sItemNo`);
--
-- Indexes for table `tune_instruments`
--
ALTER TABLE `tune_instruments`
ADD PRIMARY KEY (`instrumentNo`);
--
-- Indexes for table `tune_instruments_customers`
--
ALTER TABLE `tune_instruments_customers`
ADD KEY `tune_instruments_customers_instrumentid_foreign` (`instrumentId`),
ADD KEY `tune_instruments_customers_customerid_foreign` (`customerId`);
--
-- Indexes for table `tune_instrument_ex`
--
ALTER TABLE `tune_instrument_ex`
ADD PRIMARY KEY (`instrumentNo`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`userId`);
--
-- Indexes for table `users_activations`
--
ALTER TABLE `users_activations`
ADD PRIMARY KEY (`id`),
ADD KEY `users_activations_userid_foreign` (`userId`);
--
-- Indexes for table `users_user_roles`
--
ALTER TABLE `users_user_roles`
ADD PRIMARY KEY (`userId`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
MODIFY `adminId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `cashiers`
--
ALTER TABLE `cashiers`
MODIFY `cashierId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `customers`
--
ALTER TABLE `customers`
MODIFY `customerId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;
--
-- AUTO_INCREMENT for table `lessons`
--
ALTER TABLE `lessons`
MODIFY `lessonNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `lessons_ex`
--
ALTER TABLE `lessons_ex`
MODIFY `lessonNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `manual_payments`
--
ALTER TABLE `manual_payments`
MODIFY `mPaymentId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `manual_payments_ex`
--
ALTER TABLE `manual_payments_ex`
MODIFY `mPyamentId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;
--
-- AUTO_INCREMENT for table `new_items`
--
ALTER TABLE `new_items`
MODIFY `itemNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `new_items_categories`
--
ALTER TABLE `new_items_categories`
MODIFY `itemNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `song_details`
--
ALTER TABLE `song_details`
MODIFY `songId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `song_details-ex`
--
ALTER TABLE `song_details-ex`
MODIFY `songId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `stocks`
--
ALTER TABLE `stocks`
MODIFY `sItemNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `stock_ex`
--
ALTER TABLE `stock_ex`
MODIFY `sItemNo` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `userId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `users_activations`
--
ALTER TABLE `users_activations`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `users_user_roles`
--
ALTER TABLE `users_user_roles`
MODIFY `userId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `admins`
--
ALTER TABLE `admins`
ADD CONSTRAINT `admins_userid_foreign` FOREIGN KEY (`userId`) REFERENCES `users` (`userId`) ON DELETE CASCADE;
--
-- Constraints for table `bill_ex`
--
ALTER TABLE `bill_ex`
ADD CONSTRAINT `bill_ex_cashierid_foreign` FOREIGN KEY (`cashierId`) REFERENCES `cashiers` (`cashierId`),
ADD CONSTRAINT `bill_ex_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`);
--
-- Constraints for table `carts`
--
ALTER TABLE `carts`
ADD CONSTRAINT `carts_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`),
ADD CONSTRAINT `carts_cashierid_foreign` FOREIGN KEY (`cashierId`) REFERENCES `cashiers` (`cashierId`);
--
-- Constraints for table `carts_customers`
--
ALTER TABLE `carts_customers`
ADD CONSTRAINT `carts_customers_cartid_foreign` FOREIGN KEY (`cartId`) REFERENCES `carts` (`cartId`),
ADD CONSTRAINT `carts_customers_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`);
--
-- Constraints for table `cashiers`
--
ALTER TABLE `cashiers`
ADD CONSTRAINT `cashiers_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`) ON DELETE CASCADE,
ADD CONSTRAINT `cashiers_userid_foreign` FOREIGN KEY (`userId`) REFERENCES `users` (`userId`) ON DELETE CASCADE;
--
-- Constraints for table `customers_lessons`
--
ALTER TABLE `customers_lessons`
ADD CONSTRAINT `customers_lessons_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`),
ADD CONSTRAINT `customers_lessons_lessonno_foreign` FOREIGN KEY (`lessonNo`) REFERENCES `lessons` (`lessonNo`);
--
-- Constraints for table `instruments_customers`
--
ALTER TABLE `instruments_customers`
ADD CONSTRAINT `instruments_customers_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`),
ADD CONSTRAINT `instruments_customers_instrumentid_foreign` FOREIGN KEY (`instrumentId`) REFERENCES `instruments` (`instrumentId`);
--
-- Constraints for table `instruments_ex`
--
ALTER TABLE `instruments_ex`
ADD CONSTRAINT `instruments_ex_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`);
--
-- Constraints for table `lessons_ex`
--
ALTER TABLE `lessons_ex`
ADD CONSTRAINT `lessons_ex_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`);
--
-- Constraints for table `manual_payments_ex`
--
ALTER TABLE `manual_payments_ex`
ADD CONSTRAINT `manual_payments_ex_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`),
ADD CONSTRAINT `manual_payments_ex_cashierid_foreign` FOREIGN KEY (`cashierId`) REFERENCES `cashiers` (`cashierId`),
ADD CONSTRAINT `manual_payments_ex_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`) ON DELETE CASCADE;
--
-- Constraints for table `new_items_categories`
--
ALTER TABLE `new_items_categories`
ADD CONSTRAINT `new_items_categories_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`);
--
-- Constraints for table `online_payments_ex`
--
ALTER TABLE `online_payments_ex`
ADD CONSTRAINT `online_payments_ex_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`),
ADD CONSTRAINT `online_payments_ex_cashierid_foreign` FOREIGN KEY (`cashierId`) REFERENCES `cashiers` (`cashierId`),
ADD CONSTRAINT `online_payments_ex_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`),
ADD CONSTRAINT `online_payments_ex_instrumentid_foreign` FOREIGN KEY (`instrumentId`) REFERENCES `instruments` (`instrumentId`);
--
-- Constraints for table `song_details-ex`
--
ALTER TABLE `song_details-ex`
ADD CONSTRAINT `song_details_ex_adminid_foreign` FOREIGN KEY (`adminId`) REFERENCES `admins` (`adminId`);
--
-- Constraints for table `song_details_customers`
--
ALTER TABLE `song_details_customers`
ADD CONSTRAINT `song_details_customers_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`),
ADD CONSTRAINT `song_details_customers_songid_foreign` FOREIGN KEY (`songId`) REFERENCES `song_details` (`songId`);
--
-- Constraints for table `tune_instruments_customers`
--
ALTER TABLE `tune_instruments_customers`
ADD CONSTRAINT `tune_instruments_customers_customerid_foreign` FOREIGN KEY (`customerId`) REFERENCES `customers` (`customerId`),
ADD CONSTRAINT `tune_instruments_customers_instrumentid_foreign` FOREIGN KEY (`instrumentId`) REFERENCES `instruments` (`instrumentId`);
--
-- Constraints for table `users_activations`
--
ALTER TABLE `users_activations`
ADD CONSTRAINT `users_activations_userid_foreign` FOREIGN KEY (`userId`) REFERENCES `users` (`userId`) ON DELETE 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 */;
|
<filename>prisma/migrations/20211220105919_create_model_client_user/migration.sql
-- CreateTable
CREATE TABLE "ClientUser" (
"id" TEXT NOT NULL,
"username" TEXT NOT NULL,
"password" TEXT NOT NULL,
"firstName" TEXT NOT NULL,
"lastName" TEXT NOT NULL,
CONSTRAINT "ClientUser_pkey" PRIMARY KEY ("id")
);
|
SELECT SQ.RM01 AS "收件年",
SQ.RM02 AS "收件字",
SQ.RM03 AS "收件號",
SQ.RM09 AS "登記原因代碼",
k.KCNT AS "登記原因",
SQ.RM07_1 AS "收件日期",
SQ.RM58_1 AS "結案日期",
SQ.RM18 AS "權利人統一編號",
SQ.RM19 AS "權利人姓名",
SQ.RM21 AS "義務人統一編號",
SQ.RM22 AS "義務人姓名",
SQ.RM30 AS "辦理情形",
SQ.RM31 AS "結案代碼"
FROM (SELECT *
FROM MOICAS.CRSMS tt
WHERE tt.rm07_1 LIKE '10904%'
AND tt.rm02 LIKE 'H%B1' -- 本所處理跨所案件
AND tt.RM03 NOT LIKE '%0' -- 子號案件
) SQ
LEFT JOIN MOICAD.RKEYN k
ON k.KCDE_2 = SQ.RM09
WHERE k.KCDE_1 = '06'; |
<filename>loginbloglaravel.sql
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 14 Agu 2021 pada 07.31
-- Versi server: 10.4.13-MariaDB
-- Versi PHP: 7.4.8
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: `loginbloglaravel`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `blogs`
--
CREATE TABLE `blogs` (
`id` bigint(20) UNSIGNED NOT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `blogs`
--
INSERT INTO `blogs` (`id`, `image`, `title`, `content`, `created_at`, `updated_at`) VALUES
(1, 'Sjvzib06io9whpBa98GUhk7FTnv4DAlzZtCNoncF.png', 'artikel tentang kesehatan rohani', '<p>wdaawdaw</p>', '2021-08-13 20:17:39', '2021-08-13 20:52:38'),
(2, '7cUalBM942vKPHeHz0R2d3Gf12WDbgC4QCArhiL2.png', 'user saya', '<p>dawd</p>', '2021-08-13 20:52:48', '2021-08-13 20:52:48');
-- --------------------------------------------------------
--
-- Struktur dari tabel `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(9, '2014_10_12_000000_create_users_table', 1),
(10, '2014_10_12_100000_create_password_resets_table', 1),
(11, '2019_08_19_000000_create_failed_jobs_table', 1),
(12, '2021_08_09_121933_create_blogs_table', 1);
-- --------------------------------------------------------
--
-- Struktur dari tabel `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` enum('admin','user') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'user',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `role`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'admin123', '<EMAIL>', NULL, '$2y$10$haWV8vWZnaJ9jmsjypPCT.YSOyFDhixv7O20/o./IxVMr26kkBHM.', 'admin', NULL, '2021-08-13 20:08:13', '2021-08-13 20:08:13'),
(2, 'user', '<EMAIL>', NULL, '$2y$10$kBF8rmlTocd/8zwjNIDxhu.C2D95ut/oVAnsCEMwPIBNmJ2KyweVy', 'user', NULL, '2021-08-13 21:04:50', '2021-08-13 21:04:50');
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `blogs`
--
ALTER TABLE `blogs`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indeks untuk tabel `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indeks untuk tabel `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `blogs`
--
ALTER TABLE `blogs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT untuk tabel `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED 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 */;
|
<reponame>Fernando-C-Valle/Shopping-System_Python-PostgreSQL
CREATE DATABASE yourdatabase;
CREATE TABLE clients(
client_id BIGSERIAL NOT NULL PRIMARY KEY,
name VARCHAR(255) NOT NULL,
user_name VARCHAR(255) NOT NULL,
age INT NOT NULL ,
registered TIMESTAMP DEFAULT NOW()
);
CREATE TABLE items(
item_id BIGSERIAL NOT NULL PRIMARY KEY,
name VARCHAR(255) NOT NULL,
price DECIMAL(7,2) NOT NULL,
quantity INTEGER NOT NULL
);
CREATE TABLE orders(
order_id BIGSERIAL NOT NULL PRIMARY KEY,
clientID INTEGER,
FOREIGN KEY(clientID)
REFERENCES clients(client_id)
ON DELETE CASCADE,
itemID INTEGER,
FOREIGN KEY(itemID)
REFERENCES items(item_id)
ON DELETE CASCADE,
quantity INTEGER NOT NULL,
ordered_at TIMESTAMP DEFAULT NOW()
);
CREATE TABLE fulfilled_orders(
fulfilled_order_id BIGSERIAL NOT NULL PRIMARY KEY,
clientID INTEGER,
FOREIGN KEY(clientID)
REFERENCES clients(client_id)
ON DELETE CASCADE,
itemID INTEGER,
FOREIGN KEY(itemID)
REFERENCES items(item_id)
ON DELETE CASCADE,
quantity INTEGER NOT NULL,
fulfilled_at TIMESTAMP DEFAULT NOW()
);
/*
SELECT clients.client_id, clients.name, items.item_id, items.name, fulfilled_at
FROM clients
INNER JOIN fulfilled_orders
ON clients.client_id = fulfilled_orders.clientID
INNER JOIN items
ON items.item_id = fulfilled_orders.itemID;
SELECT clients.name AS Client, client_id, items.name As Product, items.price AS Price, items.item_id, ordered_at
FROM items
INNER JOIN orders
ON items.item_id = orders.itemID
INNER JOIN clients
ON clients.client_id = orders.clientID;
*/ |
<filename>DBScripts/sp_IndexFragmentation.sql
USE Master
GO
IF OBJECT_ID('dbo.sp_IndexFragmentation') IS NULL
EXEC ('CREATE PROCEDURE dbo.sp_IndexFragmentation AS RETURN 0;');
GO
ALTER PROCEDURE [dbo].[sp_IndexFragmentation]
AS
SELECT dbschemas.[name] as 'Schema',
dbtables.[name] as 'Table',
dbindexes.[name] as 'Index',
indexstats.avg_fragmentation_in_percent,
indexstats.page_count
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL) AS indexstats
INNER JOIN sys.tables dbtables on dbtables.[object_id] = indexstats.[object_id]
INNER JOIN sys.schemas dbschemas on dbtables.[schema_id] = dbschemas.[schema_id]
INNER JOIN sys.indexes AS dbindexes ON dbindexes.[object_id] = indexstats.[object_id]
AND indexstats.index_id = dbindexes.index_id
WHERE indexstats.database_id = DB_ID()
ORDER BY indexstats.avg_fragmentation_in_percent desc
RETURN
GO
EXEC sp_ms_marksystemobject sp_IndexFragmentation
GO |
<gh_stars>0
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Versión del servidor: 5.6.16 - MySQL Community Server (GPL)
-- SO del servidor: Win32
-- HeidiSQL Versión: 9.1.0.4867
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Volcando estructura para tabla jma_tatu.permissions
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE IF NOT EXISTS `permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Volcando datos para la tabla jma_tatu.permissions: ~49 rows (aproximadamente)
DELETE FROM `permissions`;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` (`id`, `name`) VALUES
(1, 'agregar_slide'),
(2, 'agregar_galeria'),
(3, 'agregar_texto'),
(4, 'agregar_html'),
(5, 'ver_menu_admin'),
(6, 'ver_item_admin'),
(7, 'ver_seccion_admin'),
(8, 'agregar_menu_boton'),
(9, 'agregar_menu_categoria'),
(10, 'ordenar_menu_principal'),
(11, 'editar_menu_principal'),
(12, 'borrar_menu_principal'),
(13, 'ordenar_menu_interno'),
(14, 'editar_menu_interno'),
(15, 'borrar_menu_interno'),
(16, 'agregar_pagina_inicio'),
(17, 'agregar_pagina_contacto'),
(18, 'seleccionar_nivel_menu'),
(19, 'seleccionar_nivel_categoria'),
(20, 'cambiar_categoria'),
(21, 'ordenar_seccion_estatica'),
(22, 'ordenar_seccion_dinamica'),
(23, 'ver_menu_estatico_admin'),
(24, 'editar_texto'),
(25, 'borrar_texto'),
(26, 'editar_html'),
(27, 'borrar_html'),
(28, 'editar_galeria'),
(29, 'borrar_galeria'),
(30, 'editar_slide'),
(31, 'borrar_slide'),
(32, 'convertir_subcategoria'),
(33, 'agregar_seccion'),
(34, 'editar_seccion'),
(35, 'borrar_seccion'),
(36, 'agregar_item'),
(37, 'editar_item'),
(38, 'borrar_item'),
(39, 'destacar_item'),
(40, 'quitar_destacado_item'),
(41, 'ordenar_item'),
(42, 'ver_marca_admin'),
(43, 'agregar_marca'),
(44, 'editar_marca'),
(45, 'borrar_marca'),
(46, 'agregar_slide_home'),
(47, 'editar_slide_home'),
(48, 'borrar_slide_home'),
(49, 'elegir_modulo');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
-- Volcando estructura para tabla jma_tatu.permission_role
DROP TABLE IF EXISTS `permission_role`;
CREATE TABLE IF NOT EXISTS `permission_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`permission_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_permission_role_permissions` (`permission_id`),
KEY `FK_permission_role_roles` (`role_id`),
CONSTRAINT `FK_permission_role_permissions` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`),
CONSTRAINT `FK_permission_role_roles` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Volcando datos para la tabla jma_tatu.permission_role: ~49 rows (aproximadamente)
DELETE FROM `permission_role`;
/*!40000 ALTER TABLE `permission_role` DISABLE KEYS */;
INSERT INTO `permission_role` (`id`, `permission_id`, `role_id`) VALUES
(1, 1, 1),
(2, 2, 1),
(3, 3, 1),
(4, 4, 1),
(5, 5, 1),
(6, 6, 1),
(7, 7, 1),
(8, 8, 1),
(9, 9, 1),
(10, 10, 1),
(11, 11, 1),
(12, 12, 1),
(13, 13, 1),
(14, 14, 1),
(15, 15, 1),
(16, 16, 1),
(17, 17, 1),
(18, 18, 1),
(19, 19, 1),
(20, 20, 1),
(21, 21, 1),
(22, 22, 1),
(23, 23, 1),
(24, 24, 1),
(25, 25, 1),
(26, 26, 1),
(27, 27, 1),
(28, 28, 1),
(29, 29, 1),
(30, 30, 1),
(31, 31, 1),
(32, 32, 1),
(33, 33, 1),
(34, 34, 1),
(35, 35, 1),
(36, 36, 1),
(37, 37, 1),
(38, 38, 1),
(39, 39, 1),
(40, 40, 1),
(41, 41, 1),
(42, 42, 1),
(43, 43, 1),
(44, 44, 1),
(45, 45, 1),
(46, 46, 1),
(47, 47, 1),
(48, 48, 1),
(49, 49, 1);
/*!40000 ALTER TABLE `permission_role` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
-- Function: updateflowitem(integer, integer, integer, boolean)
-- DROP FUNCTION updateflowitem(integer, integer, integer, boolean);
CREATE OR REPLACE FUNCTION updateflowitem(
integer,
integer,
integer,
-- integer,
boolean
)
RETURNS boolean AS
$BODY$
DECLARE
_flowitem_id ALIAS FOR $1; -- Flow item ID of the flow item to update
_flowitem_flow_id ALIAS FOR $2; -- Flow item flow ID to be updated
_flowitem_item_id ALIAS for $3; -- Flow item item ID to be updated
-- _flowitem_type_id ALIAS for $5; -- Flow item type ID to be updated
_flowitem_override ALIAS FOR $4; -- Flow item override to be updated
_returned_flowitem_id integer; -- Flow item ID of returned query
_flowitemUpdated boolean := false; -- Flow item updated status
begin
/* Check that flow item ID is valid */
if _flowitem_id is null then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM AS FLOW ITEM ID IS NULL';
END IF;
/* Check that flow item ID exists */
if (select exists(select 1 from testflowitem where testflowitem_id = _flowitem_id)) is false then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM AS FLOW ITEM ID "%" DOES NOT EXIST', _flowitem_id;
end if;
/* Update flow item flow id if not null */
if _flowitem_flow_id is not null then
/* Check if the flow item flow id is different than it's current number */
if (select exists(select 1 from testflowitem where testflowitem_id = _flowitem_id
and testflowitem_flow_id = _flowitem_flow_id)) is false then
/* Update the test flow item number */
update testflowitem set testflowitem_flow_id = _flowitem_flow_id where testflowitem_id = _flowitem_id
returning testflowitem_id into _returned_flowitem_id;
/* Check that flow item name was updated successfully */
if _returned_flowitem_id is null then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM FLOW ID AS FLOW ITEM ID IS NULL';
END IF;
end if;
end if;
/* Check that the item ID and type ID change combination is unique */
/* Update flow item item id if not null */
if _flowitem_item_id is not null then
/* Check if the flow item item id is different than it's current number */
if (select exists(select 1 from testflowitem where testflowitem_id = _flowitem_id
and testflowitem_item_id = _flowitem_item_id)) is false then
/* Update the test flow item item ID */
update testflowitem set testflowitem_item_id = _flowitem_item_id where testflowitem_id = _flowitem_id
returning testflowitem_id into _returned_flowitem_id;
/* Check that flow item item ID was updated successfully */
if _returned_flowitem_id is null then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM ITEM ID AS FLOW ITEM ID IS NULL';
END IF;
end if;
end if;
-- /* Update flow item type ID if not null */
-- if _flowitem_type_id is not null then
--
-- /* Check if type ID exists */
-- if (select exists(select 1 from testtype where testtype_id = _flowitem_type_id and testtype_void_timestamp is null)) is true then
--
-- /* Check if the flow item type ID is different than it's current type ID */
-- if (select exists(select 1 from testflowitem where testflowitem_id = _flowitem_id
-- and testflowitem_type_id = _flowitem_type_id)) is false then
--
-- /* Update the test flow item type ID */
-- update testflowitem set testflowitem_type_id = _flowitem_type_id where testflowitem_id = _flowitem_id
-- returning testflowitem_id into _returned_flowitem_id;
--
-- /* Check that flow item type ID was updated successfully */
-- if _returned_flowitem_id is null then
-- raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM TYPE ID AS FLOW ITEM ID IS NULL';
-- END IF;
-- end if;
-- else
-- raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM AS ITEM TYPE ID "%" DOES NOT EXIST', _flowitem_type_id;
-- END IF;
-- end if;
/* Update flow item override if not null */
if _flowitem_override is not null then
/* Check if the flow item override is different than it's current status */
if (select exists(select 1 from testflowitem where testflowitem_id = _flowitem_id
and testflowitem_override = _flowitem_override)) is false then
/* Update the test flow item override status */
update testflowitem set testflowitem_override = _flowitem_override where testflowitem_id = _flowitem_id
returning testflowitem_id into _returned_flowitem_id;
/* Check that flow item override was updated successfully */
if _returned_flowitem_id is null then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM OVERRIDE AS FLOW ITEM ID IS NULL';
END IF;
end if;
end if;
/* Check if either flow item number, flow item override, flow item multiflow, or flow item type ID were valid */
if _returned_flowitem_id is null then
raise exception 'updateflowitem: ERROR UPDATING TEST FLOW ITEM AS THE FLOW ID, FLOW ITEM ID, TYPE ID, AND/OR OVERRIDE ARE BLANK, NULL OR UNCHANGED';
END IF;
/* Update flow item modified timestamp */
update testflowitem set testflowitem_modified_timestamp = now()::timestamp without time zone
where testflowitem_id = _flowitem_id;
/* Check that flow item modified timestamp was updated successfully */
if (select testflowitem_modified_timestamp from testflowitem where testflowitem_id = _flowitem_id) is null then
raise exception 'updateflowitem: ERROR UPDATING FLOW ITEM AS MODIFIED TIMESTAMP OF FLOW ITEM ID "%" IS NULL', _returned_flowitem_id;
else
_flowitemUpdated := true; -- Set flow item updated status
end if;
return _flowitemUpdated; -- Return flow item updated status
end;
$BODY$
language plpgsql volatile
cost 100;
alter function updateflowitem(integer, integer, integer, boolean)
owner to postgres;
COMMENT ON function updateflowitem(integer, integer, integer, boolean)
IS '[*New* --mrankin--] Updates a flow item'; |
<filename>TableLastUsed.sql
--based on the ideas from
--http://sqlblog.com/blogs/aaron_bertrand/archive/2008/05/06/when-was-my-database-table-last-accessed.aspx
;WITH ServerStarted AS
(
SELECT
MIN(last_user_seek) AS first_seek,
MIN(last_user_scan) AS first_scan,
MIN(last_user_lookup) AS first_lookup
FROM sys.dm_db_index_usage_stats
),
ServerFirst AS
(
SELECT
CASE
WHEN first_seek < first_scan AND first_seek < first_lookup
THEN first_seek
WHEN first_scan < first_seek AND first_scan < first_lookup
THEN first_scan
ELSE first_lookup
END AS usage_start_date
FROM ServerStarted
),
myCTE AS
(
SELECT
DB_NAME(database_id) AS TheDatabase,
last_user_seek,
last_user_scan,
last_user_lookup,
last_user_update
FROM sys.dm_db_index_usage_stats
)
SELECT
MIN(ServerFirst.usage_start_date) AS usage_start_date,
x.TheDatabase,
MAX(x.last_read) AS last_read,
MAX(x.last_write) AS last_write
FROM
(
SELECT TheDatabase,last_user_seek AS last_read, NULL AS last_write FROM myCTE
UNION ALL
SELECT TheDatabase,last_user_scan, NULL FROM myCTE
UNION ALL
SELECT TheDatabase,last_user_lookup, NULL FROM myCTE
UNION ALL
SELECT TheDatabase,NULL, last_user_update FROM myCTE
) AS x
CROSS JOIN ServerFirst
GROUP BY TheDatabase
|
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
CREATE TABLE IF NOT EXISTS `devices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`alias` varchar(255) NOT NULL DEFAULT '',
`desc` varchar(255) NOT NULL DEFAULT '',
`hash` varchar(32) NOT NULL DEFAULT '',
`type` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `hash` (`hash`),
KEY `alias` (`alias`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `grooming` (
`fk_group` int(10) unsigned NOT NULL,
`fk_device` int(10) unsigned NOT NULL,
`time` int(10) unsigned NOT NULL,
UNIQUE KEY `unique` (`fk_group`,`fk_device`),
KEY `fk_device` (`fk_device`),
KEY `fk_group` (`fk_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`desc` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `alias` (`alias`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `active_devices` (
`fk_device` int(10) unsigned NOT NULL,
`client` varchar(255) NOT NULL,
`os` varchar(100) NOT NULL,
`data` text NOT NULL,
`time` int(10) unsigned NOT NULL,
PRIMARY KEY (`fk_device`),
KEY `time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `active_users` (
`fk_device` int(10) unsigned NOT NULL,
`user_name` varchar(60) NOT NULL,
`time` int(10) unsigned NOT NULL,
UNIQUE KEY `fk_device` (`fk_device`,`user_name`),
KEY `time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `pings` (
`fk_device` int(10) unsigned NOT NULL,
`time` int(10) unsigned NOT NULL,
`client` varchar(255) NOT NULL DEFAULT '',
`data` text NOT NULL,
KEY `time` (`time`),
KEY `fk_device` (`fk_device`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tasks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`time` int(10) unsigned NOT NULL,
`priority` int(11) NOT NULL,
`status` int(11) NOT NULL,
`exec` text NOT NULL,
PRIMARY KEY (`id`),
KEY `priority` (`priority`),
KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tasks_log` (
`fk_task` int(10) unsigned NOT NULL,
`fk_device` int(10) unsigned NOT NULL DEFAULT '0',
`time_start` int(10) unsigned NOT NULL DEFAULT '0',
`time_end` int(10) unsigned NOT NULL DEFAULT '0',
`result` text NOT NULL,
PRIMARY KEY (`fk_task`,`fk_device`),
KEY `fk_device` (`fk_device`),
KEY `fk_task` (`fk_task`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `teams` (
`fk_user` varchar(30) NOT NULL,
`fk_group` int(10) unsigned NOT NULL,
PRIMARY KEY (`fk_user`,`fk_group`),
KEY `fk_group` (`fk_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `users` (
`login` varchar(30) NOT NULL,
`name` varchar(60) NOT NULL,
`type` int(11) NOT NULL DEFAULT '0',
`contact` text NOT NULL,
`email` varchar(100) NOT NULL,
`alias` varchar(255) NOT NULL,
PRIMARY KEY (`login`),
KEY `alias` (`alias`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `grooming`
ADD CONSTRAINT `grooming_ibfk_1` FOREIGN KEY (`fk_group`) REFERENCES `groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `grooming_ibfk_2` FOREIGN KEY (`fk_device`) REFERENCES `devices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE `pings`
ADD CONSTRAINT `pings_ibfk_1` FOREIGN KEY (`fk_device`) REFERENCES `devices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE `tasks_log`
ADD CONSTRAINT `tasks_log_ibfk_1` FOREIGN KEY (`fk_task`) REFERENCES `tasks` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `tasks_log_ibfk_2` FOREIGN KEY (`fk_device`) REFERENCES `devices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE `teams`
ADD CONSTRAINT `teams_ibfk_1` FOREIGN KEY (`fk_user`) REFERENCES `users` (`login`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `teams_ibfk_2` FOREIGN KEY (`fk_group`) REFERENCES `groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
INSERT INTO _database_test(n) VALUES($1)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.