sql
stringlengths
6
1.05M
DROP TABLE IF EXISTS users CASCADE; DROP TABLE IF EXISTS builds CASCADE; DROP TABLE IF EXISTS processors CASCADE; DROP TABLE IF EXISTS memory CASCADE; DROP TABLE IF EXISTS hds CASCADE; DROP TABLE IF EXISTS gpus CASCADE; DROP TABLE IF EXISTS motherboards CASCADE; DROP TABLE IF EXISTS psus CASCADE; DROP TABLE IF EXISTS cases CASCADE; DROP TABLE IF EXISTS monitors CASCADE; DROP TABLE IF EXISTS headphones CASCADE; DROP TABLE IF EXISTS keyboards CASCADE; DROP TABLE IF EXISTS mice CASCADE; DROP TABLE IF EXISTS speakers CASCADE; CREATE TABLE processors ( processor_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE memory ( memory_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE hds ( hd_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE gpus ( gpu_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE motherboards ( motherboard_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE psus ( psu_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE cases ( case_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE monitors ( monitor_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE headphones ( headphone_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE keyboards ( keyboard_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE mice ( mouse_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE speakers ( speaker_id SERIAL UNIQUE PRIMARY KEY, name TEXT NOT NULL, img_url VARCHAR(255) NOT NULL, store TEXT NOT NULL, price INT NOT NULL, description TEXT NOT NULL, buy_link VARCHAR(255) ); CREATE TABLE builds ( build_id SERIAL UNIQUE PRIMARY KEY, name VARCHAR(25) NOT NULL, cpu_id INT REFERENCES processors(processor_id) NOT NULL, memory_id INT REFERENCES memory(memory_id) NOT NULL, hd_id INT REFERENCES hds(hd_id) NOT NULL, ssd BOOLEAN NOT NULL, gpu_id INT REFERENCES gpus(gpu_id) NOT NULL, motherboard_id INT REFERENCES motherboards(motherboard_id) NOT NULL, psu_id INT REFERENCES psus(psu_id), case_id INT REFERENCES cases(case_id), optical_drive BOOLEAN NOT NULL, monitor_id INT REFERENCES monitors(monitor_id), headphone_id INT REFERENCES headphones(headphone_id), keyboard_id INT REFERENCES keyboards(keyboard_id), mouse_id INT REFERENCES mice(mouse_id), speaker_id INT REFERENCES speakers(speaker_id) ); CREATE TABLE users ( user_id SERIAL UNIQUE PRIMARY KEY, email VARCHAR(255) NOT NULL, password_digest TEXT NOT NULL, build_id INT REFERENCES builds(build_id) );
<reponame>sdoubleday/misc-scripts<filename>SQLQuery_Utility_SizeOfTablesIncludingIndexes.sql /* For size of tables plus indecies on disk http://stackoverflow.com/questions/7892334/get-size-of-all-tables-in-database*/ Declare @myTables TABLE (blah varchar(1000)) INSERT INTO @myTables VALUES ('ListTargetTablesHere') SELECT t.NAME AS TableName ,s.Name AS SchemaName ,p.rows AS RowCounts ,SUM(a.total_pages) * 8 AS TotalSpaceKB ,cast((SUM(a.total_pages) * 8 ) as decimal(19,4)) /1024.0 AS TotalSpaceMB ,cast((SUM(a.total_pages) * 8 ) as decimal(19,4)) /1024.0/1024.0 AS TotalSpaceGB ,SUM(a.used_pages) * 8 AS UsedSpaceKB ,(SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id INNER JOIN sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id INNER JOIN sys.allocation_units a ON p.partition_id = a.container_id LEFT OUTER JOIN sys.schemas s ON t.schema_id = s.schema_id WHERE t.NAME in ( SELECT * FROM @myTables) AND t.is_ms_shipped = 0 AND i.OBJECT_ID > 255 GROUP BY t.Name, s.Name,p.rows ORDER BY t.Name SELECT SUM(a.total_pages) * 8 AS TotalSpaceKB ,cast((SUM(a.total_pages) * 8 ) as decimal(19,4)) /1024.0 AS TotalSpaceMB ,cast((SUM(a.total_pages) * 8 ) as decimal(19,4)) /1024.0/1024.0 AS TotalSpaceGB ,SUM(a.used_pages) * 8 AS UsedSpaceKB ,(SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id INNER JOIN sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id INNER JOIN sys.allocation_units a ON p.partition_id = a.container_id LEFT OUTER JOIN sys.schemas s ON t.schema_id = s.schema_id WHERE t.NAME in ( SELECT * FROM @myTables) AND t.is_ms_shipped = 0 AND i.OBJECT_ID > 255
<filename>conf/eu-conf-scripts/src/main/resources/migrations/service/1.0.2/1.0.2.6__insert_table_geo_group.sql -- Middle East INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Nedj'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Oman'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Aden'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Ormus'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Afghanistan'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Balouchistan'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Aral'); -- India INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Delhi'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Ayutthaya'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Bengale'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Gujarat'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Pendjab'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Indus'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Orissa'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Gondwana'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Mumbai'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Hyderabad'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Malabar'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Karnatika'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Singala'); -- Indochina INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Birmanie'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Malacca'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Ayutthaya'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Dai Viet'); -- Extreme Orient INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Japon'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Formose'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Corea'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Mandchourie'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Pekin'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Nankin'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Canton'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Philippines'); -- Indonesia INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Sumatra'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Java'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Borneo'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Celebes'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Iles de la Sonde'); INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Iles aux epices'); -- Oceania INSERT INTO R_GEO_GROUP (NAME, R_REGION) VALUES ('ASIA', 'Oceania'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sNoire W'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sNoire E'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sMarmara'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sEgee'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sLevantin'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sAdriatique'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sIonienne'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sThyrrenienne'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sGabes'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sLion'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sAlboran'); INSERT INTO R_GEO_GROUP (NAME, R_PROVINCE) VALUES ('MEDITERRANEAN SEA', 'sAlger');
<gh_stars>1-10 -- -- PostgreSQL database dump -- -- Dumped from database version 10.12 (Ubuntu 10.12-0ubuntu0.18.04.1) -- Dumped by pg_dump version 10.12 -- Started on 2020-03-15 16:35:38 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 200 (class 1259 OID 70266) -- Name: angmom; Type: TABLE; Schema: public; Owner: python -- CREATE TABLE public.angmom ( gal character(3) NOT NULL, snap smallint NOT NULL, t real NOT NULL, x_hat real NOT NULL, y_hat real NOT NULL, z_hat real NOT NULL, l_mag real NOT NULL ); ALTER TABLE public.angmom OWNER TO python; -- -- TOC entry 2923 (class 0 OID 0) -- Dependencies: 200 -- Name: TABLE angmom; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON TABLE public.angmom IS 'Angular momentum of disk stars'; -- -- TOC entry 2924 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.gal; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.gal IS '''MW'', ''M31'', ''M33'''; -- -- TOC entry 2925 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.t; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.t IS 'Elapsed time, Myr'; -- -- TOC entry 2926 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.x_hat; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.x_hat IS 'unit vector component'; -- -- TOC entry 2927 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.y_hat; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.y_hat IS 'unit vector component'; -- -- TOC entry 2928 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.z_hat; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.z_hat IS 'unit vector component'; -- -- TOC entry 2929 (class 0 OID 0) -- Dependencies: 200 -- Name: COLUMN angmom.l_mag; Type: COMMENT; Schema: public; Owner: python -- COMMENT ON COLUMN public.angmom.l_mag IS 'magnitude of angular momentum'; -- -- TOC entry 2796 (class 2606 OID 70270) -- Name: angmom angmom_pkey; Type: CONSTRAINT; Schema: public; Owner: python -- ALTER TABLE ONLY public.angmom ADD CONSTRAINT angmom_pkey PRIMARY KEY (gal, snap); -- Completed on 2020-03-15 16:35:39 -- -- PostgreSQL database dump complete --
alter table repositories add column repo_registry_uri TEXT;
<reponame>paper-eth-data-analysis/eth-data-analysis-anon /* SQL Statements to create the Star Schema for the Data Warehouse. It will only get filled after the ETL process. */ /* Transaction Dimension */ BEGIN; CREATE TABLE IF NOT EXISTS d_transaction ( transaction_id BIGSERIAL NOT NULL CONSTRAINT pk_d_transaction PRIMARY KEY, hash TEXT, nonce BIGINT, transaction_index BIGINT, from_address TEXT, to_address TEXT, value NUMERIC(38), gas BIGINT, gas_price BIGINT, input TEXT, method_id TEXT, method_parameters TEXT, receipt_cumulative_gas_used BIGINT, receipt_gas_used BIGINT, receipt_contract_address TEXT, receipt_root TEXT, receipt_status BIGINT, block_timestamp TIMESTAMP, block_number BIGINT, block_hash TEXT ); /* Block Dimension*/ CREATE TABLE IF NOT EXISTS d_block ( block_id BIGSERIAL NOT NULL CONSTRAINT pk_d_block PRIMARY KEY, timestamp TIMESTAMP, number BIGINT, hash TEXT, parent_hash TEXT, nonce TEXT, sha3_uncles TEXT, logs_bloom TEXT, transactions_root TEXT, state_root TEXT, receipts_root TEXT, miner TEXT, difficulty NUMERIC(38), total_difficulty NUMERIC(38), size BIGINT, extra_data TEXT, gas_limit BIGINT, gas_used BIGINT, transaction_count BIGINT ); /*Date Dimension*/ CREATE TABLE IF NOT EXISTS d_date ( date DATE NOT NULL CONSTRAINT pk_d_date PRIMARY KEY, year INTEGER, month INTEGER, day INTEGER, weekday INTEGER, day_in_chars TEXT, week INTEGER ); /*Time Dimension*/ CREATE TABLE IF NOT EXISTS d_time ( time TIME NOT NULL CONSTRAINT pk_d_time PRIMARY KEY, hours INTEGER, minutes INTEGER, seconds INTEGER ); /*Account Dimension*/ CREATE TABLE IF NOT EXISTS d_account ( account_id BIGSERIAL NOT NULL, address TEXT CONSTRAINT pk_d_account PRIMARY KEY, eth_sent NUMERIC(38), eth_received NUMERIC(38), account_balance NUMERIC(38) ); /*Fact Table*/ CREATE TABLE IF NOT EXISTS f_blockchain ( CONSTRAINT pk_f_blockchain PRIMARY KEY (block_id, transaction_id, account_from_address, account_to_address, date, time), block_id BIGINT NOT NULL CONSTRAINT fk_d_block REFERENCES d_block, transaction_id BIGINT NOT NULL CONSTRAINT fk_d_Transaction REFERENCES d_transaction, account_from_address TEXT NOT NULL CONSTRAINT fk_d_account_from REFERENCES d_account, account_to_address TEXT NOT NULL CONSTRAINT fk_d_account_to REFERENCES d_account, date DATE NOT NULL CONSTRAINT fk_d_date REFERENCES d_date, time TIME NOT NULL CONSTRAINT fk_d_time REFERENCES d_time ); COMMIT;
<reponame>peterM/Ubiquiti-Unifi-Data-Exporter USE [master] GO CREATE DATABASE [Ubiquiti-Unifi-Backup] CONTAINMENT = NONE ON PRIMARY ( NAME = N'Ubiquiti-Unifi-Backup', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\Ubiquiti-Unifi-Backup.mdf' , SIZE = 4375040KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) LOG ON ( NAME = N'Ubiquiti-Unifi-Backup_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\Ubiquiti-Unifi-Backup_log.ldf' , SIZE = 1581696KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) GO IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) begin EXEC [Ubiquiti-Unifi-Backup].[dbo].[sp_fulltext_database] @action = 'enable' end GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ANSI_NULL_DEFAULT OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ANSI_NULLS OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ANSI_PADDING OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ANSI_WARNINGS OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ARITHABORT OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET AUTO_CLOSE OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET AUTO_SHRINK OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET AUTO_UPDATE_STATISTICS ON GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET CURSOR_CLOSE_ON_COMMIT OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET CURSOR_DEFAULT GLOBAL GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET CONCAT_NULL_YIELDS_NULL OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET NUMERIC_ROUNDABORT OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET QUOTED_IDENTIFIER OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET RECURSIVE_TRIGGERS OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET DISABLE_BROKER GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET AUTO_UPDATE_STATISTICS_ASYNC OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET DATE_CORRELATION_OPTIMIZATION OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET TRUSTWORTHY OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET ALLOW_SNAPSHOT_ISOLATION OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET PARAMETERIZATION SIMPLE GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET READ_COMMITTED_SNAPSHOT OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET HONOR_BROKER_PRIORITY OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET RECOVERY FULL GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET MULTI_USER GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET PAGE_VERIFY CHECKSUM GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET DB_CHAINING OFF GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET TARGET_RECOVERY_TIME = 0 SECONDS GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET DELAYED_DURABILITY = DISABLED GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET QUERY_STORE = OFF GO USE [Ubiquiti-Unifi-Backup] GO ALTER DATABASE SCOPED CONFIGURATION SET LEGACY_CARDINALITY_ESTIMATION = OFF; GO ALTER DATABASE SCOPED CONFIGURATION SET MAXDOP = 0; GO ALTER DATABASE SCOPED CONFIGURATION SET PARAMETER_SNIFFING = ON; GO ALTER DATABASE SCOPED CONFIGURATION SET QUERY_OPTIMIZER_HOTFIXES = OFF; GO ALTER DATABASE [Ubiquiti-Unifi-Backup] SET READ_WRITE GO
<filename>backend/de.metas.swat/de.metas.swat.base/src/main/sql/postgresql/system/47-de.metas.invoicecandidate/5602330_sys_gh11640_C_Invoice_Candidate_Recompte_AsyncBatch.sql -- 2021-08-30T06:17:40.469Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DDL_NoForeignKey,EntityType,FacetFilterSeqNo,FieldLength,IsActive,IsAdvancedText,IsAllowLogging,IsAlwaysUpdateable,IsAutoApplyValidationRule,IsAutocomplete,IsCalculated,IsDimension,IsDLMPartitionBoundary,IsEncrypted,IsExcludeFromZoomTargets,IsFacetFilter,IsForceIncludeInGeneratedModel,IsGenericZoomKeyColumn,IsGenericZoomOrigin,IsIdentifier,IsKey,IsLazyLoading,IsMandatory,IsParent,IsSelectionColumn,IsShowFilterIncrementButtons,IsShowFilterInline,IsStaleable,IsSyncDatabase,IsTranslated,IsUpdateable,IsUseDocSequence,MaxFacetsToFetch,Name,SelectionColumnSeqNo,SeqNo,Updated,UpdatedBy,Version) VALUES (0,575625,542581,0,19,540677,'C_Async_Batch_ID',TO_TIMESTAMP('2021-08-30 09:17:40','YYYY-MM-DD HH24:MI:SS'),100,'N','de.metas.invoicecandidate',0,10,'Y','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N',0,'Async Batch',0,0,TO_TIMESTAMP('2021-08-30 09:17:40','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- 2021-08-30T06:17:40.480Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Column t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Column_ID=575625 AND NOT EXISTS (SELECT 1 FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- 2021-08-30T06:17:40.518Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_Column_Translation_From_AD_Element(542581) ; -- 2021-08-30T06:17:43.575Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('C_Invoice_Candidate_Recompute','ALTER TABLE public.C_Invoice_Candidate_Recompute ADD COLUMN C_Async_Batch_ID NUMERIC(10)') ; -- 2021-08-30T06:17:44.095Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator ALTER TABLE C_Invoice_Candidate_Recompute ADD CONSTRAINT CAsyncBatch_CInvoiceCandidateRecompute FOREIGN KEY (C_Async_Batch_ID) REFERENCES public.C_Async_Batch DEFERRABLE INITIALLY DEFERRED ; -- 2021-08-30T06:18:54.406Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,579606,0,'ChunkUUID',TO_TIMESTAMP('2021-08-30 09:18:54','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.invoicecandidate','Y','Chunk UUID','Chunk UUID',TO_TIMESTAMP('2021-08-30 09:18:54','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-08-30T06:18:54.412Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, CommitWarning,Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName,WEBUI_NameBrowse,WEBUI_NameNew,WEBUI_NameNewBreadcrumb, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Element_ID, t.CommitWarning,t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName,t.WEBUI_NameBrowse,t.WEBUI_NameNew,t.WEBUI_NameNewBreadcrumb, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Element t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' OR l.IsBaseLanguage='Y') AND t.AD_Element_ID=579606 AND NOT EXISTS (SELECT 1 FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) ; -- 2021-08-30T06:19:32.450Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DDL_NoForeignKey,EntityType,FacetFilterSeqNo,FieldLength,IsActive,IsAdvancedText,IsAllowLogging,IsAlwaysUpdateable,IsAutoApplyValidationRule,IsAutocomplete,IsCalculated,IsDimension,IsDLMPartitionBoundary,IsEncrypted,IsExcludeFromZoomTargets,IsFacetFilter,IsForceIncludeInGeneratedModel,IsGenericZoomKeyColumn,IsGenericZoomOrigin,IsIdentifier,IsKey,IsLazyLoading,IsMandatory,IsParent,IsSelectionColumn,IsShowFilterIncrementButtons,IsShowFilterInline,IsStaleable,IsSyncDatabase,IsTranslated,IsUpdateable,IsUseDocSequence,MaxFacetsToFetch,Name,SelectionColumnSeqNo,SeqNo,Updated,UpdatedBy,Version) VALUES (0,575626,579606,0,10,540677,'ChunkUUID',TO_TIMESTAMP('2021-08-30 09:19:32','YYYY-MM-DD HH24:MI:SS'),100,'N','de.metas.invoicecandidate',0,255,'Y','N','Y','N','N','N','N','N','N','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N',0,'Chunk UUID',0,0,TO_TIMESTAMP('2021-08-30 09:19:32','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- 2021-08-30T06:19:32.451Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Column t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Column_ID=575626 AND NOT EXISTS (SELECT 1 FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- 2021-08-30T06:19:32.456Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_Column_Translation_From_AD_Element(579606) ; -- 2021-08-30T06:19:38.690Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('C_Invoice_Candidate_Recompute','ALTER TABLE public.C_Invoice_Candidate_Recompute ADD COLUMN ChunkUUID VARCHAR(255)') ; -- 2021-08-30T07:20:09.235Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Index_Table (AD_Client_ID,AD_Index_Table_ID,AD_Org_ID,AD_Table_ID,Created,CreatedBy,EntityType,IsActive,IsUnique,Name,Processing,Updated,UpdatedBy) VALUES (0,540630,0,540677,TO_TIMESTAMP('2021-08-30 10:20:09','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.invoicecandidate','Y','N','C_Invoice_Candidate_Recompute_Async_Batch','N',TO_TIMESTAMP('2021-08-30 10:20:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-08-30T07:20:09.248Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Index_Table_Trl (AD_Language,AD_Index_Table_ID, ErrorMsg, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy,IsActive) SELECT l.AD_Language, t.AD_Index_Table_ID, t.ErrorMsg, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy,'Y' FROM AD_Language l, AD_Index_Table t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Index_Table_ID=540630 AND NOT EXISTS (SELECT 1 FROM AD_Index_Table_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Index_Table_ID=t.AD_Index_Table_ID) ; -- 2021-08-30T07:20:31.209Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Index_Column (AD_Client_ID,AD_Column_ID,AD_Index_Column_ID,AD_Index_Table_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,SeqNo,Updated,UpdatedBy) VALUES (0,575625,541147,540630,0,TO_TIMESTAMP('2021-08-30 10:20:31','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.invoicecandidate','Y',10,TO_TIMESTAMP('2021-08-30 10:20:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-08-30T07:20:43.304Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Index_Column (AD_Client_ID,AD_Column_ID,AD_Index_Column_ID,AD_Index_Table_ID,AD_Org_ID,Created,CreatedBy,EntityType,IsActive,SeqNo,Updated,UpdatedBy) VALUES (0,575626,541148,540630,0,TO_TIMESTAMP('2021-08-30 10:20:43','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.invoicecandidate','Y',20,TO_TIMESTAMP('2021-08-30 10:20:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-08-30T07:20:46.698Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator CREATE INDEX C_Invoice_Candidate_Recompute_Async_Batch ON C_Invoice_Candidate_Recompute (C_Async_Batch_ID,ChunkUUID) ; -- 2021-08-30T07:51:15.403Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO C_Async_Batch_Type (AD_Client_ID,AD_Org_ID,C_Async_Batch_Type_ID,Created,CreatedBy,InternalName,IsActive,NotificationType,SkipTimeoutMillis,Updated,UpdatedBy) VALUES (1000000,1000000,540013,TO_TIMESTAMP('2021-08-30 10:51:15','YYYY-MM-DD HH24:MI:SS'),100,'InvoiceCandidate_Processing','Y','ABP',0,TO_TIMESTAMP('2021-08-30 10:51:15','YYYY-MM-DD HH24:MI:SS'),100) ;
<gh_stars>0 INSERT INTO KIM_ROLE_TYPE_T(ROLE_TYPE_CODE, DESCRIPTION) VALUES('A', 'AWARD'); COMMIT; INSERT INTO KIM_ROLES_T(ID, NAME, DESCRIPTION, ROLE_TYPE_CODE, DESCEND_FLAG) VALUES(15, 'Award Creator', 'Award Creator','A', 'Y'); INSERT INTO KIM_ROLES_T(ID,NAME, DESCRIPTION, ROLE_TYPE_CODE, DESCEND_FLAG) VALUES(16, 'Award Aggregator', 'Award Aggregator','A', 'Y'); INSERT INTO KIM_ROLES_T(ID,NAME, DESCRIPTION, ROLE_TYPE_CODE, DESCEND_FLAG) VALUES(17, 'Award Viewer', 'Award Viewer','A', 'Y'); INSERT INTO KIM_ROLES_T(ID,NAME, DESCRIPTION, ROLE_TYPE_CODE, DESCEND_FLAG) VALUES(18, 'Award Unassigned', 'Award Unassigned - no permissions','A', 'Y'); COMMIT; INSERT INTO KIM_PERMISSIONS_T(ID, NAME, DESCRIPTION, NAMESPACE_ID) VALUES (42, 'CREATE_AWARD', 'Create Award Document', 2); INSERT INTO KIM_PERMISSIONS_T(ID, NAME, DESCRIPTION, NAMESPACE_ID) VALUES (43, 'MODIFY_AWARD', 'Modify Award Document', 2); INSERT INTO KIM_PERMISSIONS_T(ID, NAME, DESCRIPTION, NAMESPACE_ID) VALUES (44, 'VIEW_AWARD', 'View Award Document', 2); COMMIT; INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 15, 42); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 15, 43); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 15, 44); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 16, 42); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 16, 43); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 16, 44); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 17, 43); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 17, 44); INSERT INTO KIM_ROLES_PERMISSIONS_T(ACTIVE_FLAG, ROLE_ID, PERMISSION_ID) VALUES ('Y', 18, 44); COMMIT;
select prof.name as name, cat.name as category, tag.name as tag from prof_cat_tag_lnk lnk join profile prof on prof.profile_id = lnk.profile_id left join category cat on cat.category_id = lnk.category_id left join tag on tag.tag_id = lnk.tag_id;
--provider-- CREATE TABLE nw.withdrawal_provider( id BIGSERIAL NOT NULL, version_id BIGINT NOT NULL, withdrawal_provider_ref_id INT NOT NULL, name CHARACTER VARYING NOT NULL, description CHARACTER VARYING, proxy_ref_id INT NOT NULL, proxy_additional_json CHARACTER VARYING NOT NULL, identity CHARACTER VARYING, withdrawal_terms_json CHARACTER VARYING, accounts_json CHARACTER VARYING, wtime TIMESTAMP WITHOUT TIME ZONE NOT NULL DEFAULT (now() at time zone 'utc'), current BOOLEAN NOT NULL DEFAULT TRUE, CONSTRAINT withdrawal_provider_pkey PRIMARY KEY (id) ); CREATE INDEX withdrawal_provider_version_id on nw.withdrawal_provider(version_id); CREATE INDEX withdrawal_provider_idx on nw.withdrawal_provider(withdrawal_provider_ref_id);
-- ไธšๅŠก่ฏทๆฑ‚ๆตๆฐด่ฎฐๅฝ•่กจ CREATE TABLE `busi_request` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `busi_type` varchar(10) NOT NULL COMMENT 'ไธšๅŠก็ฑปๅž‹๏ผš10-ๆต็จ‹้ƒจ็ฝฒ๏ผŒ20-ๆต็จ‹ๅผ€ๅฏ', `source` tinyint(4) NOT NULL COMMENT '่ฏทๆฑ‚ๆฅๆบ', `client_req_no` varchar(30) NOT NULL COMMENT '่ฏทๆฑ‚ๆตๆฐดๅท', `status` tinyint(4) NOT NULL COMMENT '่ฏทๆฑ‚็Šถๆ€๏ผš0-ๅˆๅง‹ๅŒ–๏ผŒ1-ๅค„็†ๆˆๅŠŸ๏ผŒ2-ๅค„็†ๅคฑ่ดฅ', `create_time` datetime NOT NULL COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime DEFAULT NULL COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', `remark` varchar(100) DEFAULT NULL COMMENT 'ๅค‡ๆณจ', PRIMARY KEY (`id`), UNIQUE KEY `IDX_CLIENTREQNO_SOURCE` (`client_req_no`,`source`) USING BTREE COMMENT '่ฏทๆฑ‚ๆตๆฐดๅท็ดขๅผ•๏ผŒไธšๅŠกๅ”ฏไธ€' ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COMMENT='ไธšๅŠก่ฏทๆฑ‚ๆตๆฐด่กจ';
-- This code will check for all sections configured for a given column (parameter 1) and load them. DEF moat369_cur_col_id = '&1.' UNDEF 1 DEF moat369_sections_file = '&&moat369_sw_folder./00_sections.csv' -- The variable below will be changed to YES if the code ever enter in 9a DEF moat369_column_print = 'NO' @@&&fc_def_output_file. moat369_col_temp_file 'moat369_temp_onload_section_&&moat369_cur_col_id..sql' HOS &&cmd_grep. -e "^&&moat369_cur_col_id." &&moat369_sections_file. | while read line || [ -n "$line" ]; do echo $line | &&cmd_awk. -F',' '{printf("@"$4"&&""&&moat369_sw_name._"$1".&&""fc_call_secion. "$1" &&moat369_sw_name._"$1"_"$2" "$3"\n")}'; done > &&moat369_col_temp_file. @&&moat369_col_temp_file. @@&&fc_zip_driver_files. &&moat369_col_temp_file. UNDEF moat369_col_temp_file HOS unzip &&moat369_zip_filename. &&moat369_style_css. -d &&moat369_sw_output_fdr. >> &&moat369_log3. HOS if [ "&&moat369_column_print." == "NO" ]; then echo "td.i&&moat369_cur_col_id. {display:none;}" >> &&moat369_sw_output_fdr./&&moat369_style_css.; fi HOS if [ "&&moat369_column_print." == "YES" ]; then echo "td.i&&moat369_cur_col_id. {}" >> &&moat369_sw_output_fdr./&&moat369_style_css.; fi HOS zip -mj &&moat369_zip_filename. &&moat369_sw_output_fdr./&&moat369_style_css. >> &&moat369_log3. UNDEF moat369_cur_col_id moat369_sections_file moat369_column_print
CREATE TABLE all_monetary_01 ( id int, m monetary); INSERT INTO all_monetary_01 (id, m) VALUES (1, \TL10.15); INSERT INTO all_monetary_01 (id, m) VALUES (2, \KHR10.15); INSERT INTO all_monetary_01 (id, m) VALUES (3, \IRP10.15); INSERT INTO all_monetary_01 (id, m) VALUES (4, \RBL10.15); INSERT INTO all_monetary_01 (id, m) VALUES (5, \AUD10.15); INSERT INTO all_monetary_01 (id, m) VALUES (6, \CAD10.15); INSERT INTO all_monetary_01 (id, m) VALUES (7, \BRL10.15); INSERT INTO all_monetary_01 (id, m) VALUES (8, \RON10.15); INSERT INTO all_monetary_01 (id, m) VALUES (9, \EUR10.15); INSERT INTO all_monetary_01 (id, m) VALUES (10, \CHF10.15); select id, to_char(m, 'SC999,999.99'), to_char(m, '999,999.99'), to_char(m, 'S999,999.99'), to_char(m, 'C999,999.99') from all_monetary_01 order by id; truncate all_monetary_01; INSERT INTO all_monetary_01 (id, m) VALUES (11, \DKK10.15); INSERT INTO all_monetary_01 (id, m) VALUES (12, \NOK10.15); INSERT INTO all_monetary_01 (id, m) VALUES (13, \BGN10.15); INSERT INTO all_monetary_01 (id, m) VALUES (14, \USD10.15); INSERT INTO all_monetary_01 (id, m) VALUES (15, \JPY10.15); INSERT INTO all_monetary_01 (id, m) VALUES (16, \GBP10.15); INSERT INTO all_monetary_01 (id, m) VALUES (17, \KRW10.15); INSERT INTO all_monetary_01 (id, m) VALUES (18, \VND10.15); INSERT INTO all_monetary_01 (id, m) VALUES (19, \CZK10.15); INSERT INTO all_monetary_01 (id, m) VALUES (20, \PLN10.15); INSERT INTO all_monetary_01 (id, m) VALUES (21, \SEK10.15); INSERT INTO all_monetary_01 (id, m) VALUES (22, \HRK10.15); INSERT INTO all_monetary_01 (id, m) VALUES (23, \RSD10.15); select id, to_char(m, 'SC999,999.99'), to_char(m, '999,999.99'), to_char(m, 'S999,999.99'), to_char(m, 'C999,999.99') from all_monetary_01 order by id; truncate all_monetary_01; INSERT INTO all_monetary_01 (id, m) VALUES (25, \TL-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (26, \KHR-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (27, \INR-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (28, \RUB-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (29, \AUD-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (30, \CAD-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (31, \BRL-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (32, \RON-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (33, \EUR-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (34, \CHF-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (35, \DKK-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (36, \NOK-10.15); select id, to_char(m, 'SC999,999.99'), to_char(m, '999,999.99'), to_char(m, 'S999,999.99'), to_char(m, 'C999,999.99') from all_monetary_01 order by id; truncate all_monetary_01; INSERT INTO all_monetary_01 (id, m) VALUES (37, \BGN-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (38, \USD-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (39, \JPY-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (40, \GBP-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (41, \KRW-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (42, \VND-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (43, \CZK-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (44, \PLN-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (45, \SEK-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (46, \HRK-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (47, \RSD-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (48, \&-10.15); INSERT INTO all_monetary_01 (id, m) VALUES (49, $10.15); INSERT INTO all_monetary_01 (id, m) VALUES (50, $-10.15); select id, to_char(m, 'SC999,999.99'), to_char(m, '999,999.99'), to_char(m, 'S999,999.99'), to_char(m, 'C999,999.99') from all_monetary_01 order by id; drop all_monetary_01;
<filename>dummy/db/structure.sql -- -- PostgreSQL database dump -- SET statement_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: areas; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE areas ( id integer NOT NULL, ancestry character varying(255), ancestry_depth integer DEFAULT 0, "position" integer, name character varying(255), slug character varying(255), users_count integer DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: areas_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE areas_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE areas_id_seq OWNED BY areas.id; -- -- Name: areas_projects; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE areas_projects ( id integer NOT NULL, area_id integer, project_id integer ); -- -- Name: areas_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE areas_projects_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: areas_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE areas_projects_id_seq OWNED BY areas_projects.id; -- -- Name: areas_users; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE areas_users ( id integer NOT NULL, area_id integer, user_id integer ); -- -- Name: areas_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE areas_users_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: areas_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE areas_users_id_seq OWNED BY areas_users.id; -- -- Name: candidatures; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE candidatures ( id integer NOT NULL, vacancy_id integer, offeror_id integer, user_id integer, name character varying(255), slug character varying(255), text text, state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: candidatures_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE candidatures_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: candidatures_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE candidatures_id_seq OWNED BY candidatures.id; -- -- Name: comments; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE comments ( id integer NOT NULL, commentable_type character varying(255), commentable_id integer, user_id integer, ancestry character varying(255), ancestry_depth integer DEFAULT 0, "position" integer, name character varying(255), text text, state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE comments_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE comments_id_seq OWNED BY comments.id; -- -- Name: friendly_id_slugs; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE friendly_id_slugs ( id integer NOT NULL, slug character varying(255) NOT NULL, sluggable_id integer NOT NULL, sluggable_type character varying(40), created_at timestamp without time zone ); -- -- Name: friendly_id_slugs_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE friendly_id_slugs_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: friendly_id_slugs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE friendly_id_slugs_id_seq OWNED BY friendly_id_slugs.id; -- -- Name: mongo_db_documents; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE mongo_db_documents ( id integer NOT NULL, mongo_db_object_id integer, klass_name character varying(255), name character varying(255), slug character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: mongo_db_documents_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE mongo_db_documents_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: mongo_db_documents_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE mongo_db_documents_id_seq OWNED BY mongo_db_documents.id; -- -- Name: organizations; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE organizations ( id integer NOT NULL, name character varying(255), slug character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE organizations_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE organizations_id_seq OWNED BY organizations.id; -- -- Name: professions; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE professions ( id integer NOT NULL, name character varying(255), slug character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: professions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE professions_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: professions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE professions_id_seq OWNED BY professions.id; -- -- Name: projects; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE projects ( id integer NOT NULL, user_id integer, name character varying(255), slug character varying(255), text text, url character varying(255), state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, product_id character varying(255), organization_id integer ); -- -- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE projects_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE projects_id_seq OWNED BY projects.id; -- -- Name: projects_users; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE projects_users ( id integer NOT NULL, project_id integer, vacancy_id integer, role_id integer, user_id integer, state character varying(255) ); -- -- Name: projects_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE projects_users_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: projects_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE projects_users_id_seq OWNED BY projects_users.id; -- -- Name: roles; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE roles ( id integer NOT NULL, name character varying(255), state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, public boolean DEFAULT false, type character varying(255) ); -- -- Name: roles_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE roles_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE roles_id_seq OWNED BY roles.id; -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE schema_migrations ( version character varying(255) NOT NULL ); -- -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE users ( id integer NOT NULL, name character varying(255), slug character varying(255), rpx_identifier character varying(255), password character varying(255), text text, serialized_private_key text, language character varying(255), first_name character varying(255), last_name character varying(255), salutation character varying(255), marital_status character varying(255), family_status character varying(255), date_of_birth date, place_of_birth character varying(255), citizenship character varying(255), email character varying(255) DEFAULT ''::character varying NOT NULL, encrypted_password character varying(255) DEFAULT ''::character varying NOT NULL, reset_password_token character varying(255), reset_password_sent_at timestamp without time zone, remember_created_at timestamp without time zone, sign_in_count integer DEFAULT 0, current_sign_in_at timestamp without time zone, last_sign_in_at timestamp without time zone, current_sign_in_ip character varying(255), last_sign_in_ip character varying(255), confirmation_token character varying(255), confirmed_at timestamp without time zone, confirmation_sent_at timestamp without time zone, unconfirmed_email character varying(255), failed_attempts integer DEFAULT 0, unlock_token character varying(255), locked_at timestamp without time zone, authentication_token character varying(255), password_salt character varying(255), state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, country character varying(255), interface_language character varying(255), employment_relationship character varying(255), profession_id integer, main_role_id integer, foreign_languages text ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE users_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE users_id_seq OWNED BY users.id; -- -- Name: users_roles; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE users_roles ( id integer NOT NULL, role_id integer, user_id integer, state character varying(255) ); -- -- Name: users_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE users_roles_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: users_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE users_roles_id_seq OWNED BY users_roles.id; -- -- Name: vacancies; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE vacancies ( id integer NOT NULL, type character varying(255), project_id integer, offeror_id integer, author_id integer, user_id integer, project_user_id integer, name character varying(255), slug character varying(255), text text, "limit" integer DEFAULT 1, state character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); -- -- Name: vacancies_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE vacancies_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; -- -- Name: vacancies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE vacancies_id_seq OWNED BY vacancies.id; -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY areas ALTER COLUMN id SET DEFAULT nextval('areas_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY areas_projects ALTER COLUMN id SET DEFAULT nextval('areas_projects_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY areas_users ALTER COLUMN id SET DEFAULT nextval('areas_users_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY candidatures ALTER COLUMN id SET DEFAULT nextval('candidatures_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY comments ALTER COLUMN id SET DEFAULT nextval('comments_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY friendly_id_slugs ALTER COLUMN id SET DEFAULT nextval('friendly_id_slugs_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY mongo_db_documents ALTER COLUMN id SET DEFAULT nextval('mongo_db_documents_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY organizations ALTER COLUMN id SET DEFAULT nextval('organizations_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY professions ALTER COLUMN id SET DEFAULT nextval('professions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY projects ALTER COLUMN id SET DEFAULT nextval('projects_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY projects_users ALTER COLUMN id SET DEFAULT nextval('projects_users_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY roles ALTER COLUMN id SET DEFAULT nextval('roles_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY users_roles ALTER COLUMN id SET DEFAULT nextval('users_roles_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY vacancies ALTER COLUMN id SET DEFAULT nextval('vacancies_id_seq'::regclass); -- -- Name: areas_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY areas ADD CONSTRAINT areas_pkey PRIMARY KEY (id); -- -- Name: areas_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY areas_projects ADD CONSTRAINT areas_projects_pkey PRIMARY KEY (id); -- -- Name: areas_users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY areas_users ADD CONSTRAINT areas_users_pkey PRIMARY KEY (id); -- -- Name: candidatures_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY candidatures ADD CONSTRAINT candidatures_pkey PRIMARY KEY (id); -- -- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY comments ADD CONSTRAINT comments_pkey PRIMARY KEY (id); -- -- Name: friendly_id_slugs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY friendly_id_slugs ADD CONSTRAINT friendly_id_slugs_pkey PRIMARY KEY (id); -- -- Name: mongo_db_documents_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY mongo_db_documents ADD CONSTRAINT mongo_db_documents_pkey PRIMARY KEY (id); -- -- Name: organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY organizations ADD CONSTRAINT organizations_pkey PRIMARY KEY (id); -- -- Name: professions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY professions ADD CONSTRAINT professions_pkey PRIMARY KEY (id); -- -- Name: projects_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY projects ADD CONSTRAINT projects_pkey PRIMARY KEY (id); -- -- Name: projects_users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY projects_users ADD CONSTRAINT projects_users_pkey PRIMARY KEY (id); -- -- Name: roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY roles ADD CONSTRAINT roles_pkey PRIMARY KEY (id); -- -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: users_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY users_roles ADD CONSTRAINT users_roles_pkey PRIMARY KEY (id); -- -- Name: vacancies_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY vacancies ADD CONSTRAINT vacancies_pkey PRIMARY KEY (id); -- -- Name: index_areas_on_ancestry; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_areas_on_ancestry ON areas USING btree (ancestry); -- -- Name: index_areas_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_areas_on_name ON areas USING btree (name); -- -- Name: index_areas_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_areas_on_slug ON areas USING btree (slug); -- -- Name: index_areas_projects_on_area_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_areas_projects_on_area_id ON areas_projects USING btree (area_id); -- -- Name: index_areas_projects_on_area_id_and_project_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_areas_projects_on_area_id_and_project_id ON areas_projects USING btree (area_id, project_id); -- -- Name: index_areas_projects_on_project_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_areas_projects_on_project_id ON areas_projects USING btree (project_id); -- -- Name: index_areas_users_on_area_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_areas_users_on_area_id ON areas_users USING btree (area_id); -- -- Name: index_areas_users_on_area_id_and_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_areas_users_on_area_id_and_user_id ON areas_users USING btree (area_id, user_id); -- -- Name: index_areas_users_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_areas_users_on_user_id ON areas_users USING btree (user_id); -- -- Name: index_candidatures_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_candidatures_on_slug ON candidatures USING btree (slug); -- -- Name: index_candidatures_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_candidatures_on_user_id ON candidatures USING btree (user_id); -- -- Name: index_candidatures_on_user_id_and_vacancy_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_candidatures_on_user_id_and_vacancy_id ON candidatures USING btree (user_id, vacancy_id); -- -- Name: index_candidatures_on_vacancy_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_candidatures_on_vacancy_id ON candidatures USING btree (vacancy_id); -- -- Name: index_candidatures_on_vacancy_id_and_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_candidatures_on_vacancy_id_and_name ON candidatures USING btree (vacancy_id, name); -- -- Name: index_comments_on_ancestry; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_comments_on_ancestry ON comments USING btree (ancestry); -- -- Name: index_comments_on_commentable_id_and_commentable_type; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_comments_on_commentable_id_and_commentable_type ON comments USING btree (commentable_id, commentable_type); -- -- Name: index_friendly_id_slugs_on_slug_and_sluggable_type; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type ON friendly_id_slugs USING btree (slug, sluggable_type); -- -- Name: index_friendly_id_slugs_on_sluggable_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_friendly_id_slugs_on_sluggable_id ON friendly_id_slugs USING btree (sluggable_id); -- -- Name: index_friendly_id_slugs_on_sluggable_type; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_friendly_id_slugs_on_sluggable_type ON friendly_id_slugs USING btree (sluggable_type); -- -- Name: index_mongo_db_documents_on_mongo_db_object_id_and_klass_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_mongo_db_documents_on_mongo_db_object_id_and_klass_name ON mongo_db_documents USING btree (mongo_db_object_id, klass_name); -- -- Name: index_organizations_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_organizations_on_slug ON organizations USING btree (slug); -- -- Name: index_projects_on_organization_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_on_organization_id ON projects USING btree (organization_id); -- -- Name: index_projects_on_product_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_on_product_id ON projects USING btree (product_id); -- -- Name: index_projects_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_projects_on_slug ON projects USING btree (slug); -- -- Name: index_projects_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_on_user_id ON projects USING btree (user_id); -- -- Name: index_projects_users_on_project_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_users_on_project_id ON projects_users USING btree (project_id); -- -- Name: index_projects_users_on_project_id_and_user_id_and_vacancy_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_projects_users_on_project_id_and_user_id_and_vacancy_id ON projects_users USING btree (project_id, user_id, vacancy_id); -- -- Name: index_projects_users_on_role_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_users_on_role_id ON projects_users USING btree (role_id); -- -- Name: index_projects_users_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_users_on_user_id ON projects_users USING btree (user_id); -- -- Name: index_projects_users_on_vacancy_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_projects_users_on_vacancy_id ON projects_users USING btree (vacancy_id); -- -- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_users_on_email ON users USING btree (email); -- -- Name: index_users_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_users_on_name ON users USING btree (name); -- -- Name: index_users_on_profession_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_users_on_profession_id ON users USING btree (profession_id); -- -- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_users_on_reset_password_token ON users USING btree (reset_password_token); -- -- Name: index_users_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_users_on_slug ON users USING btree (slug); -- -- Name: index_users_roles_on_user_id_and_role_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_users_roles_on_user_id_and_role_id ON users_roles USING btree (user_id, role_id); -- -- Name: index_vacancies_on_offeror_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_vacancies_on_offeror_id ON vacancies USING btree (offeror_id); -- -- Name: index_vacancies_on_project_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_vacancies_on_project_id ON vacancies USING btree (project_id); -- -- Name: index_vacancies_on_project_id_and_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_vacancies_on_project_id_and_name ON vacancies USING btree (project_id, name); -- -- Name: index_vacancies_on_project_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_vacancies_on_project_user_id ON vacancies USING btree (project_user_id); -- -- Name: index_vacancies_on_slug; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX index_vacancies_on_slug ON vacancies USING btree (slug); -- -- Name: index_vacancies_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX index_vacancies_on_user_id ON vacancies USING btree (user_id); -- -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version); -- -- PostgreSQL database dump complete -- SET search_path TO "$user",public; INSERT INTO schema_migrations (version) VALUES ('20131009114502'); INSERT INTO schema_migrations (version) VALUES ('20131009114503'); INSERT INTO schema_migrations (version) VALUES ('20131009114504'); INSERT INTO schema_migrations (version) VALUES ('20131009114505'); INSERT INTO schema_migrations (version) VALUES ('20131009114506'); INSERT INTO schema_migrations (version) VALUES ('20131009114507'); INSERT INTO schema_migrations (version) VALUES ('20131009114508'); INSERT INTO schema_migrations (version) VALUES ('20131009114509'); INSERT INTO schema_migrations (version) VALUES ('20131009114510'); INSERT INTO schema_migrations (version) VALUES ('20131009114511'); INSERT INTO schema_migrations (version) VALUES ('20131009114512'); INSERT INTO schema_migrations (version) VALUES ('20131009114513'); INSERT INTO schema_migrations (version) VALUES ('20131009114514');
-- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 27, 2019 at 04:20 AM -- Server version: 10.4.8-MariaDB -- PHP Version: 7.3.11 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: `zerolim` -- -- -------------------------------------------------------- -- -- Table structure for table `blogs` -- CREATE TABLE `blogs` ( `id` int(10) UNSIGNED NOT NULL, `zero_id` int(10) UNSIGNED NOT NULL, `title` varchar(100) DEFAULT NULL, `content` text DEFAULT NULL, `pictures` text DEFAULT NULL, `author` varchar(20) DEFAULT NULL, `status` enum('draft','publish') DEFAULT 'draft', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `blogs` -- INSERT INTO `blogs` (`id`, `zero_id`, `title`, `content`, `pictures`, `author`, `status`, `created_at`, `updated_at`) VALUES (1, 1, 'Hello World', 'Hello World Caption', 'https://www.google.co.id/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png', 'myghan', 'publish', '2019-12-27 02:50:33', '2019-12-27 02:50:58'); -- -------------------------------------------------------- -- -- Table structure for table `customer` -- CREATE TABLE `customer` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL, `address` text NOT NULL, `email` varchar(100) DEFAULT NULL, `telp` varchar(15) NOT NULL, `latitude` varchar(15) DEFAULT NULL, `longitude` varchar(15) DEFAULT NULL, `username` varchar(20) NOT NULL, `password` varchar(255) NOT NULL, `role` enum('mitra','mitra bisnis') NOT NULL DEFAULT 'mitra', `status` enum('activated','deactivated') NOT NULL DEFAULT 'activated', `point` smallint(5) UNSIGNED DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `customer` -- INSERT INTO `customer` (`id`, `name`, `address`, `email`, `telp`, `latitude`, `longitude`, `username`, `password`, `role`, `status`, `point`, `created_at`, `updated_at`) VALUES (1, '<NAME>', 'PMT CA 19A', '<EMAIL>', '082164028264', '', '', 'ghanyersa', '$2y$10$CWTRgt7lGB9e2PjQKsVUBezATAKher1w8asQj0llWtbGQuatMrmtq', 'mitra', 'activated', 0, '2019-12-27 02:42:31', '2019-12-27 02:43:27'); -- -------------------------------------------------------- -- -- Table structure for table `point_history` -- CREATE TABLE `point_history` ( `id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `information` text NOT NULL, `point_before` smallint(5) UNSIGNED DEFAULT NULL, `point_after` smallint(5) UNSIGNED DEFAULT NULL, `point` smallint(6) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `rating` -- CREATE TABLE `rating` ( `id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `zero_id` int(10) UNSIGNED NOT NULL, `information` text DEFAULT NULL, `rate` tinyint(3) UNSIGNED NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `transaction` -- CREATE TABLE `transaction` ( `id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `id_transaction` varchar(10) NOT NULL, `date_request` datetime NOT NULL, `date_deal` datetime DEFAULT NULL, `mitra_name` varchar(20) DEFAULT NULL, `telp` varchar(15) NOT NULL, `address` text DEFAULT NULL, `latitude` varchar(15) NOT NULL, `longitude` varchar(15) NOT NULL, `estimated_weight` float NOT NULL, `real_weight` float DEFAULT NULL, `cost` int(11) NOT NULL DEFAULT 0, `progress` enum('waiting','processing','finish','reschedule') NOT NULL DEFAULT 'waiting', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `transaction_report` -- CREATE TABLE `transaction_report` ( `iteration` tinyint(3) UNSIGNED NOT NULL DEFAULT 1, `transaction_id` int(10) UNSIGNED NOT NULL, `zero_id` int(10) UNSIGNED NOT NULL, `information` text DEFAULT NULL, `pictures` text DEFAULT NULL, `status` enum('processed','rejected','accepted') DEFAULT 'processed', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `transaction_tracking` -- CREATE TABLE `transaction_tracking` ( `progress` enum('waiting','on going','arriving','finish','reschedule','rated') NOT NULL DEFAULT 'waiting', `transaction_id` int(10) UNSIGNED NOT NULL, `zero_id` int(10) UNSIGNED NOT NULL, `information` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `zero` -- CREATE TABLE `zero` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL, `address` text DEFAULT NULL, `email` varchar(100) NOT NULL, `telp` varchar(15) NOT NULL, `latitude` varchar(15) NOT NULL, `longitude` varchar(15) NOT NULL, `username` varchar(20) NOT NULL, `password` varchar(255) NOT NULL, `role` enum('admin','agent') NOT NULL DEFAULT 'agent', `status` enum('activated','deactivated') NOT NULL DEFAULT 'activated', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `zero` -- INSERT INTO `zero` (`id`, `name`, `address`, `email`, `telp`, `latitude`, `longitude`, `username`, `password`, `role`, `status`, `created_at`, `updated_at`) VALUES (1, '<NAME>', 'PMT CA 19A', '<EMAIL>', '082164028264', '', '', 'ghanyersa24', '$2y$10$zV.7rCkglWz9qI/ylulXC.pqScfQuuvXIclsveEb05EY58/O4btpO', 'agent', 'activated', '2019-12-27 02:49:00', '2019-12-27 02:49:00'); -- -- Indexes for dumped tables -- -- -- Indexes for table `blogs` -- ALTER TABLE `blogs` ADD PRIMARY KEY (`id`), ADD KEY `blogs_FKIndex1` (`zero_id`); -- -- Indexes for table `customer` -- ALTER TABLE `customer` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `cutomers_Unique` (`username`); -- -- Indexes for table `point_history` -- ALTER TABLE `point_history` ADD PRIMARY KEY (`id`), ADD KEY `point_history_FKIndex1` (`customer_id`); -- -- Indexes for table `rating` -- ALTER TABLE `rating` ADD PRIMARY KEY (`id`), ADD KEY `rating_FKIndex1` (`zero_id`), ADD KEY `rating_FKIndex2` (`customer_id`); -- -- Indexes for table `transaction` -- ALTER TABLE `transaction` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `transaction_unique` (`id_transaction`), ADD KEY `transaction_FKIndex1` (`customer_id`); -- -- Indexes for table `transaction_report` -- ALTER TABLE `transaction_report` ADD PRIMARY KEY (`iteration`,`transaction_id`,`zero_id`), ADD KEY `transaction_report_FKIndex1` (`zero_id`), ADD KEY `transaction_report_FKIndex2` (`transaction_id`); -- -- Indexes for table `transaction_tracking` -- ALTER TABLE `transaction_tracking` ADD PRIMARY KEY (`progress`,`transaction_id`,`zero_id`), ADD KEY `transaction_tracking_FKIndex1` (`zero_id`), ADD KEY `transaction_tracking_FKIndex2` (`transaction_id`); -- -- Indexes for table `zero` -- ALTER TABLE `zero` ADD PRIMARY KEY (`id`), ADD KEY `zeros_unique` (`username`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `blogs` -- ALTER TABLE `blogs` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `customer` -- ALTER TABLE `customer` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `point_history` -- ALTER TABLE `point_history` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `rating` -- ALTER TABLE `rating` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transaction` -- ALTER TABLE `transaction` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `zero` -- ALTER TABLE `zero` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Constraints for dumped tables -- -- -- Constraints for table `blogs` -- ALTER TABLE `blogs` ADD CONSTRAINT `blogs_ibfk_1` FOREIGN KEY (`zero_id`) REFERENCES `zero` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `point_history` -- ALTER TABLE `point_history` ADD CONSTRAINT `point_history_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `rating` -- ALTER TABLE `rating` ADD CONSTRAINT `rating_ibfk_1` FOREIGN KEY (`zero_id`) REFERENCES `zero` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `rating_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `transaction` -- ALTER TABLE `transaction` ADD CONSTRAINT `transaction_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `transaction_report` -- ALTER TABLE `transaction_report` ADD CONSTRAINT `transaction_report_ibfk_1` FOREIGN KEY (`zero_id`) REFERENCES `zero` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `transaction_report_ibfk_2` FOREIGN KEY (`transaction_id`) REFERENCES `transaction` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `transaction_tracking` -- ALTER TABLE `transaction_tracking` ADD CONSTRAINT `transaction_tracking_ibfk_1` FOREIGN KEY (`zero_id`) REFERENCES `zero` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `transaction_tracking_ibfk_2` FOREIGN KEY (`transaction_id`) REFERENCES `transaction` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; 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>GUSAR1T0/VXDS-DEV-TOOLS<gh_stars>0 DELETE FROM [enum].[PermissionGroup] WHERE [Name] = N'Simple Note Service Access & Management';
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[SQLCop].[test Database and Log files on the same disk]') AND type in (N'P', N'PC')) DROP PROCEDURE [SQLCop].[test Database and Log files on the same disk] GO create procedure [SQLCop].[test Database and Log files on the same disk] as begin -- Written by <NAME> -- July 23rd, 2020 -- Now works with mountpoints set nocount on declare @Output varchar(max) = ''; declare @mytable table (id int identity(1,1) not null, content nvarchar(max)); with [cte] as (select distinct db_name([volsta].[database_id]) collate Latin1_General_CI_AS_KS_WS [DBName] , [mf].[name] collate Latin1_General_CI_AS_KS_WS as [DBFileName] , [mf].[type_desc] collate Latin1_General_CI_AS_KS_WS as [Type] , [mf].[physical_name] collate Latin1_General_CI_AS_KS_WS [PhysicalFileLocation] , [volsta].[logical_volume_name] collate Latin1_General_CI_AS_KS_WS as [LogicalName] , [volsta].[volume_mount_point] collate Latin1_General_CI_AS_KS_WS as [Drive] from [sys].[master_files] as [mf] cross apply [sys].[dm_os_volume_stats]([mf].[database_id], [mf].[file_id]) as [volsta] ) insert into @mytable ( [content] ) select ( [a].[DBName] + ' has the file ' + [a].[DBFilename] + ' which is ' +[a].[Type] +' on Disk ' +[a].[PhysicalFileLocation] + ' the logical Volume Name is ' + [b].[LogicalName] ) as content from [cte] as [a] join [cte] as [b] on [a].[DBName] = [b].[DBName] where [a].[LogicalName] = [b].[LogicalName] and [a].[Type] <> [b].[Type] and [a].[DBName] <> lower('TEMPDB') select @output = coalesce(@output +char(10) + char(13) + content, content) from @mytable if @Output > '' begin set @Output = char(13) + char(10) + 'For more information: ' + 'https://github.com/red-gate/SQLCop/wiki/Database-and-log-on-same-disk' + char(13) + char(10) + char(13) + char(10) + @Output exec [tSQLt].[Fail] @Message0=@Output end end;
<gh_stars>0 SELECT `obelisk`.`id` AS `#`, `ruin_type`.`name` AS `Type`, `obelisk_group`.`name` AS `Group`, `obelisk`.`number` AS `Number`, `ruin_site`.`id` AS `GS#`, `system`.`name` AS `System`, `body`.`name` AS `Body`, (SELECT COUNT(*) FROM `obelisk` INNER JOIN `ruinsite_activeobelisks` ON `ruinsite_activeobelisks`.`obelisk_id` = `obelisk`.`id` WHERE `obelisk`.`codexdata_id` IS NULL AND `ruinsite_activeobelisks`.`ruinsite_id` = `ruin_site`.`id`) AS `# on this site` FROM `obelisk` JOIN `obelisk_group` ON `obelisk_group`.`id` = `obelisk`.`obeliskgroup_id` JOIN `ruin_type` ON `ruin_type`.`id` = `obelisk_group`.`ruintype_id` INNER JOIN `ruinsite_activeobelisks` ON `ruinsite_activeobelisks`.`obelisk_id` = `obelisk`.`id` INNER JOIN `ruin_site` ON `ruin_site`.`id` = `ruinsite_activeobelisks`.`ruinsite_id` JOIN `body` ON `body`.`id` = `ruin_site`.`body_id` JOIN `system` ON `system`.`id` = `body`.`system_id` WHERE `obelisk`.`codexdata_id` IS NULL AND `ruinsite_activeobelisks`.`ruinsite_id` < 9997 ORDER BY `# on this site` DESC, `System`, `Body`, `Type`, `Group`, `Number`;
<filename>GRA.Database/dbo/Stored Procedures/app_LibraryCrosswalk_GetByID.sql ๏ปฟ CREATE PROCEDURE [dbo].[app_LibraryCrosswalk_GetByID] @ID INT AS SELECT * FROM [LibraryCrosswalk] WHERE ID = @ID
<reponame>yudi10/api -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 12, 2021 at 12:49 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: `eapi` -- -- -------------------------------------------------------- -- -- 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 (9, '2014_10_12_000000_create_users_table', 1), (10, '2014_10_12_100000_create_password_resets_table', 1), (11, '2021_04_12_092438_create_products_table', 1), (12, '2021_04_12_092519_create_reviews_table', 1); -- -------------------------------------------------------- -- -- 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 `products` -- CREATE TABLE `products` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `detail` text COLLATE utf8mb4_unicode_ci NOT NULL, `price` int(11) NOT NULL, `stock` int(11) NOT NULL, `discount` 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; -- -- Dumping data for table `products` -- INSERT INTO `products` (`id`, `name`, `detail`, `price`, `stock`, `discount`, `created_at`, `updated_at`) VALUES (1, 'quis', 'Repudiandae dicta qui quam qui est aliquid culpa consequatur. In provident illum ea animi perferendis. Quia exercitationem beatae et facilis et. Dolor nam voluptates earum impedit.', 929, 4, 30, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (2, 'dignissimos', 'Praesentium rerum ullam soluta qui quia voluptatem deserunt exercitationem. Ratione consectetur odio blanditiis unde inventore laboriosam. Officiis dolorum provident commodi eum non enim repudiandae. Similique sint eaque temporibus ea consequatur blanditiis vero.', 194, 1, 3, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (3, 'repudiandae', 'In aut voluptatem cum itaque harum. Qui voluptatem assumenda voluptas facere. Voluptas vitae consequatur ipsum non est ipsam. Provident magni veritatis architecto omnis perferendis.', 988, 4, 5, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (4, 'sed', 'Molestiae modi id doloribus commodi. Illo omnis dolorem aut ut. Voluptatibus ut aperiam aspernatur voluptatibus. Praesentium aut reprehenderit commodi id placeat tempora vel.', 317, 3, 16, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (5, 'autem', 'Iste numquam autem ducimus dolorem. Veniam soluta non qui provident. Nihil quo omnis ipsam eaque et rerum voluptas earum. Est ut voluptatem iusto modi tenetur. Molestiae repellat fugiat cum illo eos.', 668, 5, 8, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (6, 'rem', 'Repellendus vitae voluptatem sit aut excepturi. Vero expedita autem optio vero sed. Quod ipsam culpa possimus et modi sit. Laborum minima ut et esse sint suscipit qui.', 715, 4, 11, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (7, 'quisquam', 'Laborum doloribus sed omnis reiciendis. Quis rem distinctio dicta ut rerum similique. Animi repudiandae aspernatur et eaque voluptatem est totam. Molestiae quo ipsum rerum facere neque.', 558, 9, 28, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (8, 'autem', 'Aut officia velit qui quaerat magnam et. Veritatis incidunt libero totam non. Asperiores sed officiis rerum ad officiis. Ad amet expedita rerum.', 912, 8, 20, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (9, 'accusantium', 'Aperiam occaecati earum molestiae velit sed voluptatibus. Odit voluptatum ex ut molestias. Eum illum similique velit sequi. Neque ullam totam sequi error.', 699, 1, 19, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (10, 'et', 'Perspiciatis voluptate numquam sunt quidem non. Vel eveniet dolor ut quos omnis inventore aperiam. Qui dolore nesciunt consequatur laboriosam et aut nobis.', 234, 1, 23, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (11, 'voluptatem', 'Nisi aut perspiciatis necessitatibus ad rerum dolores. Maxime sed qui aliquid quia totam provident.', 266, 6, 17, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (12, 'error', 'Non voluptate nihil nam eos. Et ab unde qui rerum nemo assumenda. Dicta debitis doloribus facilis aspernatur est et eaque delectus.', 283, 0, 27, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (13, 'sint', 'In quia culpa fugiat aspernatur voluptatum et ut. Eveniet voluptate aspernatur recusandae quia ut. Cupiditate deserunt consequatur in. Ab provident enim aut rerum sunt sit exercitationem.', 397, 6, 3, '2021-04-12 03:46:51', '2021-04-12 03:46:51'), (14, 'reiciendis', 'Animi et ut sint vel explicabo sapiente quibusdam. Sed vel voluptatem voluptas nostrum autem. Voluptatem facere rerum illum.', 241, 9, 27, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (15, 'omnis', 'Corporis molestias neque culpa eaque eum nisi iusto. Blanditiis aut earum occaecati laborum et a odit. Autem error magni et porro fugit dolores.', 777, 1, 23, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (16, 'quisquam', 'Id corrupti non et aut. Enim quo doloremque autem eos quisquam atque. Explicabo est nesciunt molestiae aspernatur dolor. Iste enim molestiae repellat distinctio laudantium quisquam.', 590, 2, 29, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (17, 'voluptas', 'Fugiat qui doloremque sed officia quia. Praesentium quia consequatur blanditiis debitis libero earum. Amet esse aliquam et quidem suscipit tempore blanditiis. Labore voluptas et laudantium vitae sed distinctio perferendis.', 139, 6, 19, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (18, 'consequuntur', 'Sed qui voluptatem dolorum non odit quisquam et. Qui laudantium est adipisci quo vitae quidem odit. Et repellat eveniet odio illo qui sed aut. Quidem fuga numquam harum voluptas molestiae laborum. Sed et omnis corporis ut optio.', 945, 8, 19, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (19, 'aspernatur', 'Cum dolorum mollitia nesciunt. Laudantium repellat soluta aperiam est. Possimus dignissimos qui asperiores aut eius culpa delectus.', 747, 8, 10, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (20, 'placeat', 'Omnis est tenetur fuga pariatur ipsa. Ipsum et ut quod eveniet fugiat deleniti. Iste aut rerum magni qui iure ipsa exercitationem. Officia quisquam debitis voluptatem tempora.', 769, 5, 26, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (21, 'illo', 'Minima reiciendis repellat et iusto et. Fuga suscipit dolor quas ut est omnis suscipit. Doloribus et esse eum. Sint velit veritatis magni sapiente explicabo amet voluptatem quo.', 662, 2, 11, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (22, 'voluptatem', 'Suscipit fuga nostrum omnis quis. Accusantium est quidem alias optio quas expedita. Ut alias voluptatem totam cupiditate voluptatem vel. Eius esse facere omnis ipsa explicabo id perferendis.', 743, 8, 6, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (23, 'reiciendis', 'Voluptas quos consequuntur animi quidem. Fugit facere autem voluptas possimus eius reprehenderit praesentium hic. Cumque et sed distinctio officiis corrupti. Esse est commodi et sit nihil nam. Et quo explicabo eaque voluptatem fugit.', 708, 8, 28, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (24, 'voluptas', 'Beatae neque eum porro. Laborum quia laboriosam quidem sint et dolorum. Beatae id porro commodi at et.', 371, 8, 24, '2021-04-12 03:46:52', '2021-04-12 03:46:52'), (25, 'eveniet', 'Consequatur tempora ea eius est id repudiandae ea repellendus. Quaerat in sint in harum quisquam exercitationem.', 438, 3, 29, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (26, 'consequuntur', 'Alias ullam unde minima sapiente et assumenda. Aut unde quia tenetur cupiditate optio aspernatur porro. Et nemo provident hic dolore velit nisi omnis. Commodi cum officia sequi et.', 237, 7, 4, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (27, 'debitis', 'Saepe facilis et provident distinctio nihil. Odio voluptatem et sint placeat voluptas. Nihil vel magni ducimus exercitationem modi est ducimus. Omnis omnis odit architecto sint aut.', 377, 7, 9, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (28, 'consequatur', 'Est exercitationem et reiciendis. Eum repellendus voluptatum voluptas quaerat. Rerum autem veniam unde voluptatibus nostrum cumque. Esse laboriosam impedit similique laudantium.', 154, 3, 27, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (29, 'velit', 'Neque quam voluptatem consequatur aut nostrum eos voluptas. Voluptate mollitia quas eum est qui. Dolor odio vero rerum natus nulla.', 454, 7, 27, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (30, 'omnis', 'Quos sed error ipsum. Voluptas non beatae praesentium enim. Consequatur dignissimos inventore consequatur reprehenderit. Earum eius eum ut praesentium eveniet.', 204, 4, 9, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (31, 'amet', 'Qui consectetur dolor qui ipsam laborum adipisci quas. Ab ut exercitationem recusandae fugit. Voluptas non incidunt aliquid saepe quam numquam molestiae.', 337, 9, 6, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (32, 'consequatur', 'Voluptatum nam voluptate numquam. Consequatur voluptatem cupiditate adipisci quaerat nam. Aliquam quo ut aut omnis porro harum omnis.', 403, 3, 6, '2021-04-12 03:46:53', '2021-04-12 03:46:53'), (33, 'unde', 'Vel quos dignissimos rerum assumenda accusamus dignissimos eos. Vitae in sed asperiores eos nostrum et aliquam. Dolor perspiciatis sit maiores fugit laudantium temporibus.', 959, 9, 25, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (34, 'ut', 'Architecto velit incidunt est. Enim incidunt qui quisquam doloribus est dolorem mollitia. Nam velit iste enim voluptate voluptas quo. Nemo non dolor asperiores veritatis velit.', 701, 5, 14, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (35, 'repudiandae', 'Minus vitae ipsam sit atque ab error. Veritatis asperiores eum tempora est non. Aut et amet vel aperiam. Et eum eveniet dolores ipsa aliquam voluptate.', 977, 9, 3, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (36, 'est', 'Et iste voluptatem repellendus facere distinctio deserunt. Quidem perspiciatis minima facere. Consequuntur sed deserunt perspiciatis rerum non.', 665, 2, 26, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (37, 'distinctio', 'Est quo autem ut quia ducimus fugiat. Est qui natus quas quisquam rerum.', 844, 7, 13, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (38, 'est', 'Et vero blanditiis eos voluptatibus id. Quo sunt non sunt ut ipsa pariatur excepturi. Veritatis molestiae aut non fugit et. Totam nihil qui unde doloremque. Dolores quaerat cum pariatur.', 506, 5, 9, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (39, 'animi', 'Consequatur eos at ea est sit quis reiciendis. Tempora ut eveniet est. Minima expedita eum molestiae aut consequuntur.', 816, 8, 25, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (40, 'autem', 'Et aliquam laborum architecto numquam reiciendis. Magni a voluptatem illum autem ea. Quos facilis aut sint ut odio.', 716, 0, 18, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (41, 'dolorem', 'Distinctio beatae quo a reprehenderit cupiditate vel quae qui. Neque est expedita occaecati maxime et. Nobis nihil suscipit quae eum enim consequatur praesentium.', 560, 6, 25, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (42, 'voluptates', 'Animi eos molestiae atque voluptas. Sed quidem consequatur reiciendis necessitatibus totam dicta. Nihil debitis delectus ea sint aut.', 728, 6, 24, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (43, 'possimus', 'Ratione quia qui pariatur porro facere. At velit debitis dolores assumenda dolores iusto qui. Ex sunt iusto ea maiores est iure sequi. Facilis quod dolor ullam quia cupiditate quia modi.', 249, 7, 9, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (44, 'animi', 'Voluptas consequatur provident dolorum. Rerum sequi et dolore repudiandae.', 929, 3, 7, '2021-04-12 03:46:54', '2021-04-12 03:46:54'), (45, 'facere', 'Id repudiandae ut est amet molestias quaerat. Cumque quis eos asperiores debitis. Qui ducimus incidunt dolorum facere excepturi nihil.', 493, 2, 5, '2021-04-12 03:46:55', '2021-04-12 03:46:55'), (46, 'est', 'Rerum dolorem fugit sint sed ullam in soluta. Optio id blanditiis veritatis atque. Deleniti animi aut et ipsam nam.', 136, 1, 13, '2021-04-12 03:46:55', '2021-04-12 03:46:55'), (47, 'molestias', 'Temporibus enim natus culpa. Pariatur enim officiis autem explicabo. Debitis illo aut recusandae. Magni omnis natus et rerum eum nihil animi sed.', 705, 0, 6, '2021-04-12 03:46:55', '2021-04-12 03:46:55'), (48, 'et', 'Odio qui dolores et et facilis. Ea ex excepturi reprehenderit ex architecto vero quisquam. Quam porro suscipit ea dignissimos.', 507, 2, 29, '2021-04-12 03:46:55', '2021-04-12 03:46:55'), (49, 'ea', 'Dolores beatae ipsam quia sunt ducimus. Deleniti cum beatae repudiandae esse delectus qui quas quidem. Modi aut quae excepturi cupiditate ut pariatur et eos. Maiores labore incidunt animi exercitationem molestiae mollitia nostrum.', 685, 3, 20, '2021-04-12 03:46:55', '2021-04-12 03:46:55'), (50, 'architecto', 'Provident illo eos tenetur dolorem. Reprehenderit molestiae nihil totam omnis vero sit molestias. Dolorem reprehenderit maxime sed sit quo sed. Magnam quia vero officia veritatis dolor quod.', 274, 5, 27, '2021-04-12 03:46:55', '2021-04-12 03:46:55'); -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` int(10) UNSIGNED NOT NULL, `product_id` int(10) UNSIGNED NOT NULL, `customer` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `review` text COLLATE utf8mb4_unicode_ci NOT NULL, `star` 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; -- -- Dumping data for table `reviews` -- INSERT INTO `reviews` (`id`, `product_id`, `customer`, `review`, `star`, `created_at`, `updated_at`) VALUES (1, 50, 'Ms. <NAME> Jr.', 'Eaque ipsam excepturi autem fugit recusandae sit. Eveniet id dolorem est omnis dolorem dolor. Sed sequi voluptas nam hic omnis sit in.', 5, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (2, 48, 'Ms. Name D\'Amore', 'Enim amet voluptatem nihil molestiae. Repellendus totam nihil accusamus veniam vel. Est id perspiciatis mollitia tempora aut veniam. Ut magnam quas consequatur labore possimus quia.', 5, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (3, 21, '<NAME>', 'Fuga qui eum quae perferendis sunt occaecati voluptatem. Dolorem recusandae velit possimus dolores vel quam et. Sit amet magni quo quam vel earum esse. Placeat ipsa non doloribus deserunt dolor illo.', 1, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (4, 40, '<NAME> PhD', 'Consequatur quo itaque enim quibusdam qui. Magni magnam ipsum quia. Dicta dignissimos ut sapiente.', 1, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (5, 32, '<NAME>', 'Laborum error tempore nesciunt sint ex. Repellendus delectus alias aliquid molestiae maxime et. Non praesentium commodi delectus a quae.', 4, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (6, 8, 'Miss <NAME> DVM', 'Exercitationem explicabo qui nesciunt sequi voluptatem rem et. Ut cupiditate magni natus voluptate a consequatur alias. Consequatur qui modi ad. Reiciendis sunt ut corrupti sed quia officia et.', 5, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (7, 48, '<NAME>', 'Et sed aut a cumque quia. Quisquam est quisquam non aut. Maxime distinctio labore quod impedit sapiente voluptatem perferendis.', 2, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (8, 11, '<NAME>', 'Est sunt repellat vitae in accusantium et vitae. Odit ex voluptate doloremque doloremque. Quis esse deleniti illum in corrupti a qui.', 5, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (9, 7, '<NAME> IV', 'Rem asperiores aut esse soluta. Beatae consectetur et similique. Et eos repellendus quidem molestiae et rem. Molestiae ut ea expedita recusandae. Repellat rerum minus iusto similique quos.', 2, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (10, 37, 'Prof. <NAME> PhD', 'Sequi sunt repellat qui doloremque assumenda mollitia. Iste ut voluptatem ea natus magnam aperiam. Et non molestias ab nisi. Quaerat optio laboriosam cumque nihil at.', 5, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (11, 21, 'Dr. <NAME>', 'Sint hic consequuntur voluptatibus. Facere harum eaque consectetur cumque. Itaque modi tempore omnis voluptates est voluptatum qui. Corporis aut eligendi laborum eos deserunt dicta consequatur.', 1, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (12, 5, '<NAME>', 'Quisquam qui ullam inventore reiciendis necessitatibus quasi ut officiis. Pariatur quibusdam similique illum molestias quam nemo iste.', 1, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (13, 1, 'Prof. <NAME> MD', 'Aut nisi eum et. Voluptates cumque culpa omnis sequi harum eligendi quae. Reiciendis sit accusantium consequatur dolores sed voluptas aut. Quia repellendus recusandae facilis.', 0, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (14, 32, 'Dr. <NAME>', 'Dolorem nam nihil voluptas. Pariatur alias laudantium sit in. Ipsa totam explicabo ex sint voluptas nulla rerum ab. Omnis sit rem repellat eveniet est laboriosam rem.', 1, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (15, 33, '<NAME>', 'Ullam est aut provident eveniet fugiat magni est. Ducimus rerum aut consequatur labore nobis qui at. Fugit voluptatem mollitia rerum numquam. Rem magnam dolorem non quis fuga animi.', 4, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (16, 43, 'Mr. <NAME> MD', 'Commodi voluptatem enim excepturi id. Et molestias iste ab odio iusto. Voluptas et qui inventore hic harum. Ea labore ut tempore nam occaecati aut.', 2, '2021-04-12 03:46:56', '2021-04-12 03:46:56'), (17, 30, '<NAME>', 'Repudiandae accusantium sunt pariatur corrupti deserunt nam in. Ut sit quam sequi vero sint. Explicabo ut commodi possimus tempore occaecati velit omnis. Magnam tempora dignissimos rerum et. Sit quas tempore eveniet voluptas ea vel repellendus.', 5, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (18, 40, '<NAME>', 'Aspernatur reprehenderit ea odit distinctio nihil non. Molestiae quasi non ratione in magnam in debitis ut. Consequatur quisquam eum facilis dolores hic quaerat officia. Saepe non quia laborum ut. Ratione mollitia id id quia culpa possimus ratione qui.', 5, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (19, 28, '<NAME> IV', 'Et nemo ex et dolores. Voluptatem animi occaecati alias eum quidem velit eligendi. Rerum hic qui autem similique quis autem. Ipsa non nihil vel quasi eos.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (20, 49, 'Ms. <NAME> Jr.', 'Voluptate ipsam aut officiis omnis et quas reiciendis. Quidem similique illum in repellat. Et repellat nemo officiis. Molestiae ut perferendis ratione dicta.', 2, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (21, 10, '<NAME> PhD', 'Et et asperiores quasi error aperiam architecto numquam quasi. Dolores tempore facere tempora doloremque tenetur odit. Maxime enim quia et iste.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (22, 20, '<NAME> IV', 'Laudantium provident mollitia et temporibus. Vel est ullam at neque. Laudantium dicta magni quisquam eligendi accusamus qui. Incidunt ea non aliquid mollitia animi. Dicta at molestiae dolores dolores.', 4, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (23, 6, '<NAME> II', 'Cupiditate molestiae cum labore facilis consequatur. Eos perspiciatis enim est dolor labore autem. Reprehenderit distinctio et nostrum hic sunt ut nihil. Nesciunt voluptas et sit debitis.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (24, 39, '<NAME>', 'Quia iste excepturi qui sit aliquid. Enim recusandae aut similique corrupti quasi tempora quas. Architecto similique eveniet maiores voluptatem dolorem ut aut.', 5, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (25, 40, '<NAME>', 'Ullam aliquam vel quis quis. Ipsa voluptatem praesentium et autem ad exercitationem perspiciatis. Maiores odio sapiente cum et quo. Quidem laudantium cumque reiciendis vel ab.', 3, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (26, 22, '<NAME> DDS', 'Et soluta et est laudantium ut. Ex dolorem quis nostrum quis voluptate neque est pariatur. Vitae nesciunt corrupti sunt et sed sit neque soluta.', 1, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (27, 6, 'Ms. <NAME> DDS', 'Maxime et sequi occaecati architecto magni voluptatem. Nesciunt sit qui pariatur omnis. Et quis incidunt quos explicabo. Cumque omnis dignissimos doloremque cumque totam et error.', 3, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (28, 41, '<NAME>', 'Ut laborum cupiditate officiis ut nesciunt atque ipsam. Voluptas sed dolore debitis quidem delectus sint.', 4, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (29, 48, '<NAME>', 'Nam perferendis dignissimos enim alias. Necessitatibus doloribus cum perspiciatis dignissimos sequi et dignissimos. Corporis reiciendis libero debitis qui perspiciatis enim dolorum.', 3, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (30, 28, '<NAME>', 'Sunt quis sit dolorem. Similique velit possimus cum ipsa quisquam sit. Non est suscipit voluptate consequatur omnis culpa. Quis eum quod repellendus ipsum odio.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (31, 38, 'Dr. <NAME>', 'Ut non a aliquam praesentium incidunt ipsa laborum. Molestiae ipsa temporibus molestiae excepturi. Non ut voluptatum esse non voluptatem explicabo neque quo.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (32, 48, 'Prof. <NAME> MD', 'Deserunt repudiandae adipisci rerum aut et. Sit nemo autem sequi ipsum nobis. Consequatur saepe est cum omnis voluptates. Repudiandae iure et deserunt consequatur sint fuga.', 3, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (33, 2, 'Candice Veum DVM', 'Velit ab sint in nobis. Omnis perspiciatis perferendis cum minima dolorem.', 0, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (34, 47, 'Mr. <NAME>', 'Quia eius at facilis reprehenderit est. Corrupti rerum pariatur voluptas odio at. Voluptas possimus eligendi iste eum ex officia dolore. Nisi aliquam facilis velit et voluptatem placeat omnis commodi.', 4, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (35, 17, '<NAME>', 'Sunt nulla iure et aliquid perferendis officia. Expedita ipsum magnam sunt asperiores quaerat velit. Dignissimos voluptas asperiores debitis aliquam consequatur.', 2, '2021-04-12 03:46:57', '2021-04-12 03:46:57'), (36, 40, '<NAME>', 'Sit molestiae ipsam repellat fugiat doloremque dignissimos libero. Autem alias sit facilis molestiae id ratione aut.', 3, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (37, 47, '<NAME>', 'Sit amet aliquam esse incidunt animi. Velit placeat sint sit impedit sit est sed iusto. Saepe est maiores unde voluptates magnam qui quo.', 0, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (38, 42, '<NAME>', 'Sed possimus vitae explicabo dolor. Unde tempore amet ut quas. Ut illo magnam et sed fuga hic. Voluptatem laborum ab voluptatem sunt soluta eum dolor. Ducimus animi aut aspernatur et aperiam.', 4, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (39, 50, '<NAME>', 'Pariatur minima amet itaque reiciendis similique. Repudiandae architecto ut dignissimos aspernatur consequatur. Expedita ducimus natus quia voluptatem tenetur ea. A et explicabo sint harum ipsa.', 5, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (40, 40, '<NAME>', 'Voluptas laborum ut eveniet dicta aut. Voluptatibus voluptatibus est dolor non accusantium nesciunt laboriosam. Alias aperiam minus non odit. Nesciunt enim quae eaque mollitia ipsa ad voluptatibus nihil.', 4, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (41, 9, 'Dr. <NAME> DDS', 'Facilis ut nemo sint autem. Necessitatibus dolore aut suscipit. Harum temporibus et optio non accusantium. Et officia sit odio libero.', 2, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (42, 41, '<NAME>', 'Aliquid perferendis rerum rerum autem qui odit molestiae. Nihil quis et sunt minus. Et quis quisquam dolorem eum iste a hic. Sunt aut sunt iste officiis adipisci quia omnis.', 5, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (43, 18, 'Dr. <NAME> DVM', 'Consectetur eos dolorem in quos est cum. Et omnis provident nam sint recusandae. Atque blanditiis sed dolorum. Enim provident eum sed sit voluptates voluptatem.', 5, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (44, 30, '<NAME>', 'Omnis ut amet corporis unde fugiat laudantium. Quae consectetur voluptas commodi blanditiis cum hic neque. Enim et excepturi aliquid qui. Cumque beatae minima est eius error.', 4, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (45, 14, '<NAME>', 'Velit accusantium ut et et asperiores aspernatur dolor. Omnis sit nostrum ipsa corporis deserunt quaerat totam. A deserunt harum labore labore et cumque molestiae.', 3, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (46, 26, '<NAME> Jr.', 'Iusto qui ducimus eum quis. Harum corporis quod aut dolore aspernatur voluptatem voluptas. Vel distinctio voluptates fugiat ex provident.', 2, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (47, 30, '<NAME>', 'Qui deserunt cumque at ea sed sed consequatur. Et consectetur assumenda voluptas sit. Provident qui sed a et illo qui esse.', 2, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (48, 50, '<NAME>', 'Ea incidunt pariatur pariatur nesciunt qui. Dolores qui illum quidem quibusdam deleniti dolores harum voluptates.', 0, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (49, 48, '<NAME> MD', 'Iure porro corporis blanditiis quidem qui eos dolore. Et vel minus et assumenda et ut. Earum adipisci non deleniti corrupti voluptatem et quod assumenda. Doloremque ut ea culpa quidem.', 2, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (50, 15, '<NAME>', 'Beatae quos sapiente at. Rem tempora cumque deleniti possimus. Similique est quisquam corporis laborum iste beatae sed.', 1, '2021-04-12 03:46:58', '2021-04-12 03:46:58'), (51, 15, '<NAME> II', 'Officiis aut voluptatibus tenetur ipsum recusandae. Qui cupiditate consectetur cum est quibusdam voluptatem. Laudantium magni mollitia minus praesentium quisquam quia quae sed. Id aut quo accusantium ullam.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (52, 12, '<NAME>', 'Id nesciunt ipsam tempore explicabo provident. Nobis vitae in fugit eos optio ex non. Sunt ut nihil eum sed aut.', 4, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (53, 42, 'Mrs. <NAME> V', 'Consequuntur corrupti ut ut illum. Id illum reprehenderit quia sed ut hic animi. Dolore porro et repellat provident quo quidem maiores. Quas cum doloremque id et dolore et.', 2, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (54, 29, '<NAME>', 'Culpa temporibus beatae quis aliquid. Aut occaecati aut sint porro dolores velit recusandae. Ea possimus quasi ut dolor esse.', 5, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (55, 39, '<NAME>', 'Voluptatem excepturi non molestiae enim. Beatae nihil omnis quis dignissimos officia cumque quia et. Dolorem adipisci reprehenderit omnis illo vel possimus. Explicabo ullam id numquam unde.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (56, 12, '<NAME>', 'Dolorem reiciendis atque quia deserunt dolor. Facilis porro velit sit qui inventore. In est dolorem ducimus perferendis sit suscipit in aut. Quae sunt reiciendis modi voluptas doloribus et voluptatem.', 1, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (57, 34, '<NAME>', 'Quisquam ut sequi omnis assumenda. Nulla alias molestiae aspernatur autem hic. Dolores at minus quaerat unde dolorem est. Sit vero quo enim et et consectetur consequuntur.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (58, 43, '<NAME>', 'Omnis aliquid corrupti ipsum soluta rerum nulla at. Laborum natus saepe molestiae et dicta. Voluptas quae numquam commodi perspiciatis at error quae natus. Unde corrupti voluptates ea corporis dignissimos.', 4, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (59, 1, '<NAME> DVM', 'Aliquam asperiores nesciunt sunt nihil. Et laborum repellat necessitatibus in. Ad soluta numquam quo veritatis a. Nihil aut sint fugiat.', 0, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (60, 13, '<NAME>', 'Neque accusamus est et repudiandae dicta temporibus necessitatibus. Est ipsam sed blanditiis. In odio id voluptatem voluptatem similique accusamus.', 4, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (61, 23, '<NAME>', 'Eum est in quod temporibus. In ea quam labore qui praesentium error aliquid. Delectus necessitatibus accusamus cum non occaecati. Incidunt velit nihil non odit quam nobis impedit.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (62, 18, '<NAME>', 'Architecto quis officiis perferendis repellat. Deserunt saepe sed sit autem voluptatum doloremque qui. Enim ipsam ipsum et. Voluptatem dolorem qui veniam consequuntur est sed.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (63, 39, 'Prof. <NAME>', 'Et commodi deleniti quidem in. Voluptatem commodi non illo in.', 0, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (64, 18, '<NAME>', 'Et consequatur nihil sit nam vitae aut. Eligendi nihil quasi ut praesentium ad. Officia voluptas numquam sint vel facere rem culpa. Possimus sint ut sapiente magni.', 1, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (65, 27, 'Prof. <NAME>', 'Deserunt nulla repellat non autem beatae. Consequatur aliquam hic ut qui nemo. Qui deleniti in dolores similique explicabo.', 5, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (66, 28, '<NAME>', 'Repudiandae minima laboriosam est quidem mollitia itaque. Voluptatem voluptatibus sint maiores aperiam et quia. Sunt sapiente est dolorem commodi molestiae tempore. Incidunt est consectetur atque.', 0, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (67, 38, 'Mr. <NAME> Sr.', 'Et voluptatum dolorem et maiores ut fugit. Ipsum odio at dolorum quod. Dolores perspiciatis magnam numquam libero odit.', 3, '2021-04-12 03:46:59', '2021-04-12 03:46:59'), (68, 40, '<NAME> Jr.', 'Sed vel nemo optio est. Beatae tenetur ex totam. Asperiores adipisci nihil rerum dolor.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (69, 46, '<NAME>', 'Totam id recusandae error inventore id nam magni ipsam. Voluptatem amet nihil expedita quam recusandae eius. Minus et iusto quidem libero.', 1, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (70, 26, '<NAME>', 'Et sint eum ipsum quo nostrum hic. Aut cupiditate amet expedita molestias voluptas explicabo ducimus. Ut quod enim commodi consequuntur porro hic aliquam. Velit vel laborum itaque tempore commodi consequatur aliquam. Ut voluptas ut eos veniam.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (71, 13, '<NAME>', 'Voluptas error atque et. Praesentium dolorem consequatur rem sed eos et. Excepturi et excepturi expedita praesentium enim vel quae. Voluptatem ratione magni et qui.', 2, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (72, 44, 'Prof. <NAME>', 'Voluptatem omnis asperiores id et ex est. Consequatur atque vitae sed impedit. Cumque omnis consequatur quia placeat eos quia. Labore facilis dicta laborum est maiores possimus voluptatibus.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (73, 28, 'Dr. <NAME>', 'Qui dolor et corrupti velit. Non maxime laudantium qui excepturi pariatur id sed. Maiores molestiae voluptatem eveniet aut quod praesentium non.', 0, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (74, 3, '<NAME>', 'Ipsam id et natus magnam doloribus possimus non. Aperiam dolores et occaecati ut. Voluptatibus est omnis necessitatibus dolores maxime. Qui voluptatem nesciunt ut ut omnis repudiandae.', 1, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (75, 48, '<NAME>', 'Veniam porro rerum quaerat eum. Voluptate nostrum quia libero beatae. Fuga eos consectetur et quidem. Dolor quia repellat nesciunt consequatur maiores.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (76, 10, 'Dr. <NAME> III', 'Culpa esse et necessitatibus eveniet quisquam. Ipsum repellendus corporis iure exercitationem iure qui. Voluptas delectus ducimus ut provident excepturi.', 0, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (77, 8, '<NAME>', 'Sit similique qui cumque error doloribus perferendis. Quia et ut at inventore est voluptas rerum. Quia voluptatibus eligendi quia consectetur nesciunt. Necessitatibus animi aut excepturi et.', 1, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (78, 13, '<NAME>', 'Aut quasi pariatur nulla animi quo. Voluptatem possimus deserunt voluptate nulla aperiam. Praesentium quia autem itaque atque tenetur praesentium.', 5, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (79, 3, '<NAME>', 'Sunt autem veniam ea quibusdam quae. Cum et ea in veritatis sed. Beatae dolor accusantium ut quibusdam.', 2, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (80, 29, 'Prof. <NAME> PhD', 'Laborum hic est quis et magni blanditiis et autem. Molestiae dolorem inventore quod nemo sed debitis. Et iste dignissimos ab et. Modi autem numquam impedit nisi perferendis.', 0, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (81, 4, '<NAME>', 'Ea rerum praesentium quos sed aperiam tenetur. Voluptas eum et voluptas aut quam. Et unde necessitatibus voluptatem et quo perferendis est nisi.', 0, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (82, 21, '<NAME>', 'Accusantium dolorem consectetur et ut possimus laboriosam voluptas. Ut doloremque cum harum voluptatum. Laudantium enim in dolorem accusamus eligendi autem quo consequatur.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (83, 16, '<NAME>', 'Mollitia recusandae atque doloribus ipsum voluptatum voluptatem odit. Illum tenetur quia similique delectus corrupti velit. Recusandae at numquam sint voluptates sint iure. Ab qui nisi sit illum velit illum molestias. Corrupti excepturi laudantium at architecto similique.', 4, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (84, 16, '<NAME>', 'Repellat nemo reprehenderit vero quos est commodi. Aliquam in dolorum quis porro sit. Commodi quia eum ea ipsum.', 1, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (85, 15, '<NAME>', 'Non atque harum id eos dolorem nostrum earum. Aspernatur veniam doloribus qui exercitationem neque. Aut incidunt eius ipsa. Eaque distinctio reprehenderit distinctio nemo praesentium sit ducimus quam.', 5, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (86, 5, '<NAME> MD', 'Est perspiciatis non eum quo eum qui. Ex rem dolorem saepe qui et rem voluptates. Qui omnis magnam omnis mollitia error.', 1, '2021-04-12 03:47:00', '2021-04-12 03:47:00'), (87, 31, '<NAME>', 'Sit nihil et cupiditate expedita consequatur. Sed iusto odit ut voluptas. Exercitationem qui qui eligendi consequuntur.', 2, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (88, 8, '<NAME>', 'Accusamus aperiam quis aspernatur quae eius aspernatur quo. Repellendus sed qui dolores est nulla. Dolore id nulla quod. Excepturi minima et repellat nemo expedita dolorem.', 3, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (89, 20, '<NAME>', 'Corrupti ut voluptate magni hic voluptatem sit sint. Velit voluptate labore et dignissimos et. Aut ab beatae non odio vel. Neque fugiat quibusdam quos et. Sit quia doloremque dicta tempore dolores similique.', 5, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (90, 13, '<NAME> DDS', 'Soluta ut ducimus repellendus et qui consequatur. Et consequatur architecto sint ipsa ut sint. Rerum vero facere repellat eum dolore.', 4, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (91, 33, '<NAME>', 'Beatae modi sunt nisi esse ipsam. Qui dicta eos quia iusto sint dolore. Similique labore enim aliquam quae rerum et in sequi. Omnis est cum consequuntur nisi quam ipsa beatae.', 2, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (92, 42, '<NAME>', 'Eligendi placeat distinctio laboriosam et incidunt est qui. Voluptatem magni quae qui. Perspiciatis dolore et esse at corrupti omnis. Consequatur rerum asperiores ad in et praesentium eos est.', 3, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (93, 45, '<NAME>', 'Expedita quia earum harum excepturi possimus voluptas. Porro omnis voluptas odit eos ut ipsum omnis culpa. Distinctio laudantium voluptas quos soluta. Et et qui in dignissimos. Et et esse harum est est iste natus.', 1, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (94, 19, '<NAME>', 'Ipsum voluptatibus dolorem beatae quaerat saepe. Qui id aut ut illum quae consequatur. Adipisci doloribus optio quia earum est. Dolorem aperiam reprehenderit quae quia alias.', 1, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (95, 20, 'Prof. <NAME>', 'Dolor consectetur veritatis aperiam deleniti nemo dicta ipsa. Earum molestiae illum et omnis. Quis qui eos hic atque. Quo aperiam iusto quibusdam quos aperiam reprehenderit quia autem.', 1, '2021-04-12 03:47:01', '2021-04-12 03:47:01'), (96, 40, '<NAME>', 'Reiciendis ab rerum quos amet aspernatur. Qui eligendi deleniti quia nostrum non. Incidunt eius laboriosam illum reiciendis harum ipsum. Odit occaecati qui dolores consequatur.', 3, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (97, 19, '<NAME> V', 'Est quibusdam aut occaecati assumenda. A eaque aut omnis ea. Provident velit quasi commodi quam consequatur aut quia. Accusamus enim sit eligendi exercitationem.', 3, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (98, 7, '<NAME>', 'Quia ducimus enim ipsum aut minus. Omnis voluptas eius sit eius dolorum vero nisi. Et temporibus recusandae dolor cum. Eveniet quia fugit id.', 5, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (99, 35, 'Mr. <NAME>', 'Maiores veniam ab ut eaque. Cum et dolores ea illo voluptas libero. Veniam ea vero officia mollitia.', 0, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (100, 30, '<NAME>', 'Est impedit quam voluptatem sint eaque. Velit et porro accusantium nisi neque molestias nemo. Est perspiciatis accusantium aliquid impedit asperiores et. Cumque hic qui officia in earum.', 4, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (101, 9, 'Dr. <NAME> DVM', 'Numquam voluptas consequatur delectus quasi accusamus alias. Architecto et facere esse sequi in rem sit autem. Consequatur ut amet voluptatem iste architecto quaerat maxime.', 4, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (102, 47, '<NAME> Sr.', 'Unde dolor in sed doloremque itaque. Ducimus aspernatur impedit architecto nulla ratione praesentium. Ipsa et quia officia eaque qui voluptatem.', 5, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (103, 35, '<NAME>', 'Voluptates consequatur suscipit ipsam et labore. Eaque exercitationem iste error laboriosam doloremque. Atque eum nobis soluta optio ad.', 4, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (104, 47, 'Dr. <NAME>', 'Aut eum sunt vel et et dolorem. Velit reprehenderit deleniti sapiente ad. Sunt eum aliquid id ut commodi possimus repellendus. Ipsum dolore qui reprehenderit et.', 0, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (105, 44, '<NAME>', 'Non non ratione et dolore voluptates maxime laboriosam. Quia vero quasi temporibus autem autem quis sed facilis. Saepe nisi quia nobis eaque ipsum qui maiores harum. Aliquam et quis dolore temporibus.', 3, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (106, 33, '<NAME>', 'Et itaque non reiciendis voluptas non distinctio. Minima officia deleniti dolor aut est praesentium est. Voluptate expedita fugiat consequatur alias unde animi sit laudantium.', 5, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (107, 1, 'Miss <NAME> V', 'Illo autem vel maiores odio exercitationem aspernatur. Consequuntur ratione vel illum ratione dolore recusandae. Consequatur odit sed error cumque deleniti ut aliquam quo.', 3, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (108, 32, '<NAME>', 'Iste ut dolorum temporibus sed. Sunt nemo ut reiciendis itaque nihil dolore. Repellendus impedit voluptas voluptas quia sunt dolorum. Excepturi esse perspiciatis ducimus veritatis hic voluptatum.', 5, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (109, 5, '<NAME>', 'Numquam soluta quam et at mollitia ut ullam. Nobis rem quam sint voluptatem reprehenderit est vero. Sit iste odio quis earum. Commodi provident soluta deserunt debitis. Veniam sed est exercitationem.', 2, '2021-04-12 03:47:02', '2021-04-12 03:47:02'), (110, 27, 'Ms. <NAME> MD', 'Laboriosam perferendis voluptas fugiat porro et. Quo cupiditate qui consequatur ducimus. Voluptas numquam provident non molestiae ipsam voluptate.', 2, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (111, 31, '<NAME>', 'Similique adipisci voluptas ut hic velit. Odio rerum ut enim vel aut tempore eligendi. Sint repellendus enim necessitatibus harum nostrum rerum laboriosam tempore. Veniam sed quam culpa itaque omnis.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (112, 11, '<NAME>', 'Sed consectetur ea et tenetur. Voluptatum perspiciatis eaque laboriosam eum velit natus. Rerum asperiores dolorem et. Est nam laboriosam qui sed voluptate cupiditate similique.', 2, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (113, 47, '<NAME>', 'Earum molestiae qui placeat. Aperiam sint culpa voluptatem voluptas. A corrupti natus possimus soluta enim aut incidunt. Voluptas qui autem culpa optio aut enim velit et.', 5, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (114, 43, 'Dr. <NAME> IV', 'Aut reiciendis magni similique architecto nesciunt molestiae harum. Inventore officia sunt nemo corrupti id. Corrupti aliquam provident consequatur odit aut.', 2, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (115, 34, '<NAME>', 'Culpa rerum repellendus culpa voluptas quia fuga et maxime. Omnis natus quis voluptatum vel totam. Quia dolores cupiditate temporibus libero. Id veniam voluptatum enim qui.', 3, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (116, 49, '<NAME>', 'Dignissimos quia excepturi repellat. Eius commodi harum doloremque in assumenda quod vel. Itaque at excepturi voluptatem animi cupiditate exercitationem. Natus nisi eum excepturi.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (117, 17, 'Dr. <NAME>', 'Qui culpa maiores voluptatibus illo alias aut. Voluptatem natus consectetur rem consequatur. Necessitatibus quos aliquam optio eos minus eos.', 4, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (118, 44, '<NAME>', 'Vero alias ut cumque quo. Quaerat dignissimos omnis voluptas. Occaecati sunt eos sunt magnam at quidem aut. Dolorem a iure voluptatibus ratione tempora. Commodi consequatur laboriosam nihil adipisci ipsam et qui.', 0, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (119, 20, 'Al Heathcote I', 'Dolorem aliquam natus quo fugit ad sapiente. Et dolore dolorem commodi non animi. Cupiditate voluptas quas qui voluptates aliquid quasi neque. Officia error voluptas facere iure error ipsa libero neque.', 2, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (120, 4, '<NAME>', 'Tenetur voluptatem sed repellendus. Labore a quo blanditiis aspernatur magnam numquam. Reprehenderit ex ea dicta aliquid aut iusto. Atque nobis incidunt qui et occaecati vel sunt.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (121, 3, '<NAME>', 'Et error magni blanditiis omnis. Eius laboriosam repudiandae iste esse esse officiis sunt. Qui ducimus hic qui odit vel doloremque. Est non est impedit et praesentium similique qui.', 5, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (122, 7, '<NAME> III', 'Reiciendis adipisci aspernatur quia neque. Necessitatibus ea corrupti voluptates dolorum et. Quis quia voluptas saepe quisquam.', 5, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (123, 41, 'Miss <NAME> PhD', 'Nisi saepe temporibus qui et sed. Sint et possimus rerum at voluptatum. Et unde soluta hic harum animi rerum sunt. Repudiandae accusamus sequi qui iste reiciendis molestiae unde.', 4, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (124, 36, '<NAME>', 'Et rem repudiandae amet eaque sit. Qui omnis fuga voluptas omnis minima itaque hic. Et autem impedit nisi qui deserunt aperiam eius. Facere rem voluptatibus corrupti vel.', 5, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (125, 46, '<NAME> II', 'Maiores officia esse quia sed at vero modi. Doloribus qui dolores quia cumque odio eum unde.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (126, 43, '<NAME> II', 'Iste voluptatem voluptatum earum fuga mollitia. Nam rerum voluptates dolores eos deleniti. Impedit nihil nesciunt excepturi nihil et delectus.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (127, 5, '<NAME>', 'Impedit accusantium iste aspernatur maiores quis. Est sequi eius velit dolore veniam. Quae aut sequi error dolor iure laborum.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (128, 44, '<NAME>', 'Quisquam quo voluptas fugit eum sit est et. Cupiditate totam molestiae repellendus minima natus. Rerum reiciendis sit quis in perferendis.', 5, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (129, 20, '<NAME>', 'Ratione ullam qui vel deserunt voluptatem voluptas. Explicabo ducimus cum voluptatem repellat dolores. Corporis itaque aperiam quia quod id delectus minima ut.', 0, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (130, 30, '<NAME>', 'Doloribus delectus et et ut et harum iusto. Labore omnis minus omnis est inventore. Natus autem architecto provident repellendus impedit.', 3, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (131, 44, '<NAME>', 'Atque ab nobis id est non culpa. Numquam nemo deleniti eligendi laborum qui. Suscipit a deleniti dolor beatae.', 1, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (132, 12, '<NAME> PhD', 'Voluptate non et omnis exercitationem voluptate. Consequuntur ea in dolore. Sed nobis suscipit in nesciunt. Autem dicta eius minima ut qui et. Aspernatur qui et quidem totam ipsam hic.', 2, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (133, 5, '<NAME>', 'Dolor sed quas accusamus et quasi. Sit unde sed autem dolor quidem. Dicta voluptatum distinctio est omnis est voluptatem.', 3, '2021-04-12 03:47:03', '2021-04-12 03:47:03'), (134, 33, 'Prof. <NAME>', 'Provident nesciunt eum est in unde est. Dignissimos tempora voluptatem autem autem qui molestias. Dolor beatae sit sint voluptatem. Necessitatibus ipsam quia omnis.', 5, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (135, 39, '<NAME>', 'Et molestiae enim nulla. Debitis asperiores unde praesentium quo. Sint dolorem ut reprehenderit aut. Aliquid consequatur dignissimos at praesentium provident facilis autem.', 3, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (136, 17, 'Ms. <NAME>', 'Labore officia quidem et libero. Et corrupti ipsum ad dicta quam ullam voluptas. Iusto est maxime dolores blanditiis et fugit atque dolor. Dolorem laboriosam et itaque facere porro omnis odit.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (137, 36, '<NAME>', 'Suscipit dolor et veritatis vel. Et quod sint voluptas eos eaque. Illo aperiam ab iure voluptas voluptas eum commodi. Et eius beatae quas maxime temporibus.', 4, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (138, 45, '<NAME>', 'Voluptas in omnis quia aut. Quasi ducimus laborum ut qui dolorum tempore vero. Inventore vitae officiis repellendus officiis quos consequatur quo repellendus. Dignissimos aliquam dolor praesentium ut consequatur officia totam blanditiis.', 5, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (139, 32, '<NAME>', 'Et vitae magnam voluptatem illo quos enim non. Est consequatur itaque beatae ex excepturi minus. Temporibus voluptatem ut asperiores doloribus et sit neque natus.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (140, 50, 'Dr. <NAME>', 'Nisi nobis voluptatem aut aut sit mollitia. Expedita id atque omnis rerum. Et est ut voluptatem illum. Modi sunt voluptas in illum id.', 0, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (141, 19, '<NAME> V', 'Nihil eum ut libero quas iure rerum rerum. Earum magnam ex laborum vel. Nam fuga numquam laboriosam molestias a et occaecati. Voluptatem quia qui fugiat culpa in.', 2, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (142, 31, '<NAME>', 'Alias autem sint sit rerum illo sint qui. Adipisci ut quidem optio quo velit aut. Tenetur ipsam et sapiente minus. Deleniti sit sed molestiae sunt et voluptatem. Iste omnis quam et voluptatem est rerum nesciunt.', 5, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (143, 18, 'Ms. <NAME> III', 'Sequi aperiam vero rerum. Velit amet veniam magnam aliquid. Perferendis porro eligendi rerum dolor occaecati nesciunt et. Quia dolorum aliquam rerum qui.', 4, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (144, 37, 'Mr. <NAME>', 'Facere veritatis laborum maxime dolores non ducimus alias. Sint sit sapiente natus maxime praesentium fugiat nulla et. Rerum laboriosam voluptate ullam illo aspernatur quasi.', 0, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (145, 4, '<NAME> Jr.', 'Aliquid architecto similique molestiae in voluptates aut quas. Ipsa neque ad odio minus. Alias harum minima doloremque in nihil.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (146, 18, 'Mrs. <NAME> DDS', 'Et placeat officia et. Veritatis quia inventore in est perspiciatis rem placeat. Maxime est voluptas distinctio voluptatem quae qui officia possimus. Dolor aut natus molestiae asperiores.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (147, 26, '<NAME>', 'Dolore aperiam perferendis nulla ducimus qui magnam dolores. Cumque praesentium praesentium laborum quia. Alias nemo voluptatibus commodi possimus in. Odio necessitatibus velit et aut amet magni natus.', 3, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (148, 19, 'Mr. <NAME> DDS', 'Aliquid ex esse quod sed explicabo fugiat. Optio dignissimos placeat nisi expedita. Aliquid maiores tempore totam. Asperiores aperiam asperiores ullam ut et dolorum eveniet incidunt.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (149, 34, '<NAME> Jr.', 'Voluptatem voluptas dolor rerum a. In vero quos inventore dolorem dolorem quia culpa. Quibusdam iste porro quia at eos totam. Omnis cumque quo enim molestiae et. Dolores dolor eius animi optio aperiam aut.', 1, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (150, 32, 'Mr. <NAME>', 'Quidem sed adipisci qui quae sed. Unde sunt odit officia aperiam eveniet repudiandae.', 0, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (151, 32, '<NAME>', 'Sed officia omnis sequi voluptatem quia recusandae. Velit explicabo temporibus commodi a et aliquam ex vel. Sunt corporis minus distinctio omnis non nemo tempora et.', 0, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (152, 45, '<NAME>', 'Necessitatibus ut adipisci quaerat quis. Consequuntur eveniet eum iusto qui nihil tenetur rerum optio. Exercitationem maiores non in et temporibus dolores. Magni qui et quidem quia iste qui voluptatibus.', 3, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (153, 23, '<NAME> I', 'Cum nesciunt debitis consectetur et possimus. Incidunt quia esse et repellat amet eos corrupti. Minima laudantium asperiores quisquam voluptatibus recusandae.', 5, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (154, 7, '<NAME>', 'Commodi rerum blanditiis doloribus. Architecto voluptatem ut et cupiditate earum consequatur. Voluptate porro dolorem impedit ullam blanditiis eum.', 0, '2021-04-12 03:47:04', '2021-04-12 03:47:04'), (155, 42, '<NAME>', 'Sequi voluptas sed non possimus. Maiores sit impedit blanditiis iure voluptatum eveniet. Facere tempore ipsa maxime repellendus.', 1, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (156, 38, '<NAME>', 'Esse dolorum laborum quia aliquid facere. Nihil temporibus alias sed eaque nulla sunt ipsum. Adipisci sit sint illum aut placeat.', 3, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (157, 5, '<NAME> Sr.', 'Aspernatur esse ut quo quidem illum consequatur. Magni quod eaque placeat. Et aut neque et cupiditate.', 1, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (158, 48, 'Miss <NAME> DDS', 'Beatae et similique non fuga atque. Minus tempore iure illo quis doloremque aspernatur. Sed explicabo sit et sed aut. Soluta magni unde et voluptatem voluptatem.', 1, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (159, 44, '<NAME>', 'Sed molestiae qui et non deleniti nisi. Perspiciatis quia sed velit dolores temporibus officiis excepturi.', 0, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (160, 22, '<NAME>', 'Voluptatem consequatur similique quaerat et minus. Reprehenderit nihil voluptatibus velit ab assumenda.', 4, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (161, 48, '<NAME>', 'Et aut laudantium voluptates harum magnam ex. Ea tempore aut rerum. Quaerat unde assumenda minima odit. Quasi qui consequatur deleniti et laborum qui dolorem.', 0, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (162, 3, 'Dr. <NAME> I', 'Magni tenetur cumque qui. Optio reprehenderit deleniti autem error vel. Et doloremque eligendi maxime dolor. Non nihil inventore consequatur at.', 4, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (163, 7, '<NAME>', 'Ad quas est voluptatem perferendis repellat. Eius quaerat harum assumenda dolorem voluptas. Error quae sunt quia ipsum repellendus ipsam et. Soluta fugit delectus deleniti enim. Perferendis quis consequuntur maxime qui et unde minus.', 0, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (164, 47, '<NAME> MD', 'Accusantium consequatur sed aperiam rerum laborum. Odit aut asperiores quis temporibus provident non. Recusandae alias accusantium cumque in ipsum debitis. Exercitationem odio quia dignissimos neque.', 0, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (165, 25, '<NAME>', 'Ratione beatae aut autem vel enim. Eaque laborum dolorem est enim vitae nisi sed. Id doloribus officiis optio perferendis consequatur dolores consequatur. Fuga nisi consequuntur aut quaerat libero ut culpa.', 3, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (166, 19, '<NAME>', 'Quidem voluptatibus tenetur sint quam sunt voluptatem. Et non architecto ut. Ullam voluptatem praesentium dignissimos.', 4, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (167, 38, '<NAME>', 'Et dicta magnam molestias. Magni quos corporis ea sit. Debitis officiis sint odio iure facere consequatur. Minima beatae voluptatem nam quos delectus sit soluta.', 1, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (168, 5, '<NAME>', 'Sequi sed voluptates dolore soluta dolorem. Minima nam odio commodi sunt est vel. Doloribus et animi non quo ipsum.', 1, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (169, 25, '<NAME>', 'Quis voluptate quo ipsam dolores voluptas. Consequatur voluptatem molestiae quibusdam rerum. Ea sunt dolor distinctio doloribus.', 3, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (170, 37, 'Mrs. <NAME>', 'Quaerat quia suscipit consequatur adipisci et minus. Velit dolorum facilis expedita ipsam est. Deleniti asperiores et deleniti dolores.', 4, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (171, 33, '<NAME>', 'Eligendi ipsam velit voluptatem. Facere in facere enim et iure nulla. Magnam et ipsam rerum ut vel.', 5, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (172, 34, 'Mr. <NAME>', 'Doloribus et et veritatis excepturi. Ea rerum ab debitis ut voluptatibus amet. Qui quos enim impedit mollitia temporibus cumque veniam.', 0, '2021-04-12 03:47:05', '2021-04-12 03:47:05'), (173, 28, '<NAME>', 'Est omnis odio numquam ipsam laboriosam. Adipisci doloribus non dolor doloremque enim rerum. Natus dignissimos rerum quos commodi necessitatibus.', 1, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (174, 17, '<NAME>', 'Ab totam facilis distinctio sunt. Est quos culpa vitae sint odio blanditiis aut. Ea quia voluptas consequuntur eaque animi commodi.', 5, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (175, 50, 'Mr. <NAME> Jr.', 'Accusamus animi eos quia eius soluta veritatis necessitatibus quisquam. Porro possimus dolore quibusdam fugit. Provident vitae aut quia quo. Ipsum corrupti provident ex in vel.', 4, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (176, 45, '<NAME>', 'Ullam libero dolorum ab expedita molestiae reiciendis accusantium perspiciatis. Unde maiores culpa aliquam assumenda laboriosam at aspernatur. Labore architecto voluptas vel et et quo.', 2, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (177, 50, 'Mr. <NAME> DVM', 'Qui velit voluptates quos dicta. Iusto repellat nesciunt error nobis ut. Sint modi esse est dolor et et vel facilis.', 5, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (178, 34, 'Miss <NAME>', 'Eos ipsum ipsam nemo distinctio esse. Quo ea sed quia. Voluptatem autem cum eos debitis.', 4, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (179, 11, '<NAME> I', 'Nam maxime laboriosam voluptatem ut sed quo nesciunt. Quos omnis doloribus accusantium ab et atque molestiae. Alias voluptate itaque odio distinctio ut quia. Porro enim laudantium laudantium modi sed tenetur iste.', 5, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (180, 23, '<NAME>', 'Recusandae sit vel odio numquam. Eos modi magni fuga hic inventore veniam fugit eum. Beatae ab vitae sapiente atque enim et nihil nemo. Totam minus non pariatur et.', 2, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (181, 42, '<NAME>', 'Et eius porro suscipit dolores voluptatum. Doloribus voluptas est esse ea. Beatae nulla dolor iusto laudantium. Sed fugit nostrum omnis quibusdam qui.', 1, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (182, 13, '<NAME> Jr.', 'Est ut sequi sint quam consequatur. Quasi repellendus aliquam inventore earum sequi doloremque. Voluptates est pariatur in harum non et eos. Excepturi cumque facilis qui.', 1, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (183, 9, '<NAME>', 'Minus esse totam maiores inventore. Reiciendis sed et nihil ut dignissimos culpa. Dolorum deleniti repudiandae rerum rerum. Voluptas qui aliquam modi facilis sit consequatur.', 5, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (184, 17, '<NAME>', 'Officiis voluptate voluptatem architecto quis veritatis tempora. Quo necessitatibus animi cum deleniti qui. Voluptatem fugit accusamus doloribus soluta quod incidunt quia.', 3, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (185, 36, '<NAME>', 'Eaque vero soluta nulla fugit. Sunt natus at dolores dolores neque. Aperiam repudiandae fugit qui at numquam soluta.', 2, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (186, 2, '<NAME>', 'Sed non accusantium amet dolores quia. Eius tempora ex eos id reiciendis odit. Quae soluta eaque modi et consequatur.', 4, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (187, 40, '<NAME>', 'Nihil velit deserunt molestias ipsa non. Non excepturi dolor corporis omnis velit. Quia quasi repellat ipsum odit placeat dolore quia. Laudantium ut id aut aut culpa. Officia unde inventore quos placeat.', 4, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (188, 42, '<NAME> DDS', 'Possimus vel eos sunt ut voluptas aut aliquam. Iusto suscipit et ut natus deleniti. Porro soluta dignissimos magni aperiam. Qui quisquam quis et exercitationem sit in odit.', 0, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (189, 7, '<NAME>', 'Minus consequatur tenetur cupiditate placeat blanditiis ea illum. Voluptates optio et blanditiis voluptas doloribus. Eum corrupti eos amet velit provident deleniti omnis. Qui consequatur velit repellendus.', 1, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (190, 8, '<NAME>', 'In dolor id et. Repellat praesentium voluptates omnis doloremque molestiae aut sit.', 3, '2021-04-12 03:47:06', '2021-04-12 03:47:06'), (191, 33, 'Ms. <NAME> I', 'Tempora quo dolor ratione culpa omnis illum. Ducimus laboriosam sapiente et minima dolorum.', 2, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (192, 37, 'Mr. <NAME> III', 'Magnam voluptatem ipsa doloribus quia repellendus cum ut dolorem. Accusantium aut illo officiis quos itaque. Sunt enim fuga nisi animi. Accusamus illum consectetur et placeat.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (193, 17, '<NAME>', 'Delectus esse dolorem qui nostrum repellat necessitatibus. Modi ipsa qui unde maiores impedit. Aut tempore modi explicabo et mollitia.', 2, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (194, 39, '<NAME>', 'Eos dolorem ratione quis aut voluptatum voluptas. Nobis laborum voluptas qui sit qui. Quo saepe occaecati cum assumenda. Vero facilis ut consequuntur quis.', 3, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (195, 5, 'Ms. <NAME>', 'Numquam perspiciatis quia accusantium consequatur. Esse in nihil odio similique non. Nostrum totam et molestiae et voluptas optio. Sequi in tempora sed et fugiat.', 0, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (196, 36, 'Prof. <NAME> Sr.', 'Excepturi culpa et dolor rerum sapiente ipsum minus. Minima dolorem eius ratione quis vitae. Sint illo sed facilis blanditiis. Rerum omnis et magnam qui accusantium esse in.', 5, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (197, 30, 'Ms. <NAME>', 'Sit est quidem consequatur nostrum cupiditate fugiat. Est recusandae hic debitis labore perferendis est quisquam placeat. Et aut nobis nisi repudiandae illo. Voluptatum ex omnis corporis aspernatur numquam autem tenetur dolores.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (198, 12, 'Dr. <NAME>', 'Maiores reiciendis dicta harum et ullam dicta. Sit libero voluptas at mollitia quia. Hic nemo et officia velit. Quaerat repellat officiis dolorem.', 5, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (199, 37, '<NAME>', 'Est nesciunt veniam sit dolorum sint dignissimos in. Veniam qui amet sit nesciunt est voluptatem dignissimos sed. Voluptatum fugiat nihil itaque reprehenderit ut.', 2, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (200, 43, '<NAME>', 'Accusamus magnam qui voluptates aliquid. Aliquid molestiae dolor a dignissimos aut ut culpa. Voluptatem praesentium omnis ullam nostrum. Maiores reprehenderit sit eos sit ut.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (201, 5, '<NAME>', 'Quos pariatur repellat similique quos neque. Facere ut aspernatur quisquam quis eveniet. Ea aut eos aut quis quis. Minus numquam maiores odit laborum.', 3, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (202, 7, 'Dr. <NAME>', 'Exercitationem sit explicabo aliquid tempora voluptatem. Excepturi quibusdam labore mollitia excepturi inventore vitae ut. Enim tempora ut ab ea et sunt molestias et.', 5, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (203, 28, 'Dr. <NAME> PhD', 'Odit ut sed iste a voluptas unde et. Saepe et neque numquam veniam. Magni vitae odio doloremque debitis cumque fugit voluptatem. Quas fuga ut fugit ullam voluptates dolor accusamus.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (204, 1, '<NAME>', 'Ea rerum est impedit enim necessitatibus maiores quam. Repellat consequatur est fuga expedita impedit temporibus quia sint. Quis ab est quo illum sapiente expedita.', 1, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (205, 17, '<NAME>', 'Neque odio qui sint error ullam. Voluptate excepturi perferendis quo incidunt ut eos ut numquam. Corporis facere omnis temporibus expedita ea.', 0, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (206, 22, '<NAME>', 'Et assumenda iure placeat consequatur voluptatibus. Quaerat dignissimos rerum porro consectetur.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (207, 31, '<NAME>', 'Totam sed iure est cupiditate ut autem voluptas harum. Saepe dolorem itaque enim quia consequuntur similique dignissimos sunt. Sint in voluptatum pariatur nisi dolor nobis.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'); INSERT INTO `reviews` (`id`, `product_id`, `customer`, `review`, `star`, `created_at`, `updated_at`) VALUES (208, 31, '<NAME>', 'Aut rerum dolorem iste odit. Non a eum ratione sit quibusdam rerum et. Perspiciatis nemo nemo sunt aperiam omnis nostrum cum. Hic omnis illo ea aliquam consequatur enim.', 4, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (209, 39, '<NAME>', 'Dignissimos sit natus laboriosam est. Debitis architecto laboriosam quo asperiores. Illum quae modi similique odio. Explicabo odit maxime explicabo sequi ipsa.', 2, '2021-04-12 03:47:07', '2021-04-12 03:47:07'), (210, 4, '<NAME>zk DDS', 'Blanditiis libero aut eveniet molestiae est. Quibusdam pariatur cum aut qui. Aperiam non voluptates necessitatibus quia non omnis.', 3, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (211, 9, '<NAME>', 'Amet illum deserunt quo ipsa harum aut. Eos eos quae aliquam soluta reprehenderit repudiandae. Sunt sit labore qui quidem aliquam. Earum quo impedit repudiandae deserunt non et.', 5, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (212, 43, '<NAME>', 'Qui rerum eos temporibus quo. Id laudantium explicabo consequatur vel voluptas quisquam et. Fugiat voluptas eos blanditiis ut doloremque sed et. Est expedita nisi rerum beatae.', 3, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (213, 21, '<NAME>', 'Harum consequatur exercitationem et autem repellat. Sunt perferendis non quisquam quos sunt eaque. Cumque recusandae perferendis voluptatem omnis. Quod necessitatibus voluptas rem vitae.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (214, 49, 'Prof. <NAME> DVM', 'Aspernatur suscipit magnam quod. Laborum ut numquam molestias culpa. Veniam temporibus modi culpa officiis consequuntur repudiandae quia. Debitis eaque id nam ipsa consequuntur exercitationem.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (215, 26, '<NAME> MD', 'Dolores expedita iure omnis atque in et. Culpa odit aliquam sit maiores sed blanditiis provident. Voluptatem sed velit laboriosam asperiores voluptate.', 0, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (216, 35, '<NAME>', 'Est mollitia totam perspiciatis illo ea omnis voluptas dignissimos. Dignissimos libero et molestiae et deserunt et hic. Doloribus in velit neque suscipit eum error. Omnis rerum officia nihil soluta ut.', 2, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (217, 32, 'Prof. <NAME> V', 'Voluptas non ut dolore. Aliquam quia rerum impedit. Autem rerum esse et et. Voluptas magni sint quo unde consequatur laudantium.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (218, 40, '<NAME>', 'Quia voluptatem quas provident illum praesentium quos. Quis eum atque ducimus facilis. Consequatur laborum ex doloremque.', 5, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (219, 48, 'Miss <NAME> III', 'Dicta ipsum voluptatem non voluptates ut laboriosam itaque. Quia a blanditiis sint deserunt ut quia. Enim aut similique repudiandae praesentium non voluptatibus. Beatae consequuntur non nihil. Accusamus architecto consequuntur error eius sit.', 2, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (220, 41, '<NAME> Jr.', 'Illum laborum consequuntur ut consequatur asperiores quod. Dolor consequuntur voluptates placeat sint temporibus. Laboriosam ut eveniet exercitationem sunt sit blanditiis voluptate voluptatibus. Qui nostrum quis a qui odit.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (221, 22, 'Mr. <NAME> DVM', 'Quidem ut molestiae earum quis quod error dicta. Et non eum facere repellat. Et fugit tenetur voluptates porro. Quo est voluptas non praesentium. Nam quia doloremque dolorum omnis eos fugit veritatis distinctio.', 3, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (222, 3, '<NAME> Jr.', 'Et labore ut consectetur eos. Minima non est occaecati quas delectus quos cum. Quia dignissimos qui fuga saepe non omnis cumque.', 3, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (223, 27, '<NAME> IV', 'Natus laudantium omnis odio voluptatibus ex. Beatae et quaerat fuga magnam quas ipsum nihil.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (224, 24, '<NAME>', 'Repellat qui atque sit non velit. Aut sed ipsa est occaecati itaque facilis itaque commodi. Pariatur modi qui fuga consequuntur dicta.', 5, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (225, 47, '<NAME>', 'Ut voluptatum ratione eum. Facilis et porro aspernatur nisi quod consequatur inventore. Temporibus placeat eveniet aliquid expedita possimus dolor.', 5, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (226, 38, '<NAME>', 'Dolor doloribus vitae corrupti qui ut consectetur. Pariatur vitae vitae et sunt cum. Possimus quis impedit asperiores fuga saepe. Occaecati dolores itaque consequatur ut.', 2, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (227, 36, '<NAME>', 'Suscipit eligendi magnam sunt consequatur. Reiciendis accusamus est beatae. Harum aliquid vel aut suscipit et. Animi mollitia dolor quaerat consequatur hic. Aut alias labore sit nobis.', 1, '2021-04-12 03:47:08', '2021-04-12 03:47:08'), (228, 19, 'Miss <NAME> V', 'Aut autem ipsum quaerat corporis. Consequatur dicta eos maiores vero quod vitae optio. Eveniet veniam eius culpa aut magni ut sed.', 5, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (229, 6, '<NAME> MD', 'Perspiciatis voluptas eos veniam aut aut fuga fuga ipsum. Quasi quo totam rerum iste est. Illum nesciunt numquam corrupti sunt.', 0, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (230, 6, '<NAME>', 'Voluptatibus consequuntur nesciunt et omnis et. Saepe quis dolorem optio perferendis quibusdam. Unde in vel est consequuntur facilis architecto quae. Iste vitae perspiciatis laboriosam.', 1, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (231, 47, '<NAME>', 'Cupiditate itaque et et maiores. Illum ipsa et omnis ipsa id rerum quas. Consectetur qui laborum non autem.', 3, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (232, 28, '<NAME> PhD', 'Voluptatem excepturi sed unde repellendus rerum nihil labore. Quo perferendis non et sunt. Ab cum dolor eos quibusdam minima rerum.', 5, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (233, 2, 'Dr. <NAME>', 'Et nam officia accusantium numquam officia rem dolor eos. Commodi illo accusantium ipsa voluptatem quia. Voluptate veniam nisi eum ratione necessitatibus voluptas. Rem in error nisi voluptatem qui odit et.', 2, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (234, 36, '<NAME>', 'Quo est labore nisi perferendis. Minima unde nihil totam est magni. Velit expedita ad magni molestias dicta.', 3, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (235, 22, '<NAME>', 'Non excepturi necessitatibus molestias nihil. Id quae sint itaque. Molestiae accusantium debitis at occaecati. Non quia est ea eos sint recusandae mollitia ipsa.', 0, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (236, 23, '<NAME>', 'Natus nostrum accusamus voluptatum reprehenderit nobis distinctio. Ea illum ut et quia neque. Ut itaque qui provident in.', 1, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (237, 25, '<NAME>', 'Voluptatem nostrum earum debitis eum pariatur aliquid enim dolorem. Blanditiis adipisci deserunt provident exercitationem sit. Quia doloribus dolore enim et quae qui voluptatum.', 3, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (238, 46, '<NAME>', 'Perferendis placeat rerum vel nostrum in adipisci. Dolor nemo iste autem. Expedita dolor fugiat iusto cumque ex nulla vel temporibus.', 2, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (239, 14, '<NAME>', 'Soluta est voluptatem eum provident quia. Qui dolor nostrum autem. Quibusdam nulla officia cupiditate et est.', 0, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (240, 17, 'Prof. <NAME> I', 'Praesentium et et repellendus porro eos. Excepturi ex architecto voluptatum commodi dolor recusandae earum voluptas. Tempora excepturi excepturi sed beatae. Et quisquam earum et itaque autem tempore quae laborum.', 2, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (241, 36, 'Dr. <NAME>', 'Tempora recusandae inventore sit fugit aut. Velit consequatur itaque possimus eius. Inventore dolorem quis iusto excepturi veritatis temporibus fugiat. Consectetur maiores debitis ut ut possimus.', 3, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (242, 50, '<NAME> II', 'Quae dolore minus quo assumenda dolores ad omnis. Id ullam veniam est doloribus. Harum et quis quidem porro deserunt fugiat beatae ut.', 5, '2021-04-12 03:47:09', '2021-04-12 03:47:09'), (243, 1, '<NAME> II', 'Autem expedita quis illum non quia iusto. Enim cum occaecati non et et. Qui unde dolorem eaque temporibus voluptate delectus deleniti beatae. Nihil expedita qui quasi.', 3, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (244, 43, '<NAME>', 'Modi molestiae qui tempora sint ipsam eos. Illo minus et eum repellendus. Dolore et fuga unde alias ex autem similique.', 0, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (245, 29, 'Dr. <NAME> II', 'Natus quibusdam molestias et earum veniam perferendis. Maxime ut aliquam est est. Non ea fugiat quia vel aut totam blanditiis. Laudantium quos illo quia repellat dolores voluptas.', 2, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (246, 37, '<NAME>', 'Ad velit incidunt at ea quia architecto. Pariatur illum eligendi velit quidem. Tenetur magnam id totam repellendus fugiat doloremque facere. Laboriosam laudantium aut sed non sit harum eos. Ex optio iure quia voluptates.', 0, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (247, 13, 'Ms. <NAME>', 'Sint ratione eligendi vitae hic sint. Qui rem non rerum dolor est ut et. Sint quis quia harum eum.', 5, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (248, 41, 'Prof. <NAME>', 'Nihil sunt dolorem quis molestiae. Rem repudiandae porro qui. Aliquam est laudantium ut vel dolor expedita porro. Ut suscipit optio in quo veritatis delectus recusandae.', 3, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (249, 9, 'Mr. <NAME> Jr.', 'Sint asperiores illum dolores magni quod tempora et. Facilis maiores reprehenderit nam ipsa est. Nemo blanditiis velit id soluta.', 2, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (250, 6, '<NAME>', 'Ut laudantium ut magni ad. Saepe expedita tempore totam iure asperiores. Consequatur aut natus in voluptatem ea eum.', 1, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (251, 38, '<NAME>', 'Repellat debitis possimus vero esse accusantium et. Alias aut rerum non sed quasi accusamus. Maxime possimus harum amet.', 4, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (252, 5, 'Prof. <NAME>', 'Ad quasi modi in aut sunt itaque. Eum aliquid aut beatae. Distinctio odit debitis sunt nulla. Illo explicabo adipisci placeat molestiae ut quod nemo.', 5, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (253, 40, '<NAME>', 'Quo molestias suscipit voluptates dolorem laudantium autem rem rerum. Aut hic ut minus mollitia iusto consequatur. Quidem deserunt et sit ipsum enim voluptatem.', 5, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (254, 49, '<NAME>', 'Animi consequatur quod nobis hic minima vitae. Corrupti ut fugiat maxime in excepturi consequatur est. Illo ab est officia est aut culpa voluptatibus. Laborum aut reiciendis sit rerum.', 4, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (255, 37, 'Prof. <NAME>', 'Quaerat dolor delectus est maiores. Quo modi sit cum repudiandae at. Voluptas iusto eaque mollitia commodi qui. Sit similique est praesentium omnis. At quod voluptates quo quia aut accusantium rerum.', 2, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (256, 35, '<NAME>', 'Doloremque quo officia dolorem et tenetur aliquid. Laboriosam aut eos temporibus explicabo fugiat consectetur. Deserunt et voluptatem deleniti nulla et. Voluptatibus accusantium debitis vitae expedita et. Et sed id veritatis explicabo voluptatem repellat tempora.', 4, '2021-04-12 03:47:10', '2021-04-12 03:47:10'), (257, 14, 'Dr. <NAME>', 'Ab et odio labore est quaerat voluptas non. A eos reiciendis vero voluptatem id quo. Ex velit cumque fuga corrupti maiores et eaque.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (258, 27, '<NAME>', 'Et corporis voluptatem aut consequuntur eligendi rem. Cumque maxime perspiciatis nisi sed non. Hic eos dolorem consequuntur mollitia asperiores. Eum porro eaque qui quaerat quas et atque ratione.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (259, 22, '<NAME>', 'Voluptatum esse ut sint qui officiis et reiciendis. Et quis doloremque iusto veritatis consequatur quo. Voluptas inventore sed quasi repudiandae. Recusandae vitae atque veritatis iusto.', 0, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (260, 3, '<NAME>', 'Ipsa doloremque ad impedit quia. Dolore facere sunt voluptate deleniti deserunt id tempore. Ex iusto dolores et placeat sed. Atque laudantium facere distinctio voluptatibus non consequatur eaque.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (261, 2, '<NAME>', 'Et rerum provident excepturi incidunt esse. Distinctio dicta esse rerum ipsa. Animi cumque beatae in commodi suscipit quaerat ad.', 0, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (262, 27, '<NAME> DVM', 'Ipsum vitae non aut est cupiditate. Id nesciunt iure quia rerum voluptatibus laborum itaque. Amet error laboriosam magnam dolor.', 3, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (263, 24, '<NAME>', 'Incidunt at molestias sunt ipsum voluptatibus qui nesciunt quidem. Tempora provident similique possimus. Modi voluptatem ut tenetur et maiores.', 1, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (264, 35, 'Gilberto <NAME>', 'Rerum distinctio cum quasi nostrum aut. Tempore ab corrupti qui et.', 1, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (265, 26, '<NAME>', 'Ea amet autem aut neque consequuntur hic. Dolores pariatur porro quibusdam. Accusantium reprehenderit veritatis ex temporibus sed explicabo quis. Et modi vel iste reprehenderit.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (266, 15, '<NAME>', 'Qui quis facere sunt ratione quis nobis. Id repellendus suscipit corrupti reiciendis. Voluptas animi temporibus quidem quia quia culpa assumenda eius. Aut sint libero omnis inventore corrupti sint nesciunt est.', 1, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (267, 7, '<NAME>', 'Totam occaecati consequatur quos perferendis. Quae voluptate reprehenderit nisi nam laborum perspiciatis. Ea labore nisi consequatur ut sint possimus accusantium. Odio est unde cumque et eaque.', 5, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (268, 13, 'Mrs. <NAME>', 'Nisi et dicta nihil quam eum incidunt. Perferendis debitis quisquam hic ut. Quam eos id dignissimos error et omnis eum.', 2, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (269, 38, 'Prof. <NAME>', 'Laboriosam doloremque voluptas vel consectetur laboriosam voluptates. Soluta dolore voluptates eveniet veritatis dolorum.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (270, 27, '<NAME>', 'Non aut nulla aut facere totam similique. Eum architecto dolorem consequatur eos at nesciunt voluptate. Voluptates eligendi quisquam explicabo nihil. Nihil et sed veritatis amet doloremque eligendi.', 0, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (271, 21, '<NAME>', 'Quis tempore odio autem. Ut et quod sit et ut. Doloribus rerum aut qui ipsa ut velit.', 4, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (272, 20, '<NAME>', 'Mollitia iure autem et inventore sint vero. Aut eligendi velit possimus. Aut numquam ea harum.', 2, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (273, 19, '<NAME>', 'Aut pariatur blanditiis hic doloremque minus. Quia ab voluptas non error quis labore. Aut enim molestiae corporis ut quo sunt laudantium. Tenetur totam sit veniam modi deserunt.', 3, '2021-04-12 03:47:11', '2021-04-12 03:47:11'), (274, 13, '<NAME>', 'Ea praesentium illum cupiditate rem repudiandae dicta animi. Est hic in et quam quis tempore delectus. Neque non delectus et quam.', 5, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (275, 32, '<NAME>', 'Doloribus architecto explicabo aut consequatur quia delectus. Numquam reprehenderit maxime qui aspernatur animi quas est. Corporis ut repellendus sequi qui amet dolorem voluptatum dignissimos.', 4, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (276, 11, '<NAME>', 'Et ducimus vel corporis distinctio nesciunt totam. Est qui veritatis velit explicabo rem. Quo quibusdam numquam asperiores.', 0, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (277, 13, '<NAME> Sr.', 'Amet eos qui expedita ducimus minus est. Explicabo ut voluptatum vitae inventore voluptatem. Eum temporibus corrupti sed. Quo qui voluptas modi est fugiat non voluptas nisi. Deleniti non cum laboriosam id qui.', 1, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (278, 9, 'Prof. <NAME>', 'Vel aut numquam consequatur in. Odit nihil numquam quas voluptas. Natus voluptatem quod nobis impedit vitae corrupti est.', 1, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (279, 35, 'Dr. <NAME>', 'Eum libero et sint aliquid iusto. Quam quo et in dignissimos dolore neque maiores velit. Vel enim id illo. Voluptatem commodi quas consequatur quisquam corrupti.', 0, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (280, 25, '<NAME>', 'In molestiae totam distinctio dolorem sint eaque sed veritatis. Aut ullam excepturi dolor laborum. Dolor molestiae reprehenderit non nihil mollitia esse.', 4, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (281, 4, '<NAME>', 'Et fugiat aliquam suscipit architecto quo dolorem culpa. Eaque distinctio deserunt rerum veritatis et rerum. Possimus eaque blanditiis enim non enim assumenda.', 5, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (282, 6, 'Prof. <NAME>', 'Sed aut quos natus placeat. Dolore eius dolor modi esse non illum nisi. Aspernatur est ut dolorem.', 2, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (283, 33, 'Ms. <NAME> PhD', 'Culpa velit maxime temporibus. Modi et ullam tempore omnis voluptatem aut ipsa. Voluptatem tempore quia quo porro blanditiis odio. Illo nesciunt voluptatem laborum ratione rerum voluptatum.', 0, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (284, 23, '<NAME>', 'Et corporis ad laboriosam voluptatum blanditiis hic aut. Veritatis fugiat tenetur quam impedit. Itaque eveniet quaerat a rerum. Nihil reprehenderit voluptates veritatis nihil pariatur autem cum voluptatum. Necessitatibus sequi molestias qui consectetur excepturi vitae pariatur.', 3, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (285, 17, 'Prof. <NAME> DVM', 'Quidem impedit et earum et voluptatem. Recusandae consectetur totam eos. Doloribus libero odio molestias odio. Exercitationem commodi exercitationem quasi ut sed.', 5, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (286, 19, '<NAME>', 'Sapiente dolor et qui eligendi molestias non eaque rerum. Eligendi ea sint repellat odio nesciunt quis ea. Voluptatem optio magni aliquid et nobis dolorem inventore. Excepturi ducimus est earum consequatur laborum aut qui consequatur.', 4, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (287, 46, '<NAME>', 'Ea sunt eum accusantium beatae illo et placeat. Tempore quo quia quidem. Ipsam nemo in pariatur dignissimos.', 1, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (288, 27, '<NAME>', 'Assumenda quasi tempora tempore asperiores nihil in. Laudantium eos vel aperiam ullam. Voluptas sequi molestiae repudiandae illo minima est.', 0, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (289, 21, '<NAME>', 'Vel in vel nam itaque deleniti nobis illo ut. Aliquid eligendi molestiae hic possimus qui odit. Explicabo voluptatem nihil quis aut qui distinctio.', 5, '2021-04-12 03:47:12', '2021-04-12 03:47:12'), (290, 24, '<NAME> I', 'Possimus itaque et aut optio est at velit. Quasi asperiores dignissimos quis dicta odio dolorem voluptas.', 1, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (291, 13, '<NAME>', 'Fuga dolore non error voluptas reprehenderit laboriosam qui. Non itaque et consectetur voluptatem ab numquam. Dolores maxime libero unde rerum quaerat cumque.', 1, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (292, 20, '<NAME>', 'Debitis laudantium commodi exercitationem perspiciatis qui ut provident nostrum. Recusandae esse odit cupiditate adipisci libero. Ut incidunt ut modi qui nam ipsam.', 3, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (293, 49, '<NAME>', 'Est sit asperiores quibusdam qui. Et eos quisquam dolor itaque reprehenderit expedita veniam. Non voluptatum aut iure omnis ab repellat perferendis. Consectetur ratione qui itaque quidem ab molestias quia.', 3, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (294, 32, 'Dr. <NAME> III', 'Ut dolorem et reprehenderit rem rerum iure. Voluptatem est qui rerum esse ipsam occaecati est. Quo est nobis quisquam nemo.', 0, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (295, 2, '<NAME>', 'Voluptate nisi sit ut quibusdam voluptatum rerum modi occaecati. Ipsam eius dignissimos ut saepe et consequatur quis. Minus et maiores ratione autem error consectetur.', 5, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (296, 28, 'Ms. <NAME>', 'Itaque magni est blanditiis. Non sint cumque alias qui. Enim consequatur cum eaque minima porro et assumenda. Error sit aut officia sunt distinctio.', 3, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (297, 2, 'Dr. <NAME>', 'Possimus sed saepe soluta dignissimos odit. Laboriosam aut dolores vitae quis. Et aperiam sint delectus numquam.', 3, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (298, 18, '<NAME>', 'Deleniti eum voluptatem nihil quo rerum iure ducimus expedita. Exercitationem velit ea eum et est eum omnis repellendus. Non cupiditate omnis eius repellendus omnis quod soluta culpa. Odit porro aut unde.', 3, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (299, 11, 'Miss <NAME> DDS', 'Dolorem vero eos veniam explicabo tempore deserunt. Accusamus dolores quae in rerum. Fugit voluptas quia iure ut voluptatem. Quam animi nulla velit rerum.', 4, '2021-04-12 03:47:13', '2021-04-12 03:47:13'), (300, 26, 'Miss <NAME>', 'Necessitatibus reprehenderit provident eius qui. Expedita est sit quod nisi consequuntur officia. Voluptas et est ducimus excepturi voluptates neque cum ipsa. Dolorum id et corporis non optio porro.', 2, '2021-04-12 03:47:13', '2021-04-12 03:47:13'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) 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; -- -- Indexes for dumped tables -- -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`), ADD KEY `reviews_product_id_index` (`product_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=301; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `reviews` -- ALTER TABLE `reviews` ADD CONSTRAINT `reviews_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) 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 */;
<reponame>enriqueescobar-askida/SqlServerProfiler<filename>Sql/DB-Procedure_listIO.sql SELECT SYSP.name AS [StoreProcName] , PSTA.total_physical_reads AS [TotalPhysicalReads] , PSTA.total_elapsed_time AS [TotalElapsedTime] , PSTA.execution_count AS [ExecutionCount] , PSTA.cached_time AS [CachedTime] , PSTA.total_logical_reads AS [TotalLogicalReads] , PSTA.total_logical_writes AS [TotalLogicalWrites] FROM sys.procedures AS SYSP INNER JOIN sys.dm_exec_procedure_stats AS PSTA ON SYSP.[object_id] = PSTA.[object_id] WHERE PSTA.database_id = DB_ID() ORDER BY [StoreProcName], [TotalPhysicalReads], [TotalLogicalReads] ;
<reponame>imajaydwivedi/Problem-Task---SQL-Server-Slowness use Quiz go create table dbo.Users ( userid int identity(1,1), regtime datetime, username varchar(50), email varchar(50), userpass varchar(50) ); create table dbo.QuestionTechnology ( technologyid INT IDENTITY(1,1), category char(20), subcategory varchar(20), [level] int default 2, [description] varchar(255) ); alter table dbo.QuestionTechnology add constraint PK_QuestionTechnology_technologyid PRIMARY KEY CLUSTERED (technologyid) go create table dbo.QuestionType ( typeid int identity(1,1), questiontype varchar(20), subtype varchar(20), [description] varchar(255) );
<gh_stars>0 -- location_variation_prices -- ALTER TABLE phppos_location_item_variations ADD COLUMN `unit_price` decimal(23,10) DEFAULT NULL, ADD COLUMN `cost_price` decimal(23,10) DEFAULT NULL;
TRUNCATE TABLE requests CASCADE
/* Initialize the database */ /* Total distance travelled as a school */ CREATE TABLE IF NOT EXISTS total ( distance REAL ); /* Info stored for each user: id: used to identify each submission of walk email: ensure user is part of WRDSB username: student's name wrdsbusername: email without the @<EMAIL> distance: student's total distance active: whether a user is active refreshtoken: OAuth refresh token googlefit: whether a user is connected with Google Fit */ CREATE TABLE IF NOT EXISTS users ( id TEXT PRIMARY KEY, email TEXT UNIQUE NOT NULL, username TEXT NOT NULL, wrdsbusername TEXT NOT NULL, distance REAL NOT NULL, position SMALLINT, likes SMALLINT, likediff SMALLINT, liked TEXT, active SMALLINT DEFAULT 1, refreshtoken TEXT, googlefit BOOLEAN DEFAULT FALSE ); /* Info stored to see who is an admin: id: used to identify each person wrdsbusername: email without the @wrdsb.ca valid: whether a user is an admin */ CREATE TABLE IF NOT EXISTS admins ( id TEXT PRIMARY KEY, wrdsbusername TEXT NOT NULL, valid SMALLINT DEFAULT 0 ); /* Info stored to see who is on the blacklist: id: used to identify each person wrdsbusername: email without the @wrdsb.ca valid: whether a user is an admin */ CREATE TABLE IF NOT EXISTS blacklist ( id TEXT PRIMARY KEY, wrdsbusername TEXT NOT NULL, valid SMALLINT DEFAULT 0 ); /* Info stored for each walk (one walk stored per day): id: used to identify student who did the walk username: used to identify student who did the walk distance: student's distance for that day walkdate: date of walk stored as YYYY-MM-DD trackedwithfit: whether a walk was inputted by Google Fit */ CREATE TABLE IF NOT EXISTS walks ( id TEXT NOT NULL, username TEXT NOT NULL, distance REAL NOT NULL, walkdate DATE NOT NULL, trackedwithfit BOOLEAN DEFAULT FALSE );
drop table if exists linux_command_monitor_info; /*==============================================================*/ /* Table: linux_command_monitor_info */ /*==============================================================*/ create table linux_command_monitor_info ( oid bigint not null auto_increment, access_time datetime comment 'ๅ‘ฝไปคๆ‰ง่กŒๆ—ถ้—ด', exec_command varchar(500) comment '็”จๆˆทๆ‰ง่กŒๅ‘ฝไปค', exec_result varchar(2000) comment 'ๆ‰ง่กŒ็ป“ๆžœ', exec_user varchar(80) comment 'ๆ‰€ไฝฟ็”จ็š„็”จๆˆท(ๅฆ‚๏ผšroot๏ผŒjboss)', original_user varchar(80) comment 'ๅŽŸๅง‹็”จๆˆทroot', local_ip varchar(20) comment 'ๆœฌๆœบIPๅœฐๅ€', user_ip varchar(20) comment 'ๆ‰ง่กŒๅ‘ฝไปค็š„็”จๆˆทๆฅๆบIP', operator_status varchar(100) comment 'ๆญคๅญ—ๆฎตๅฏไธบ็ฉบ', container_oid varchar(100) comment 'ไธšๅŠก็ณป็ปŸOid', aciton smallint not null comment 'ๆ•ฐๆฎๆ˜ฏๅฆๅทฒ็ปๅŒๆญฅๅˆฐ linux_command_info่กจไธญ๏ผŒtrueๆ˜ฏ๏ผŒfalseๆฒกๆœ‰', status int, primary key (oid) ); alter table linux_command_monitor_info comment 'Linux_ไธปๆœบๅฑ‚้ขๅ‘ฝไปคๆ‰ง่กŒ็›‘่ง†';
<filename>data/open-source/extracted_sql/scooterw_ffi-ogr.sql select * from table_name where id = '49649d69-25a5-4dde-926d-b43a88c47d17'
<reponame>parbhatia/ptr-app-demo select a.id, a.value from $2~ a where person_id = $1 order by id;
<reponame>nikbearbrown/INFO_6210<gh_stars>10-100 use final6210; create or replace VIEW player_poply AS select ScreenName, Favorited, Players from nba1nf where not Players= 'others'; select *from player_poply order by Favorited desc; create or replace VIEW pop_users AS select TwitterID, Favorited from nba1nf where not Players= 'others' group by TwitterID order by Favorited desc; select * from pop_users; #set sql_mode = ''; create or replace view pop_tweet as select TwitterID, Text, Favorited from nba1nf WHERE Favorited >= (SELECT AVG(Favorited) + 2 * STDDEV(Favorited) FROM nba1nf); select * from pop_tweet order by Favorited desc; create or replace view pop_locations as select nba_users.City, nba_tweets.Favorited, nba_tweets.Players from nba_users left join nba_tweets on nba_users.TwitterID = nba_tweets.TwitterID; select max(Favorited), City, Players from pop_locations where not City is null group by Players;
--liquibase formatted sql --changeset uk.gov.pay:alter_column_service_name_length_on_products ALTER TABLE products ALTER COLUMN service_name TYPE VARCHAR(50); --rollback ALTER TABLE products ALTER COLUMN service_name TYPE VARCHAR(255);
<reponame>Kahiko/Growthware ๏ปฟCREATE PROCEDURE [ZFP_GET_NVP] @P_NVP_SEQ_ID int, @P_ACCT_SEQ_ID int, @P_SE_SEQ_ID int, @P_ErrorCode int OUTPUT AS IF @P_NVP_SEQ_ID > -1 BEGIN SELECT * FROM ZFC_NVP WHERE ZFC_NVP.NVP_SEQ_ID = @P_NVP_SEQ_ID END ELSE BEGIN IF @P_ACCT_SEQ_ID > -1 BEGIN -- get only valid NVP for the given account DECLARE @V_PERMISSION_ID INT SET @V_PERMISSION_ID = dbo.ZFF_GET_VIEW_PERMISSION_ID() --DECLARE @V_AvalibleItems TABLE ([ID] INT, TITLE VARCHAR(30), [DESCRIPTION] VARCHAR(256), URL VARCHAR(256), PARENT INT, SORT_ORDER INT, ROLE VARCHAR(50),FUNCTION_TYPE_SEQ_ID INT) DECLARE @V_AvalibleItems TABLE ([NVP_SEQ_ID] int,[STATIC_NAME] varchar(30), [DISPLAY] varchar(128), [DESCRIPTION] varchar(256), [ADDED_BY] int, [ADDED_DATE] datetime, [UPDATED_BY] int, [UPDATED_DATE] datetime, [ROLE] VARCHAR(50)) INSERT INTO @V_AvalibleItems SELECT -- Items via roles ZFC_NVP.NVP_SEQ_ID, ZFC_NVP.STATIC_NAME, ZFC_NVP.DISPLAY, ZFC_NVP.[DESCRIPTION], ZFC_NVP.ADDED_BY, ZFC_NVP.ADDED_DATE, ZFC_NVP.UPDATED_BY, ZFC_NVP.UPDATED_DATE, ROLES.NAME AS [ROLE] FROM ZFC_SECURITY_RLS_SE SE_ROLES, ZFC_SECURITY_RLS ROLES, ZFC_SECURITY_NVP_RLS [SECURITY], ZFC_NVP, ZFC_PERMISSIONS [PERMISSIONS] WHERE SE_ROLES.ROLE_SEQ_ID = ROLES.ROLE_SEQ_ID AND SECURITY.RLS_SE_SEQ_ID = SE_ROLES.RLS_SE_SEQ_ID AND SECURITY.NVP_SEQ_ID = ZFC_NVP.NVP_SEQ_ID AND [PERMISSIONS].NVP_SEQ_DET_ID = SECURITY.PERMISSIONS_NVP_SEQ_DET_ID AND [PERMISSIONS].NVP_SEQ_DET_ID = @V_PERMISSION_ID AND SE_ROLES.SE_SEQ_ID IN (SELECT SE_SEQ_ID FROM dbo.ZFF_GET_SE_PARENTS(1,@P_SE_SEQ_ID)) INSERT INTO @V_AvalibleItems SELECT -- Items via groups ZFC_NVP.NVP_SEQ_ID, ZFC_NVP.STATIC_NAME, ZFC_NVP.DISPLAY, ZFC_NVP.[DESCRIPTION], ZFC_NVP.ADDED_BY, ZFC_NVP.ADDED_DATE, ZFC_NVP.UPDATED_BY, ZFC_NVP.UPDATED_DATE, ROLES.NAME AS [ROLE] FROM ZFC_SECURITY_NVP_GRPS, ZFC_SECURITY_GRPS_SE, ZFC_SECURITY_GRPS_RLS, ZFC_SECURITY_RLS_SE, ZFC_SECURITY_RLS ROLES, ZFC_NVP, ZFC_PERMISSIONS [PERMISSIONS] WHERE ZFC_SECURITY_NVP_GRPS.NVP_SEQ_ID = ZFC_NVP.NVP_SEQ_ID AND ZFC_SECURITY_GRPS_SE.GRPS_SE_SEQ_ID = ZFC_SECURITY_NVP_GRPS.GRPS_SE_SEQ_ID AND ZFC_SECURITY_GRPS_RLS.GRPS_SE_SEQ_ID = ZFC_SECURITY_GRPS_SE.GRPS_SE_SEQ_ID AND ZFC_SECURITY_RLS_SE.RLS_SE_SEQ_ID = ZFC_SECURITY_GRPS_RLS.RLS_SE_SEQ_ID AND ROLES.ROLE_SEQ_ID = ZFC_SECURITY_RLS_SE.ROLE_SEQ_ID AND [PERMISSIONS].NVP_SEQ_DET_ID = ZFC_SECURITY_NVP_GRPS.PERMISSIONS_NVP_SEQ_DET_ID AND [PERMISSIONS].NVP_SEQ_DET_ID = @V_PERMISSION_ID AND ZFC_SECURITY_GRPS_SE.SE_SEQ_ID IN (SELECT SE_SEQ_ID FROM dbo.ZFF_GET_SE_PARENTS(1,@P_SE_SEQ_ID)) DECLARE @V_AccountRoles TABLE (Roles VARCHAR(30)) -- Roles belonging to the account INSERT INTO @V_AccountRoles SELECT -- Roles via roles ZFC_SECURITY_RLS.[NAME] AS Roles FROM ZFC_ACCTS, ZFC_SECURITY_ACCTS_RLS, ZFC_SECURITY_RLS_SE, ZFC_SECURITY_RLS WHERE ZFC_SECURITY_ACCTS_RLS.ACCT_SEQ_ID = @P_ACCT_SEQ_ID AND ZFC_SECURITY_ACCTS_RLS.RLS_SE_SEQ_ID = ZFC_SECURITY_RLS_SE.RLS_SE_SEQ_ID AND ZFC_SECURITY_RLS_SE.SE_SEQ_ID IN (SELECT SE_SEQ_ID FROM dbo.ZFF_GET_SE_PARENTS(1,@P_SE_SEQ_ID)) AND ZFC_SECURITY_RLS_SE.ROLE_SEQ_ID = ZFC_SECURITY_RLS.ROLE_SEQ_ID UNION SELECT -- Roles via groups ZFC_SECURITY_RLS.[NAME] AS Roles FROM ZFC_ACCTS, ZFC_SECURITY_ACCTS_GRPS, ZFC_SECURITY_GRPS_SE, ZFC_SECURITY_GRPS_RLS, ZFC_SECURITY_RLS_SE, ZFC_SECURITY_RLS WHERE ZFC_SECURITY_ACCTS_GRPS.ACCT_SEQ_ID = @P_ACCT_SEQ_ID AND ZFC_SECURITY_GRPS_SE.SE_SEQ_ID IN (SELECT SE_SEQ_ID FROM dbo.ZFF_GET_SE_PARENTS(1,@P_SE_SEQ_ID)) AND ZFC_SECURITY_GRPS_SE.GRPS_SE_SEQ_ID = ZFC_SECURITY_GRPS_RLS.GRPS_SE_SEQ_ID AND ZFC_SECURITY_RLS_SE.RLS_SE_SEQ_ID = ZFC_SECURITY_GRPS_RLS.RLS_SE_SEQ_ID AND ZFC_SECURITY_RLS_SE.ROLE_SEQ_ID = ZFC_SECURITY_RLS.ROLE_SEQ_ID DECLARE @V_AllItems TABLE ([NVP_SEQ_ID] int,[STATIC_NAME] varchar(30), [DISPLAY] varchar(128), [DESCRIPTION] varchar(256), [ADDED_BY] int, [ADDED_DATE] datetime, [UPDATED_BY] int, [UPDATED_DATE] datetime) INSERT INTO @V_AllItems SELECT -- Last but not least get the menu items when there are matching account roles. NVP_SEQ_ID, STATIC_NAME, DISPLAY, [DESCRIPTION], ADDED_BY, ADDED_DATE, UPDATED_BY, UPDATED_DATE FROM @V_AvalibleItems WHERE ROLE IN (SELECT DISTINCT * FROM @V_AccountRoles) DECLARE @V_DistinctItems TABLE ([NVP_SEQ_ID] int,[STATIC_NAME] varchar(30), [DISPLAY] varchar(128), [DESCRIPTION] varchar(256), [ADDED_BY] int, [ADDED_DATE] datetime, [UPDATED_BY] int, [UPDATED_DATE] datetime) INSERT INTO @V_DistinctItems SELECT DISTINCT NVP_SEQ_ID, STATIC_NAME, DISPLAY, [DESCRIPTION], ADDED_BY, ADDED_DATE, UPDATED_BY, UPDATED_DATE FROM @V_AllItems SELECT * FROM @V_DistinctItems END ELSE BEGIN -- get only valid NVP for the given account SELECT * FROM ZFC_NVP END END -- Get the Error Code for the statement just executed. SELECT @P_ErrorCode=@@ERROR
<reponame>Shuttl-Tech/antlr_psql -- file:json.sql ln:122 expect:true select to_json(date '2014-05-28')
update "AccountDevices" set "verifyCode" = null, "isVerified" = true, "verifiedAt" = CURRENT_TIMESTAMP, "updatedAt" = CURRENT_TIMESTAMP where "verifyCode" = ${verifyCode} returning "isVerified";
/* Warnings: - You are about to drop the column `followId` on the `Inbox` table. All the data in the column will be lost. */ -- AlterTable ALTER TABLE "Inbox" DROP COLUMN "followId";
SELECT dann.mp_claim_id, dann.mp_data_index, dann.ev_supports, dbody.data_type, df.data_field_type, df.value_as_string FROM ohdsi.mp_data_annotation dann JOIN ohdsi.oa_data_body dbody ON dann.has_body = dbody.id JOIN ohdsi.data_field df ON dbody.id = df.data_body_id WHERE dann.mp_claim_id = '@claimId';
DROP TABLE IF EXISTS banner_spec_topic; DROP TABLE IF EXISTS banner_quote_request; DROP TABLE IF EXISTS banner_offer; DROP TABLE IF EXISTS banner_order; DROP TABLE IF EXISTS banner_spec; CREATE TABLE banner_spec ( object_id UUID PRIMARY KEY NOT NULL, reference VARCHAR(255) NOT NULL, status VARCHAR(20) NOT NULL, image_url VARCHAR(255) NOT NULL, banner_size VARCHAR(20) NOT NULL, relevance_required DOUBLE NOT NULL, max_price_euro DOUBLE NOT NULL, min_page_views BIGINT NOT NULL, valid_through TIMESTAMP NOT NULL, target_gender VARCHAR(10) NOT NULL, target_age_group VARCHAR(20) NOT NULL ); CREATE TABLE banner_spec_topic ( banner_spec_id UUID NOT NULL, topic VARCHAR(50) NOT NULL, CONSTRAINT PK_TOPIC PRIMARY KEY (banner_spec_id, topic), CONSTRAINT FK_BANNER_SPEC_TOPIC FOREIGN KEY (banner_spec_id) REFERENCES banner_spec(object_id) ); CREATE TABLE banner_quote_request ( object_id UUID PRIMARY KEY NOT NULL, reference VARCHAR(255) NOT NULL, image_width INT NOT NULL, image_height INT NOT NULL, min_page_views BIGINT NOT NULL, gender VARCHAR(10) NOT NULL, min_age INT NOT NULL, max_age INT NOT NULL, tags VARCHAR(255) NOT NULL, deadline TIMESTAMP NOT NULL, banner_spec_id UUID NOT NULL, CONSTRAINT FK_BANNER_QR_SPEC FOREIGN KEY (banner_spec_id) REFERENCES banner_spec(object_id) ); CREATE TABLE banner_offer ( object_id UUID PRIMARY KEY NOT NULL, offer_id VARCHAR(255) NOT NULL, reference VARCHAR(255) NOT NULL, issuer VARCHAR(255) NOT NULL, price_model VARCHAR(10) NOT NULL, guaranteed_relevance DOUBLE NOT NULL, guaranteed_page_views BIGINT NOT NULL, price_in_euro DOUBLE NOT NULL, offer_validity TIMESTAMP NOT NULL, banner_spec_id UUID NOT NULL, CONSTRAINT FK_BANNER_OFFER_SPEC FOREIGN KEY (banner_spec_id) REFERENCES banner_spec(object_id) ); CREATE TABLE banner_order ( object_id UUID PRIMARY KEY NOT NULL, offer_id VARCHAR(255) NOT NULL, reference VARCHAR(255) NOT NULL, provider VARCHAR(255) NOT NULL, image_url VARCHAR(255) NOT NULL, ordered_at TIMESTAMP NOT NULL, banner_spec_id UUID NOT NULL, CONSTRAINT FK_BANNER_ORDER_SPEC FOREIGN KEY (banner_spec_id) REFERENCES banner_spec(object_id) );
<reponame>babelfish-for-postgresql/babelfish_extensions USE db_babel_3121; go select * from babel_3121_t; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t' and A.attnum > 0 and attisdropped = 'f' order by attname; go select * from babel_3121_t2; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t2' and A.attnum > 0 and attisdropped = 'f' order by attname; go select * from babel_3121_t3; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t3' and A.attnum > 0 and attisdropped = 'f' order by attname; go select * from babel_3121_t4; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t4' and A.attnum > 0 and attisdropped = 'f' order by attname; go select * from babel_3121_t5; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t5' and A.attnum > 0 and attisdropped = 'f' order by attname; go select * from babel_3121_t6; go select attname, array_to_string(attoptions,',') attoptions from pg_class C, pg_attribute A where C.oid = A.attrelid and C.relname like 'babel_3121_t6' and A.attnum > 0 and attisdropped = 'f' order by attname; go USE master; go DROP DATABASE db_babel_3121; go
-- -------------------------------------------------------- -- Host: localhost -- Server version: 5.7.24 - MySQL Community Server (GPL) -- Server OS: Win64 -- HeidiSQL Version: 9.5.0.5196 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Dumping database structure for authors DROP DATABASE IF EXISTS `authors`; CREATE DATABASE IF NOT EXISTS `authors` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `authors`; -- Dumping structure for table authors.authors DROP TABLE IF EXISTS `authors`; CREATE TABLE IF NOT EXISTS `authors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) DEFAULT NULL, `name_arabic` varchar(200) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `bio` text, `position` varchar(200) DEFAULT NULL, `avatar` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; -- Dumping data for table authors.authors: ~31 rows (approximately) /*!40000 ALTER TABLE `authors` DISABLE KEYS */; INSERT IGNORE INTO `authors` (`id`, `name`, `name_arabic`, `bio`, `position`, `avatar`) VALUES (1, 'A Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (2, 'B Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (3, 'C Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (4, 'D Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (5, 'E Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (6, 'F Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (7, 'G Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (8, 'H Author', '<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (9, 'I Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (10, 'J Author', '<PASSWORD>ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (11, 'K Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (12, 'L Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (13, 'M Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (14, 'N Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (15, 'O Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (16, 'P Author', 'ู…<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (17, 'Q Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (18, 'R Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (19, 'S Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (20, 'T Author', 'ู…ุคู„ู', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (21, 'U Author', '<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (22, 'V Author', 'ู…<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (23, 'W Author', 'ู…<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (24, 'X Author', '<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (25, 'Y Author', 'ู…<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (26, 'Z Author', 'ู…<PASSWORD>', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Development Manager', 'no_avatar.png'), (27, 'test', NULL, 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'Manager', ''), (28, 'test', NULL, 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', 'sfsdfsdfs', ''), (29, 'test', NULL, 'sdf sfsf s fsf', 'sfsdfsdfs', 'no_avatar.png'), (30, 'testsds', NULL, 'asdasdasd', 'asdasda', 'no_avatar.png'), (31, 'dfdfhfghfg', NULL, 'hfghfgh', 'fghfghfg', 'no_avatar.png'), (32, 'fd', NULL, 'dfgd', 'dfg', 'no_avatar.png'); /*!40000 ALTER TABLE `authors` 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 */;
-- @testpoint: ๆ นๆฎ็”จๆˆทๅๅˆ›ๅปบๆจกๅผ๏ผŒๅˆ็†ๆŠฅ้”™ --1.create user:success create user user_schema with password "<PASSWORD>"; --2.create schema with exists user:success CREATE SCHEMA schema_1 AUTHORIZATION user_schema; --3.create schema with user which is not exists:fail CREATE SCHEMA test AUTHORIZATION user_schema1; CREATE SCHEMA AUTHORIZATION user_schema1; --4.create schema:success create schema schema_2; --5.create user:fail create user schema_2 with password "<PASSWORD>"; --6.rename user_schema:success alter schema user_schema rename to user_schema1; --7.create schema without schema name:success CREATE SCHEMA AUTHORIZATION user_schema; --8.create role:success CREATE ROLE role1_schema IDENTIFIED BY 'Mima@123'; --9.create schema without schema name:success CREATE SCHEMA AUTHORIZATION role1_schema; --10.create user named pg_xxx create user pg_test with password "<PASSWORD>"; --tearDown drop schema if exists schema_2; drop schema if exists schema_1; drop schema if exists user_schema; drop schema if exists role1_schema; drop schema user_schema1; drop user if exists user_schema; drop role if exists role1_schema;
-- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 12, 2021 at 08:28 AM -- Server version: 10.4.18-MariaDB -- PHP Version: 7.4.16 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: `lamalama` -- -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `banner_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `banner_link` 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 `banners` -- INSERT INTO `banners` (`id`, `banner_title`, `banner_description`, `banner_image`, `banner_link`, `created_at`, `updated_at`) VALUES (1, 'Banner Pertama', 'Description Banner Pertama', 'banner/0NHKGVM2FsmoipDWda7nRCqj7dnglJeOZpGHv6Hh.jpg', NULL, '2021-05-11 19:26:23', '2021-05-11 19:26:23'), (2, 'Banner Kedua', 'Description Banner Kedua', 'banner/BAmWH8vYU2cCpBt1nueHoMCG6jJFIwslDiGz1yqG.jpg', NULL, '2021-05-11 19:26:41', '2021-05-11 19:26:41'); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `category_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `category_img` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_detail` 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 `categories` -- INSERT INTO `categories` (`id`, `category_name`, `category_img`, `category_detail`, `created_at`, `updated_at`) VALUES (1, 'Long Dress', NULL, 'Dress panjang', '2021-05-11 18:48:59', '2021-05-11 18:48:59'), (2, 'Jeans', NULL, 'Celana berbahan dasar jeans', '2021-05-11 18:58:44', '2021-05-11 18:58:44'), (3, 'Jaket', NULL, NULL, '2021-05-11 18:58:56', '2021-05-11 18:58:56'); -- -------------------------------------------------------- -- -- 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 `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, '2019_08_19_000000_create_failed_jobs_table', 1), (3, '2021_05_08_030306_create_banners_table', 1), (4, '2021_05_08_030521_create_categories_table', 1), (5, '2021_05_08_030658_create_products_table', 1), (6, '2021_05_09_031819_create_stores_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `product_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_img` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_price` bigint(20) NOT NULL, `product_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_store` date DEFAULT NULL, `product_exp` date DEFAULT NULL, `categories_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`, `product_code`, `product_name`, `product_img`, `product_price`, `product_description`, `product_store`, `product_exp`, `categories_id`, `created_at`, `updated_at`) VALUES (1, 'L0010', 'Kaos polos lengan panjang', 'product/8G5L767TxUoViY443DTp5upIc7cD0Syeh0C6Cjzz.jpg', 30000, 'Hai teman Lama, bagus ga harus mahal. Semua produk kami sudah di kurasi dengan baik ya. Kami memastikan bahwa pakaian dalam kondisi bagus dan layak pakai๐Ÿ‘Œ\r\n.\r\n๐Ÿ“„Keterangan :\r\nKaos polos lengan panjang\r\nKODE: A0040\r\n*Warna : Merah\r\n*Panjang Baju : 83 cm\r\n*Lingkar Dada : 97 cm\r\n*Kondisi : preloved - bagus\r\n*Harga : Rp 30.000\r\n*bisa ditukar dan dibeli\r\n*Warna bisa berbeda karena pengaruh cahaya\r\n\r\n๐Ÿ“ขSebagian hasil penjualan, penukaran/transaksi akan didonasikan kepada saudara-saudara kita yang membutuhkan ya, Teman Lamaโœจ\r\n๐Ÿ“ขYuk sembari mengurangi limbah fesyen, Teman Lama juga bisa sekalian berdonasi kepada saudara-saudara kita yang membutuhkanโœจ\r\n.\r\n๐Ÿ“ฆOrder\r\n๐Ÿ“ž 0895-397-095-179 (Alama - Admin Lamalama)', NULL, NULL, 1, '2021-05-11 19:02:59', '2021-05-11 19:22:37'), (2, 'L0020', 'Dress Merah Uniqlo', 'product/IA6NL1e1yEYAkosZlMYzIrZq55JEFXb9z6hKPVvJ.png', 50000, NULL, NULL, NULL, 1, '2021-05-11 19:07:38', '2021-05-11 19:07:38'), (3, 'L0030', 'Dress Zahra Merah Cerah', 'product/GpnLETgcac8p43JuFMVc9SxYRcnENYgSElAob6JT.png', 80000, NULL, NULL, NULL, 1, '2021-05-11 19:09:14', '2021-05-11 19:09:14'), (4, 'L0040', 'Snow Dress', 'product/URhVaU0pHOUWQAZ4tYPuxR4NZs948HOA3TlzJ453.png', 75000, NULL, NULL, NULL, 1, '2021-05-11 19:10:26', '2021-05-11 19:10:26'), (5, 'J0010', '<NAME>', 'product/cDdkan0omAFq5KkE6NfrHEddIHRGw0pobeA8ElA7.png', 130000, NULL, NULL, NULL, 2, '2021-05-11 19:11:53', '2021-05-11 19:11:53'), (6, 'J0020', '<NAME>', 'product/WbNYwBJSJpWCWQwlOq2auxaBRUqzFHKNexIlotOL.png', 90000, NULL, NULL, NULL, 2, '2021-05-11 19:12:59', '2021-05-11 19:12:59'), (7, 'J0030', '<NAME>', 'product/Bc0Rjga1p9bp3l8q2STmoZeRVyTFxIzdO0g8pSmu.png', 65000, NULL, NULL, NULL, 2, '2021-05-11 19:15:31', '2021-05-11 19:15:31'), (8, 'JK0010', '<NAME>', 'product/v99AtzEg6BdpP4CplkgpTeJSWrnbFisdB692LZqM.png', 100000, NULL, NULL, NULL, 3, '2021-05-11 19:16:41', '2021-05-11 19:16:41'), (9, 'JK0020', '<NAME>', 'product/kdCE5dVY1sJIy5N9nGl0qiS2Qfe0GrM8T1rxB5cd.png', 110000, NULL, NULL, NULL, 3, '2021-05-11 19:17:45', '2021-05-11 19:17:45'), (10, 'JK0030', 'Jaket Bomber Hitam', 'product/CQJGHPYVt4AIqFLStRpsS2oKPO2CUiRCcywEbWOj.png', 70000, NULL, NULL, NULL, 3, '2021-05-11 19:18:58', '2021-05-11 19:18:58'); -- -------------------------------------------------------- -- -- Table structure for table `stores` -- CREATE TABLE `stores` ( `id` bigint(20) UNSIGNED NOT NULL, `store_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `store_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `store_wa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `store_phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `store_address` text COLLATE utf8mb4_unicode_ci NOT NULL, `store_about` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_text_buy` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_text_trade` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_bank_account` 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 `stores` -- INSERT INTO `stores` (`id`, `store_name`, `store_email`, `store_wa`, `store_phone`, `store_address`, `store_about`, `store_text_buy`, `store_text_trade`, `store_bank_account`, `created_at`, `updated_at`) VALUES (1, 'Lama Lama Id', '<EMAIL>', '62812345723', '0812345723', 'Jl Jawa', 'Hai teman Lama, bagus ga harus mahal. Semua produk kami sudah di kurasi dengan baik ya. Kami memastikan bahwa pakaian dalam kondisi bagus dan layak pakai๐Ÿ‘Œ', 'Halo saya mau beli nih', 'Halo saya mau tukar nih', 'BCA: 758203951 An Lama Lama', '2021-05-11 18:09:22', '2021-05-11 23:24:13'); -- -------------------------------------------------------- -- -- 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, `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`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'admin', '<EMAIL>', NULL, '$2y$10$3thevPeFTYun9g0JIjqHyu5yRpMgvdyZYA3YQFwRRL1Y68xzP/Uci', '$2y$10$kLpHwDCVF/Lh3CtdAskYw.tgimkj4zJSpYaCJgN.8UGyHbwaOEyP.', '2021-05-11 18:09:22', '2021-05-11 18:38:54'), (2, '<NAME>', '<EMAIL>', NULL, '$2y$10$puTfZHT0Z9x2XCGJ/QybJuo0bKJkzJF2fwu0pEaRqmwF1kyFm0XaS', '$2y$10$igv7hsYC/LEmmNwfzwUiUu7700jnx1VI.RJ2IocguAvhUGyUyeM/i', '2021-05-11 18:09:22', '2021-05-11 18:09:22'); -- -- Indexes for dumped tables -- -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `stores` -- ALTER TABLE `stores` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `stores` -- ALTER TABLE `stores` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `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 */;
-- Query the NAME -- field for all American cities in the CITY table -- with populations larger than 120000. The CountryCode for America is USA. -- The CITY table is described as -- follows: -- CITY -- FIELD TYPE -- ID NUMBER -- NAME VARCHAR2(17) -- COUNTRYCODE VARCHAR2(3) -- DISTRICT VARCHAR2(20) -- POPULATION NUMBER SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 120000
<reponame>disik69/dev-it -- phpMyAdmin SQL Dump -- version 4.0.10deb1 -- http://www.phpmyadmin.net -- -- ะฅะพัั‚: localhost -- ะ’ั€ะตะผั ัะพะทะดะฐะฝะธั: ะะฟั€ 13 2015 ะณ., 15:31 -- ะ’ะตั€ัะธั ัะตั€ะฒะตั€ะฐ: 5.5.38-0ubuntu0.14.04.1 -- ะ’ะตั€ัะธั PHP: 5.5.9-1ubuntu4.7 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 */; -- -- ะ‘ะฐะทะฐ ะดะฐะฝะฝั‹ั…: `dev-it` -- -- -------------------------------------------------------- -- -- ะกั‚ั€ัƒะบั‚ัƒั€ะฐ ั‚ะฐะฑะปะธั†ั‹ `clothes` -- CREATE TABLE IF NOT EXISTS `clothes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `color_id` int(11) unsigned NOT NULL, `size_id` int(11) unsigned NOT NULL, `name` varchar(128) COLLATE utf8_unicode_ci NOT NULL, `photo` varchar(128) COLLATE utf8_unicode_ci NOT NULL, `price` decimal(5,2) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `color_id` (`color_id`), KEY `size_id` (`size_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=17 ; -- -- ะ”ะฐะผะฟ ะดะฐะฝะฝั‹ั… ั‚ะฐะฑะปะธั†ั‹ `clothes` -- INSERT INTO `clothes` (`id`, `color_id`, `size_id`, `name`, `photo`, `price`) VALUES (1, 3, 2, 'Lace embroidered chiffon top', '16-240x360.jpg', 35.99), (2, 7, 1, 'Lace embroidered chiffon top', '15-240x360.jpg', 35.99), (3, 1, 4, 'Chain embroidered blazer', '14-240x360.jpg', 53.99), (4, 2, 4, 'Cropped hoodie', '13-240x360.jpg', 54.99), (5, 8, 5, 'High neck lace bodysuit', '12-240x360.jpg', 31.99), (6, 1, 5, 'Sleek zip pocket blazer', '11-240x360.jpg', 62.99), (7, 6, 4, 'Sleek zip pocket blazer', '10-240x360.jpg', 62.99), (8, 8, 1, 'Sleek zip pocket blazer', '9-240x360.jpg', 62.99), (9, 1, 2, 'Oversized pleather jacket', '8-240x360.jpg', 56.99), (10, 1, 3, 'Maxi set', '7-240x360.jpg', 42.99), (11, 4, 1, 'Faux jewel corset', '6-240x360.jpg', 42.99), (12, 2, 1, 'Crochet boxy crop top', '5-240x360.jpg', 15.99), (13, 3, 2, 'I woke up like this top', '3-240x360.jpg', 22.99), (14, 5, 4, 'NY to Paris top', '2-240x360.jpg', 22.99), (15, 1, 3, 'Mesh & lace top', '1-240x360.jpg', 64.99), (16, 6, 1, 'Rose gold sequin top', '4-240x360.jpg', 24.99); -- -------------------------------------------------------- -- -- ะกั‚ั€ัƒะบั‚ัƒั€ะฐ ั‚ะฐะฑะปะธั†ั‹ `colors` -- CREATE TABLE IF NOT EXISTS `colors` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=9 ; -- -- ะ”ะฐะผะฟ ะดะฐะฝะฝั‹ั… ั‚ะฐะฑะปะธั†ั‹ `colors` -- INSERT INTO `colors` (`id`, `name`) VALUES (1, 'Black'), (2, 'Gray'), (3, 'Ivory'), (4, 'Multi'), (5, 'Navy blue'), (6, 'Pink'), (7, 'Taupe'), (8, 'White'); -- -------------------------------------------------------- -- -- ะกั‚ั€ัƒะบั‚ัƒั€ะฐ ั‚ะฐะฑะปะธั†ั‹ `sizes` -- CREATE TABLE IF NOT EXISTS `sizes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ; -- -- ะ”ะฐะผะฟ ะดะฐะฝะฝั‹ั… ั‚ะฐะฑะปะธั†ั‹ `sizes` -- INSERT INTO `sizes` (`id`, `name`) VALUES (1, 'L'), (2, 'M'), (3, 'S'), (4, 'S/M'), (5, 'M/L'); -- -- ะžะณั€ะฐะฝะธั‡ะตะฝะธั ะฒะฝะตัˆะฝะตะณะพ ะบะปัŽั‡ะฐ ัะพั…ั€ะฐะฝะตะฝะฝั‹ั… ั‚ะฐะฑะปะธั† -- -- -- ะžะณั€ะฐะฝะธั‡ะตะฝะธั ะฒะฝะตัˆะฝะตะณะพ ะบะปัŽั‡ะฐ ั‚ะฐะฑะปะธั†ั‹ `clothes` -- ALTER TABLE `clothes` ADD CONSTRAINT `clothes_ibfk_2` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`), ADD CONSTRAINT `clothes_ibfk_1` FOREIGN KEY (`color_id`) REFERENCES `colors` (`id`); /*!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>alloucha/Evorganiz CREATE TABLE `Buffet` ( `idEvent` int(11) NOT NULL, `idMeal` int(11) NOT NULL, `pricePerPersonn` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `Contact` -- CREATE TABLE `Contact` ( `idContact` int(11) NOT NULL, `idUser` int(11) NOT NULL, `firstnameContact` varchar(50) CHARACTER SET utf8 NOT NULL, `lastnameContact` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `streetContact` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `townContact` varchar(50) CHARACTER SET utf8 DEFAULT NULL, `zipCodeContact` int(11) DEFAULT NULL, `telContact` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `Event` -- CREATE TABLE `Event` ( `idEvent` int(11) NOT NULL, `personConcerned` varchar(20) CHARACTER SET utf8 DEFAULT ' ', `idOccasion` int(11) DEFAULT '0', `themeEvent` varchar(20) CHARACTER SET utf8 DEFAULT ' ', `dateEvent` date DEFAULT NULL, `venueEvent` varchar(20) CHARACTER SET utf8 DEFAULT ' ', `budgetMaxEvent` int(11) DEFAULT '0', `idUser` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `Guest` -- CREATE TABLE `Guest` ( `idContact` int(11) NOT NULL, `idEvent` int(11) NOT NULL, `acceptInvitation` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `Meal` -- CREATE TABLE `Meal` ( `idMeal` int(11) NOT NULL, `nameMeal` varchar(50) CHARACTER SET utf8 NOT NULL, `typeMeal` varchar(50) CHARACTER SET utf8 NOT NULL, `descriptionMeal` varchar(200) DEFAULT NULL, `idUser` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `OccasionEvent` -- CREATE TABLE `OccasionEvent` ( `idOccasion` int(11) NOT NULL, `nameOccasion` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Structure de la table `User` -- CREATE TABLE `User` ( `firstnameUser` varchar(50) DEFAULT NULL, `lastnameUser` varchar(50) DEFAULT NULL, `password` varchar(200) NOT NULL, `idUser` int(11) NOT NULL, `sexUser` varchar(10) NOT NULL DEFAULT 'NotDefined', `username` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Index pour les tables exportรฉes -- -- -- Index pour la table `Buffet` -- ALTER TABLE `Buffet` ADD PRIMARY KEY (`idEvent`,`idMeal`), ADD KEY `c_buffet2` (`idMeal`); -- -- Index pour la table `Contact` -- ALTER TABLE `Contact` ADD PRIMARY KEY (`idContact`); -- -- Index pour la table `Event` -- ALTER TABLE `Event` ADD PRIMARY KEY (`idEvent`); -- -- Index pour la table `Guest` -- ALTER TABLE `Guest` ADD PRIMARY KEY (`idContact`,`idEvent`), ADD KEY `c_guest1` (`idEvent`); -- -- Index pour la table `Meal` -- ALTER TABLE `Meal` ADD PRIMARY KEY (`idMeal`); -- -- Index pour la table `OccasionEvent` -- ALTER TABLE `OccasionEvent` ADD PRIMARY KEY (`idOccasion`); -- -- Index pour la table `User` -- ALTER TABLE `User` ADD PRIMARY KEY (`idUser`); -- -- AUTO_INCREMENT pour les tables exportรฉes -- -- -- AUTO_INCREMENT pour la table `Contact` -- ALTER TABLE `Contact` MODIFY `idContact` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT pour la table `Event` -- ALTER TABLE `Event` MODIFY `idEvent` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT pour la table `Meal` -- ALTER TABLE `Meal` MODIFY `idMeal` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT pour la table `OccasionEvent` -- ALTER TABLE `OccasionEvent` MODIFY `idOccasion` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT pour la table `User` -- ALTER TABLE `User` MODIFY `idUser` int(11) NOT NULL AUTO_INCREMENT; -- -- Contraintes pour les tables exportรฉes -- -- -- Contraintes pour la table `Buffet` -- ALTER TABLE `Buffet` ADD CONSTRAINT `c_buffet1` FOREIGN KEY (`idEvent`) REFERENCES `Event` (`idEvent`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `c_buffet2` FOREIGN KEY (`idMeal`) REFERENCES `Meal` (`idMeal`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Contraintes pour la table `Guest` -- ALTER TABLE `Guest` ADD CONSTRAINT `c_guest1` FOREIGN KEY (`idEvent`) REFERENCES `Event` (`idEvent`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `c_guest2` FOREIGN KEY (`idContact`) REFERENCES `Contact` (`idContact`) ON DELETE CASCADE ON UPDATE CASCADE;
-- MySQL dump 10.16 Distrib 10.1.38-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: apt_rural -- ------------------------------------------------------ -- Server version 10.1.38-MariaDB /*!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 `clientes` -- DROP TABLE IF EXISTS `clientes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `clientes` ( `id_cliente` int(11) NOT NULL AUTO_INCREMENT, `nombre` varchar(50) NOT NULL, `apellido` varchar(50) NOT NULL, `correo` varchar(128) NOT NULL, `telefono` int(11) NOT NULL, PRIMARY KEY (`id_cliente`), UNIQUE KEY `correo` (`correo`) ) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `clientes` -- LOCK TABLES `clientes` WRITE; /*!40000 ALTER TABLE `clientes` DISABLE KEYS */; INSERT INTO `clientes` VALUES (1,'Maria','Perez','<EMAIL>',789451263),(2,'Antonio','Martinez','<EMAIL>',456127893),(3,'Emi','Rodo','<EMAIL>',987632541),(4,'Josep','Peig','<EMAIL>',879543215),(5,'Anna','Perez','<EMAIL>',589462423),(6,'Day','Vazquez','<EMAIL>',452454545),(7,'Rosi','Segura','<EMAIL>',789451236),(8,'Chris','Sancho','<EMAIL>',4567891),(9,'Tania','Trujillo','<EMAIL>',456123217),(10,'Tina','amat','<EMAIL>',456789635),(22,'Tina','Segura','<EMAIL>',456789635),(31,'Javi','Garzรƒยณn','<EMAIL>',456585223),(34,'Juan','Magan','<EMAIL>',134866),(39,'Diane','<NAME>','<EMAIL>',236493),(40,'Bill','Gates','<EMAIL>',1),(41,'Oscar','Santos','<EMAIL>',687521465),(44,'Linus','Torvalds','<EMAIL>',876); /*!40000 ALTER TABLE `clientes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reservas` -- DROP TABLE IF EXISTS `reservas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `reservas` ( `id_reserva` int(11) NOT NULL AUTO_INCREMENT, `id_cliente` int(11) NOT NULL, `entrada` date NOT NULL, `salida` date NOT NULL, PRIMARY KEY (`id_reserva`), KEY `fk_reservas_clientes` (`id_cliente`), CONSTRAINT `fk_reservas_clientes` FOREIGN KEY (`id_cliente`) REFERENCES `clientes` (`id_cliente`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reservas` -- LOCK TABLES `reservas` WRITE; /*!40000 ALTER TABLE `reservas` DISABLE KEYS */; INSERT INTO `reservas` VALUES (1,1,'2019-07-05','2019-08-02'),(13,39,'2019-08-25','2019-08-27'),(14,40,'2019-11-04','2019-11-08'),(17,41,'2019-09-03','2019-09-17'),(23,1,'2025-12-01','2025-12-15'),(24,1,'2025-12-28','2025-12-29'),(25,3,'2050-01-01','2050-05-01'),(27,1,'2025-01-01','2025-01-05'),(29,1,'2021-05-01','2021-05-30'),(30,1,'2021-06-01','2021-08-30'),(31,1,'2021-10-05','2021-10-08'),(32,5,'2023-12-01','2023-12-31'),(33,44,'2019-08-19','2019-08-25'); /*!40000 ALTER TABLE `reservas` 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 2019-07-12 11:15:04
#start the database in-secure #mysqld --initialize-insecure CREATE DATABASE PROJECTMANAGER; drop table tasks; drop table parent_tasks; drop table projects; drop table users; CREATE TABLE users ( employee_id VARCHAR(6) NOT NULL, first_name VARCHAR(50) NULL DEFAULT NULL, last_name VARCHAR(50) NULL DEFAULT NULL, status VARCHAR(1) NULL DEFAULT NULL, PRIMARY KEY (employee_id) ); CREATE TABLE projects ( project_id BIGINT(10) NOT NULL AUTO_INCREMENT, project_name VARCHAR(50) NULL DEFAULT NULL, start_date VARCHAR(10) NULL DEFAULT NULL, end_date VARCHAR(10) NULL DEFAULT NULL, priority VARCHAR(2) NULL DEFAULT NULL, status VARCHAR(15) NULL DEFAULT NULL, manager_id VARCHAR(6) NOT NULL, PRIMARY KEY (project_id), CONSTRAINT FK_PROJECTS_MANAGER_ID FOREIGN KEY (manager_id) REFERENCES users (employee_id) ); CREATE TABLE parent_tasks ( parent_task_id BIGINT(10) NOT NULL AUTO_INCREMENT, parent_task_name VARCHAR(50) NULL DEFAULT NULL, project_id BIGINT(10) NOT NULL, PRIMARY KEY (parent_task_id), CONSTRAINT FK_PARENT_TASKS FOREIGN KEY (project_id) REFERENCES projects (project_id) ); CREATE TABLE tasks ( task_id BIGINT(10) NOT NULL AUTO_INCREMENT, task_name VARCHAR(50) NULL DEFAULT NULL, parent_task_id BIGINT(10) NULL DEFAULT NULL, employee_id VARCHAR(6) NOT NULL, start_date VARCHAR(10) NULL DEFAULT NULL, end_date VARCHAR(10) NULL DEFAULT NULL, priority VARCHAR(2) NULL DEFAULT NULL, status VARCHAR(1) NULL DEFAULT NULL, project_id BIGINT(10) NOT NULL, PRIMARY KEY (task_id), CONSTRAINT FK_TASKS_PT FOREIGN KEY (parent_task_id) REFERENCES parent_tasks (parent_task_id), CONSTRAINT FK_TASKS_EI FOREIGN KEY (employee_id) REFERENCES users (employee_id), CONSTRAINT FK_TASKS_PI FOREIGN KEY (project_id) REFERENCES projects (project_id) ); select * from users; select * from projects; select * from parent_tasks; select * from tasks; update tasks set status = 'A';
-- # ะ—ะฐะฟั€ะพัั‹ -- ## ะ’ัั‚ะฐะฒะบะฐ ะดะฐะฝะฝั‹ั… -- ### ะ”ะพะฑะฐะฒะปัะตะผ ะฝะพะฒั‹ะน ะทะฐะบะฐะท ะธ ะตะณะพ ั‚ะพะฒะฐั€ั‹ start transaction; insert into orders (status) value (1); select @o := last_insert_id(); insert into order_items (order_id, device_id) values (@o, 2), (@o, 4), (@o, 7); commit; -- ## ะžะฑะฝะพะฒะปะตะฝะธะต ะดะฐะฝะฝั‹ั… -- ### ะ˜ะทะผะตะฝัะตะผ ัั‚ะฐั‚ัƒั ะทะฐะบะฐะทะฐ update orders set status = 2 where id = 15; -- ะฃะดะฐะปะตะฝะธะต ะดะฐะฝะฝั‹ั… -- ### ะฃะดะฐะปัะตะผ ั‚ะพะฒะฐั€ ะธะท ะทะฐะบะฐะทะฐ delete from order_items where id = 1056; -- ## ะ’ั‹ะฑะพั€ะบะฐ ะดะฐะฝะฝั‹ั… -- ### ะ’ัะต ะธะฝั‚ะตั€ั„ะตะนัั‹ select * from devices; -- ### ะ’ัะต ะฑะตะทะฟั€ะพะฒะพะดะฝั‹ะต ัƒัั‚ั€ะพะนัั‚ะฒะฐ select * from devices d left join types t on d.type_id = t.id where t.wireless = true; -- ### ะ’ัะต ะฑะตะทะฟั€ะพะฒะพะดะฝั‹ะต ัƒัั‚ั€ะพะนัั‚ะฒะฐ ะฟะพั…ะพะถะธะต ะฝะฐ 3Com select * from devices d left join types t on d.type_id = t.id where t.wireless = true and d.name LIKE '%3Com%'; -- ### ะšะพะปะธั‡ะตัั‚ะฒะพ ะฟั€ะพะดะฐะฝะฝั‹ั… (ะพะฟะปะฐั‡ะตะฝะฝั‹ั… ะธ ะฝะต ะฒะพะทะฒั€ะฐั‰ั‘ะฝะฝั‹ั…) ะธะฝั‚ะตั€ั„ะตะนัะพะฒ ะดะพั€ะพะถะต 40 select count(d.id) as result from devices d left join types t on d.type_id = t.id left join order_items oi on d.id = oi.device_id left join orders o on oi.order_id = o.id where t.wireless = false and d.cost > 40 and o.status between 2 and 7
<reponame>cleuillet/DbModelGenerator<filename>DbModelGenerator.Test/Fixtures/script.sql CREATE TABLE brand ( id SERIAL NOT NULL, name VARCHAR(50) NOT NULL, logo VARCHAR(200), archived BOOLEAN DEFAULT '0', color VARCHAR(100) NOT NULL, external_id VARCHAR(500), PRIMARY KEY (id), UNIQUE (name) ); CREATE TABLE referential_type ( id SERIAL NOT NULL, code VARCHAR(50) NOT NULL, active BOOLEAN NOT NULL, icon VARCHAR(1000), position INTEGER NOT NULL, referential_entity_type SMALLINT NOT NULL, PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE datagroup ( id SERIAL NOT NULL, is_default BOOLEAN DEFAULT '0' NOT NULL, entity_type VARCHAR(50) NOT NULL, position INTEGER DEFAULT 0 NOT NULL, referential_type_id INTEGER NOT NULL REFERENCES referential_type (id), PRIMARY KEY (id) ); CREATE TABLE configuration_field ( id SERIAL NOT NULL, code VARCHAR(50) NOT NULL, data_group_id INTEGER NOT NULL REFERENCES datagroup (id), is_system_type BOOLEAN DEFAULT '0' NOT NULL, is_visible BOOLEAN NOT NULL, is_mandatory BOOLEAN NOT NULL, is_locked BOOLEAN NOT NULL, is_visible_only_view_mode BOOLEAN DEFAULT '0' NOT NULL, is_keep_history BOOLEAN DEFAULT '0' NOT NULL, value_type VARCHAR(100) NOT NULL, position INTEGER NOT NULL, parent_id INTEGER REFERENCES configuration_field (id), no_parameter_list BOOLEAN DEFAULT '0' NOT NULL, is_personal_data BOOLEAN NOT NULL, is_visible_map BOOLEAN DEFAULT '0' NOT NULL, is_criteria BOOLEAN DEFAULT '0' NOT NULL, PRIMARY KEY (id), UNIQUE (code, data_group_id) ); CREATE TABLE configuration_field_list_item ( id SERIAL NOT NULL, code VARCHAR(50), configuration_field_id INTEGER NOT NULL REFERENCES configuration_field (id), position INTEGER NOT NULL, PRIMARY KEY (id) ); CREATE TABLE currency ( id SERIAL NOT NULL, code VARCHAR(3) NOT NULL, symbol VARCHAR(10), name VARCHAR(100) NOT NULL, PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE country ( id SERIAL NOT NULL, code VARCHAR(2) NOT NULL, name VARCHAR(100) NOT NULL, default_currency_id INTEGER NOT NULL REFERENCES currency (id), PRIMARY KEY (id), UNIQUE (code) ); INSERT INTO country (id, name, code, default_currency_id) VALUES (1, 'Belgium', 'BE', '1'), (2, 'France', '$TEST_VAR$', '1'), (4, 'Luxembourg', 'LU', '1'), (5, 'Netherlands', 'NL', '1'); ALTER SEQUENCE country_id_seq RESTART WITH 6; CREATE TABLE manager ( id SERIAL NOT NULL, user_profile_id TEXT NOT NULL, invitation_status VARCHAR(50) NOT NULL, function VARCHAR(50) NOT NULL, firstname VARCHAR(50) NOT NULL, lastname VARCHAR(50) NOT NULL, archived BOOLEAN DEFAULT '0' NOT NULL, PRIMARY KEY (id) ); CREATE TABLE nace ( id SERIAL NOT NULL, code VARCHAR(50) NOT NULL, label VARCHAR(150) NOT NULL, PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE location_type ( id serial not null, external_id varchar(500), PRIMARY KEY (id) ); CREATE TABLE operating_mode ( id SERIAL NOT NULL, shape_url VARCHAR(2083), svg_path VARCHAR(2083), code VARCHAR(50), PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE concept ( id SERIAL NOT NULL, code VARCHAR(50), PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE states ( id SERIAL NOT NULL, country_id INTEGER NOT NULL REFERENCES country (id), name VARCHAR(250), PRIMARY KEY (id), UNIQUE (name) ); CREATE TABLE zone ( id SERIAL NOT NULL, code VARCHAR(50), zone_manager_id INTEGER REFERENCES manager (id), PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE region ( id SERIAL NOT NULL, regional_manager_id INTEGER REFERENCES manager (id), brand_id INTEGER REFERENCES brand (id), code VARCHAR(50), zone_id INTEGER REFERENCES zone (id), country_id INTEGER REFERENCES country (id), PRIMARY KEY (id), UNIQUE (code) ); CREATE TABLE indexation_month ( id SERIAL NOT NULL, month_name VARCHAR(50), PRIMARY KEY (id) ); CREATE TABLE referential ( id SERIAL NOT NULL, code VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, brand_id INTEGER REFERENCES brand (id), operating_mode_id INTEGER REFERENCES operating_mode (id), referential_type_id INTEGER NOT NULL REFERENCES referential_type (id), street VARCHAR(100), street_complement VARCHAR(100), zip_code VARCHAR(10), city VARCHAR(50), country_id INTEGER NOT NULL REFERENCES country (id), state_id INTEGER REFERENCES states (id), region_id INTEGER REFERENCES region (id), phone VARCHAR(255), fax VARCHAR(255), web_site VARCHAR(255), email VARCHAR(255), /*company_id INTEGER,*/ currency_id INTEGER REFERENCES currency (id), location_type_id INTEGER REFERENCES location_type (id), mon_opening_hours VARCHAR(100), tue_opening_hours VARCHAR(100), wed_opening_hours VARCHAR(100), thu_opening_hours VARCHAR(100), fri_opening_hours VARCHAR(100), sat_opening_hours VARCHAR(100), sun_opening_hours VARCHAR(100), opening_date TIMESTAMP, closing_date TIMESTAMP, gross_surface NUMERIC(20, 2), sales_area NUMERIC(20, 2), full_time_equivalent NUMERIC(20, 2), concept_id INTEGER REFERENCES concept (id), main_site BOOLEAN DEFAULT '0' NOT NULL, administrative_code VARCHAR(255), iban VARCHAR(34), bic VARCHAR(11), exclude_from_sales_analysis BOOLEAN DEFAULT '0' NOT NULL, exclude_from_financial_analysis BOOLEAN DEFAULT '0' NOT NULL, latitude NUMERIC(10, 5), longitude NUMERIC(10, 5), qr_code_id TEXT, qr_code_created_date TIMESTAMP, cost_center VARCHAR(30), created_by TEXT, creation_date TIMESTAMP, last_modified_by TEXT, last_modification_date TIMESTAMP, legal_form VARCHAR(50), email_invoicing VARCHAR(200), month_of_closing INTEGER REFERENCES indexation_month (id), equity INTEGER, vat_exempt BOOLEAN, vat_number VARCHAR(15), nace_id INTEGER, is_deleted BOOLEAN DEFAULT '0' NOT NULL, comment TEXT, /*parent_id INTEGER,*/ is_company BOOLEAN DEFAULT '0' NOT NULL, active BOOLEAN, PRIMARY KEY (id), UNIQUE (code, referential_type_id) ); CREATE TABLE referential_history ( referential_id INTEGER NOT NULL REFERENCES referential (id), configuration_field_id INTEGER NOT NULL REFERENCES configuration_field (id), date_start TIMESTAMP NOT NULL, end_date TIMESTAMP, modified_on TIMESTAMP NOT NULL, comment VARCHAR(2000), status VARCHAR(50) NOT NULL, modified_by TEXT NOT NULL, created_by TEXT NOT NULL, parent_id INTEGER, nace_id INTEGER, month_of_closing INTEGER REFERENCES indexation_month (id), concept_id INTEGER REFERENCES concept (id), location_type_id INTEGER REFERENCES location_type (id), company_id INTEGER REFERENCES referential (id), region_id INTEGER REFERENCES region (id), state_id INTEGER REFERENCES states (id), operating_mode_id INTEGER REFERENCES operating_mode (id), brand_id INTEGER REFERENCES brand (id), list_item_id INTEGER REFERENCES configuration_field_list_item (id), long_text_value VARCHAR(2000), short_text_value VARCHAR(255), yes_no_value BOOLEAN, number_value NUMERIC(20, 2), percentage_value NUMERIC(7, 4), date_time_value TIMESTAMP, email_value VARCHAR(255), PRIMARY KEY (referential_id, configuration_field_id, modified_on) ); CREATE TABLE configuration_field_value ( id SERIAL NOT NULL, configuration_field_id INTEGER NOT NULL REFERENCES configuration_field (id), short_text_value VARCHAR(255), long_text_value VARCHAR(2000), date_time_value TIMESTAMP, percentage_value NUMERIC(7, 4), number_value NUMERIC(20, 2), yes_no_value BOOLEAN, email_value VARCHAR(255), currency_id INTEGER REFERENCES currency (id), list_item_id INTEGER REFERENCES configuration_field_list_item (id), referential_id INTEGER REFERENCES referential (id), PRIMARY KEY (id) ); ALTER TABLE referential ADD COLUMN company_id INTEGER REFERENCES referential (id); ALTER TABLE referential ADD COLUMN parent_id INTEGER REFERENCES referential (id); INSERT INTO referential_type (id, code, active, icon, position, referential_entity_type) VALUES (1, 'SITE', '1', 'icon-site', '1', '0'), (2, 'CANDIDATE', '0', 'icon-candidate', '1', '0'), (3, 'COMPETITOR', '0', 'icon-competitor', '1', '0'), (4, 'COMPANY', '1', 'icon-company', '1', '1'), (5, 'GROUPCOMPANY', '0', 'icon-groupcompany', '1', '1'), (6, 'REALPARTNER', '0', 'icon-realpartner', '1', '1'), (7, 'TECHNICALPARTNER', '0', 'icon-technicalpartner', '1', '1'), (8, 'SUPPLIER', '0', 'icon-supplier', '1', '1'); INSERT INTO datagroup (id, is_default, entity_type, position, referential_type_id) VALUES (2, '1', 'Site', '1', '1'), (3, '1', 'Site', '1', 2), (4, '1', 'Site', '1', 3), (5, '1', 'Partner', '1', 4), (6, '1', 'Partner', '1', 5), (7, '1', 'Partner', '1', 6), (8, '1', 'Partner', '1', 7), (9, '1', 'Partner', '1', 8), (10, '0', 'Site', 2, '1'); INSERT INTO currency (id, symbol, code, name) VALUES (1, 'โ‚ฌ', 'EUR', 'Euro'), (2, '$ ', 'USD', 'United States dollar'), (3, 'lei ', 'RO', 'Romanian leu'), (4, 'Lek ', 'ALL', 'Albanian lek'), (5, 'KM ', 'BAM', 'Bosnia and Herzegovina convertible mark'), (6, 'ะปะฒ', 'BG', 'Bulgarian lev'), (7, 'CHF ', 'CHF', 'Swiss franc'), (8, 'din./ะดะธะฝ.', 'RSD', 'Serbian dinar'), (9, 'Kc ', 'CZK', 'Czech koruna'), (10, 'ยฃ ', 'GBP', 'British pound'), (11, 'kn ', 'HRK', 'Croatian kuna'), (12, 'Ft ', 'HUF', 'Hungarian forint'), (13, 'Lt ', 'LTL', 'Lithuanian litas'), (14, 'Ls ', 'LVL', 'Latvian lats'), (15, 'kr ', 'NOK', 'Norwegian krone'), (16, 'โ€Žโ‚ฝ', 'RUB', 'Russian ruble'), (17, 'kr ', 'SEK', 'Swedish krona'), (18, 'ยฅ ', 'JPY', 'Japanese yen'), (19, 'C$ ', 'CAD', 'Canadian Dollar'), (20, 'Mex$', 'MX', 'Mexican Peso'), (21, 'QR ', 'QAR', 'Riyal'), (22, 'KD ', 'KWD', 'Kuwaiti dinar'), (23, 'AFL ', 'AWG', 'Aruban florin'), (24, 'ร‚ยฅ ', 'CNY', 'Renminbi'), (25, 'ุฏ.ุช', 'TND', 'Tunisian dinar'), (26, 'ุฏ.ู….', 'MAD', 'Moroccan dirham'), (27, 'ุฏุฌ', 'DZD', 'Algerian dinar'), (28, 'ุฏ.ุฅ', 'AED', 'United Arab Emirates dirham'), (29, 'โ‚บ', 'TRY', 'Turkish lira'), (30, '๏ทผย ', 'IRR', 'Iranian rial'), (31, '.ุฏ.ุจ', 'BHD', 'Bahraini dinar'), (32, 'แƒš', 'GEL', 'Georgian lari'), (33, 'CFA', 'XAF', 'West African CFA franc'), (34, 'JD', 'JOD', 'Jordanian dinar'), (35, 'โ‚ด', 'UAH', 'Ukrainian hryvnia'), (36, 'โ‚ธ', 'KZT', 'Tenge'), (37, 'ึ', 'AMD', 'Dram'), (38, 'โ‚ผ', 'AZ', 'Manat'), (39, 'Eยฃ', 'EGP', 'Egyptian pound'), (40, 'SR', 'SAR', 'Saudi riyal'), (41, 'ู„.ู„.', 'LBP', 'Lebanese pound'), (42, 'ุฑ.ุน.', 'OMR', 'Omani Rial'), (43, '?', 'AF', 'Afghan afghani'), (44, '$', 'XCD', 'East Caribbean dollar'), (45, 'Kz', 'AOA', 'Angolan kwanza'), (46, '$', 'ARS', 'Argentine peso'), (47, '$', 'AUD', 'Australian dollar'), (49, 'Bds$', 'BBD', 'Barbadian dollar'), (50, '?', 'BDT', 'Bangladeshi taka'), (51, 'Fr', 'XOF', 'West African CFA franc'), (52, 'Fr', 'BIF', 'Burundian franc'), (54, 'B$', 'BND', 'Brunei dollar'), (55, 'Bs.', 'BOB', 'Bolivian boliviano'), (56, 'R$', 'BRL', 'Brazilian real'), (57, '$', 'BSD', 'Bahamian dollar'), (58, 'Nu.', 'BT', 'Bhutanese ngultrum'), (59, 'P', 'BWP', 'Botswana pula'), (60, 'Br', 'BY', 'New Belarusian ruble'), (61, '$', 'BZD', 'Belize dollar'), (62, 'Fr', 'CDF', 'Congolese franc'), (65, '$', 'NZD', 'New Zealand dollar'), (66, '$', 'CLP', 'Chilean peso'), (68, '$', 'COP', 'Colombian peso'), (69, 'ยข', 'CRC', 'Costa Rican colรณn'), (70, '$', 'CUC', 'Cuban convertible peso'), (71, '$', 'CVE', 'Cape Verdean escudo'), (72, 'ฦ’', 'ANG', 'Netherlands Antillean guilder'), (73, 'Fr', 'DJF', 'Djiboutian franc'), (75, '$', 'DOP', 'Dominican peso'), (78, 'Nfk', 'ER', 'Eritrean nakfa'), (79, 'Br', 'ETB', 'Ethiopian birr'), (80, '$', 'FJD', 'Fijian dollar'), (81, '$', 'XND', 'Micronesian dollar_e'), (82, 'kr', 'DKK', 'Danish krone'), (85, '?', 'GHS', 'Ghanaian cedi'), (87, 'D', 'GMD', 'Gambian dalasi'), (88, 'Fr', 'GNF', 'Guinean franc'), (90, 'Q', 'GTQ', 'Guatemalan quetzal'), (92, '$', 'GYD', 'Guyanese dollar'), (94, 'L', 'HNL', 'Honduran lempira'), (95, 'G', 'HTG', 'Haitian gourde'), (96, 'Rp', 'IDR', 'Indonesian rupiah'), (97, '?', 'ILS', 'Israeli new shekel'), (98, '?', 'INR', 'Indian rupee'), (99, '?.?', 'IQD', 'Iraqi dinar'), (100, 'kr', 'ISK', 'Icelandic krรณna'), (101, '$', 'JMD', 'Jamaican dollar'), (102, 'Sh', 'KES', 'Kenyan shilling'), (103, '?', 'KGS', 'Kyrgyzstani som'), (104, '?', 'KHR', 'Cambodian riel'), (106, 'Fr', 'KMF', 'Comorian franc'), (108, '?', 'KPW', 'North Korean won'), (109, '?', 'KRW', 'South Korean won'), (110, '$', 'KYD', 'Cayman Islands dollar'), (111, '?', 'LAK', 'Lao kip'), (113, '??', 'LKR', 'Sri Lankan rupee'), (114, '$', 'LRD', 'Liberian dollar'), (115, 'L', 'LSL', 'Lesotho loti'), (116, '?.?', 'LYD', 'Libyan dinar'), (117, 'L', 'MDL', 'Moldovan leu'), (120, 'Ar', 'MGA', 'Malagasy ariary'), (122, '???', 'MKD', 'Macedonian denar'), (124, 'Ks', 'MMK', 'Burmese kyat'), (125, '?', 'MNT', 'Mongolian tรถgrรถg'), (127, 'UM', 'MRO', 'Mauritanian ouguiya'), (128, '?', 'MUR', 'Mauritian rupee'), (129, '.?', 'MVR', 'Maldivian rufiyaa'), (130, 'MK', 'MWK', 'Malawian kwacha'), (131, 'RM', 'MYR', 'Malaysian ringgit'), (132, 'MT', 'MZ', 'Mozambican metical'), (133, '$', 'NAD', 'Namibian dollar'), (135, '?', 'NG', 'Nigerian naira'), (136, 'C$', 'NIO', 'Nicaraguan cรณrdoba'), (137, '?', 'NPR', 'Nepalese rupee'), (141, 'B/.', 'PAB', 'Panamanian balboa'), (142, 'S/.', 'PE', 'Peruvian sol'), (143, 'Fr', 'XPF', 'CFP franc'), (144, 'K', 'PGK', 'Papua New Guinean kina'), (145, '?', 'PHP', 'Philippine peso'), (146, '?', 'PKR', 'Pakistani rupee'), (149, '$', 'XPD', 'Palauan dollar_e'), (150, '?', 'PYG', 'Paraguayan guaranรญ'), (151, 'Fr', 'RWF', 'Rwandan franc'), (152, '$', 'SBD', 'Solomon Islands dollar'), (153, '?', 'SCR', 'Seychellois rupee'), (154, '?.?.', 'SDG', 'Sudanese pound'), (157, 'Le', 'SLL', 'Sierra Leonean leone'), (160, 'Sh', 'SOS', 'Somali shilling'), (161, '$', 'SRD', 'Surinamese dollar'), (162, 'ยฃ', 'SSP', 'South Sudanese pound'), (163, 'Db', 'STD', 'Sรฃo Tomรฉ and Prรญncipe dobra'), (166, 'ยฃ', 'SYP', 'Syrian pound'), (167, 'L', 'SZL', 'Swazi lilangeni'), (170, '?', 'THB', 'Thai baht'), (171, '??', 'TJS', 'Tajikistani somoni'), (174, 'm', 'TMT', 'Turkmenistan manat'), (175, 'T$', 'TOP', 'Tongan pa?anga_p'), (176, '$', 'TTD', 'Trinidad and Tobago dollar'), (178, 'Sh', 'TZS', 'Tanzanian shilling'), (179, 'Sh', 'UGX', 'Ugandan shilling'), (180, '$', 'UYU', 'Uruguayan peso'), (181, '?', 'UZS', 'Uzbekistani so?m'), (183, 'Bs', 'VEF', 'Venezuelan bolรญvar'), (184, '?', 'VND', 'Vietnamese d?ng'), (185, 'Vt', 'VUV', 'Vanuatu vatu'), (186, 'T', 'WST', 'Samoan tala'), (187, '?', 'YER', 'Yemeni rial'), (188, 'R', 'ZAR', 'South African rand'), (189, 'ZK', 'ZMW', 'Zambian kwacha'); INSERT INTO country (id, name, code, default_currency_id) VALUES (1, 'Belgium', 'BE', '1'), (2, 'France', 'FR', '1'), (4, 'Luxembourg', 'LU', '1'), (5, 'Netherlands', 'NL', '1'), (234, 'United States', 'US', 2), (282, 'Andorra', 'AD', '1'), (283, 'Albania', 'AL', 4), (284, 'Austria', 'AT', '1'), (285, 'Bosnia and Herzegovina', 'BA', 5), (286, 'Bulgaria', 'BG', 6), (287, 'Switzerland', 'CH', 7), (289, 'Cyprus', 'CY', '1'), (290, 'Czech Republic', 'CZ', 9), (291, 'Germany', 'DE', '1'), (292, 'Denmark', 'DK', '1'), (293, 'Estonia', 'EE', '1'), (294, 'Spain', 'ES', '1'), (295, 'Finland', 'FI', '1'), (296, 'United Kingdom', 'GB', 10), (297, 'Greece', 'GR', '1'), (298, 'Croatia', 'HR', 11), (299, 'Hungary', 'HU', 12), (300, 'Ireland', 'IE', '1'), (301, 'Italy', 'IT', '1'), (302, 'Liechtenstein', 'LI', 7), (303, 'Lithuania', 'LT', 13), (304, 'Latvia', 'LV', 14), (305, 'Monaco', 'MC', '1'), (306, 'Norway', 'NO', '1'), (307, 'Portugal', 'PT', '1'), (308, 'Romania', 'RO', 3), (309, 'Serbia', 'RS', 8), (310, 'Russia', 'RU', 16), (311, 'Sweden', 'SE', 17), (312, 'Slovenia', 'SI', '1'), (313, 'Slovakia', 'SK', '1'), (314, 'Poland', 'PL', '1'), (315, 'Japan', 'JP', 18), (316, 'Canada', 'CA', 19), (317, 'Mexico', 'MX', 20), (318, 'Qatar', 'QA', 21), (319, 'Kuwait', 'KW', 22), (320, 'Aruba', 'AW', 23), (321, 'China', 'C', 21), (322, 'Tunisia', 'T', 25), (323, 'Morocco', 'MA', 26), (324, 'Algeria', 'DZ', 27), (325, 'United Arab Emirates', 'AE', 28), (326, 'Turkey', 'TR', 29), (327, 'Iran', 'IR', 30), (328, 'Bahrain', 'BH', 31), (329, 'Georgia', 'GE', 32), (330, 'Ivory Coast', 'CI', 33), (331, 'Jordan', 'JO', 34), (332, 'Malta', 'MT', '1'), (333, 'Ukraine', 'UA', 35), (334, 'Kazakhstan', 'KZ', 36), (335, 'Armenia', 'AM', 37), (336, 'Azerbaijan', 'AZ', 38), (337, 'Egypt', 'EG', 39), (338, 'Saudi Arabia', 'SA', 40), (339, 'Lebanon', 'LB', 41), (340, 'Oman', 'OM', 42), (341, 'Afghanistan', 'AF', 43), (342, 'Antigua And Barbuda', 'AG', 44), (343, 'Angola', 'AO', 45), (344, 'Argentina', 'AR', 46), (345, 'Australia', 'AU', 47), (346, 'ร…land Islands', 'AX', '1'), (347, 'Bosnia And Herzegovina', 'BB', 49), (348, 'Bangladesh', 'BD', 50), (349, 'Burkina Faso', 'BF', 51), (350, 'Burundi', 'BI', 52), (351, 'Benin', 'BJ', 51), (352, '<NAME>', 'B', 54), (353, 'Bolivia', 'BO', 55), (354, 'Brazil', 'BR', 56), (355, 'Bahamas', 'BS', 57), (356, 'Bhutan', 'BT', 58), (357, 'Botswana', 'BW', 59), (358, 'Belarus', 'BY', 60), (359, 'Belize', 'BZ', 61), (360, 'Congo, The Democratic Republic Of The', 'CD', 62), (361, 'Central African Republic', 'CF', 33), (362, 'Congo', 'CG', 33), (363, 'Cook Islands', 'CK', 65), (364, 'Chile', 'CL', 66), (365, 'Cameroon', 'CM', 33), (366, 'Colombia', 'CO', 68), (367, 'Costa Rica', 'CR', 69), (368, 'Cuba', 'CU', 70), (369, 'Cape Verde', 'CV', 71), (370, 'Curaรงao', 'CW', 72), (371, 'Djibouti', 'DJ', 73), (372, 'Dominica', 'DM', 44), (373, 'Dominican Republic', 'DO', 75), (374, 'Ecuador', 'EC', 2), (375, 'Western Sahara', 'EH', 26), (376, 'Eritrea', 'ER', 78), (377, 'Ethiopia', 'ET', 79), (378, 'Fiji', 'FJ', 80), (379, 'Micronesia, Federated States Of', 'FM', 81), (380, 'Faroe Islands', 'FO', 82), (381, 'Gabon', 'GA', 33), (382, 'Grenada', 'GD', 44), (383, 'Ghana', 'GH', 85), (384, 'Greenland', 'GL', 82), (385, 'Gambia', 'GM', 87), (386, 'Guinea', 'G', 88), (387, 'Equatorial Guinea', 'GQ', 33), (388, 'Guatemala', 'GT', 90), (389, 'Guinea-Bissau', 'GW', 51), (390, 'Guyana', 'GY', 92), (391, 'Heard Island And Mcdonald Islands', 'HM', 47), (392, 'Honduras', 'H', 94), (393, 'Haiti', 'HT', 95), (394, 'Indonesia', 'ID', 96), (395, 'Israel', 'IL', 97), (396, 'India', 'I', 98), (397, 'Iraq', 'IQ', 99), (398, 'Iceland', 'IS', 100), (399, 'Jamaica', 'JM', 101), (400, 'Kenya', 'KE', 102), (401, 'Kyrgyzstan', 'KG', 103), (402, 'Cambodia', 'KH', 104), (403, 'Kiribati', 'KI', 47), (404, 'Comoros', 'KM', 106), (405, 'Saint Kitts And Nevis', 'K', 44), (406, 'Korea, Democratic People''S Republic Of', 'KP', 108), (407, 'Korea, Republic Of', 'KR', 109), (408, 'Cayman Islands', 'KY', 110), (409, 'Lao People''S Democratic Republic', 'LA', 111), (410, 'S<NAME>', 'LC', 44), (411, 'S<NAME>', 'LK', 113), (412, 'Liberia', 'LR', 114), (413, 'Lesotho', 'LS', 115), (414, 'Libya', 'LY', 116), (415, 'Moldova, Republic Of', 'MD', 117), (416, 'Montenegro', 'ME', '1'), (417, '<NAME> (French Part)', 'MF', '1'), (418, 'Madagascar', 'MG', 120), (419, 'Marshall Islands', 'MH', 2), (420, 'Macedonia, The Former Yugoslav Republic Of', 'MK', 122), (421, 'Mali', 'ML', 51), (422, 'Myanmar', 'MM', 124), (423, 'Mongolia', 'M', 125), (424, 'Martinique', 'MQ', '1'), (425, 'Mauritania', 'MR', 127), (426, 'Mauritius', 'MU', 128), (427, 'Maldives', 'MV', 129), (428, 'Malawi', 'MW', 130), (429, 'Malaysia', 'MY', 131), (430, 'Mozambique', 'MZ', 132), (431, 'Namibia', 'NA', 133), (432, 'Niger', 'NE', 51), (433, 'Nigeria', 'NG', 135), (434, 'Nicaragua', 'NI', 136), (435, 'Nepal', 'NP', 137), (436, 'Nauru', 'NR', 47), (437, 'Niue', 'NU', 65), (438, 'New Zealand', 'NZ', 65), (439, 'Panama', 'PA', 141), (440, 'Peru', 'PE', 142), (441, 'French Polynesia', 'PF', 143), (442, 'Papua New Guinea', 'PG', 144), (443, 'Philippines', 'PH', 145), (444, 'Pakistan', 'PK', 146), (445, 'Saint Pierre And Miquelon', 'PM', '1'), (446, 'Palestinian Territory, Occupied', 'PS', 97), (447, 'Palau', 'PW', 149), (448, 'Paraguay', 'PY', 150), (449, 'Rwanda', 'RW', 151), (450, 'Solomon Islands', 'SB', 152), (451, 'Seychelles', 'SC', 153), (452, 'Sudan', 'SD', 154), (453, 'Singapore', 'SG', 54), (454, '<NAME>', 'SJ', 15), (455, 'Sierra Leone', 'SL', 157), (456, 'San Marino', 'SM', '1'), (457, 'Senegal', 'S', 51), (458, 'Somalia', 'SO', 160), (459, 'Suriname', 'SR', 161), (460, 'South Sudan', 'SS', 162), (461, 'Sao Tome And Principe', 'ST', 163), (462, 'El Salvador', 'SV', 2), (463, '<NAME> (Dutch Part)', 'SX', 72), (464, 'Syrian Arab Republic', 'SY', 166), (465, 'Swaziland', 'SZ', 167), (466, 'Chad', 'TD', 33), (467, 'Togo', 'TG', 51), (468, 'Thailand', 'TH', 170), (469, 'Tajikistan', 'TJ', 171), (470, 'Tokelau', 'TK', 65), (471, 'Timor-Leste', 'TL', 2), (472, 'Turkmenistan', 'TM', 174), (473, 'Tonga', 'TO', 175), (474, 'Trinidad And Tobago', 'TT', 176), (475, 'Tuvalu', 'TV', 47), (476, 'Tanzania, United Republic Of', 'TZ', 178), (477, 'Uganda', 'UG', 179), (478, 'Uruguay', 'UY', 180), (479, 'Uzbekistan', 'UZ', 181), (480, 'Saint Vincent And The Grenadines', 'VC', 44), (481, 'Venezuela, Bolivarian Republic Of', 'VE', 183), (482, 'Viet Nam', 'V', 184), (483, 'Vanuatu', 'VU', 185), (484, 'Samoa', 'WS', 186), (485, 'Yemen', 'YE', 187), (486, 'South Africa', 'ZA', 188), (487, 'Zambia', 'ZM', 189), (488, 'Zimbabwe', 'ZW', 2); INSERT INTO states (id, country_id, name) VALUES (1, 316, 'Alberta'), (2, 316, 'Yukon'), (3, 316, 'Territoires du Nord-Ouest'), (4, 316, 'Terre-Neuve-et-Labrador'), (5, 316, 'Saskatchewan'), (6, 316, 'Quebec'), (7, 316, 'Ontario'), (8, 316, 'Nunavut'), (9, 316, 'Nouvelle-Ecosse'), (10, 316, 'Nouveau-Brunswick'), (11, 316, 'Manitoba'), (12, 316, 'รƒลฝle-du-Prince-รƒโ€ฐdouard'), (13, 316, 'Colombie-Britannique'), (14, 291, 'North Rhine-Westphalia'), (15, 291, 'Rhineland-Palatinate'), (16, 291, 'Sarre'), (17, 291, 'Saxe'), (18, 291, 'Saxe-Anhalt'), (19, 291, 'Schleswig-Holstein'), (20, 291, 'Thuringe'), (21, 291, 'Mecklenburg-Vorpommern'), (22, 291, 'Hesse'), (23, 291, 'Bade-Wurtemberg'), (24, 291, 'Basse-Saxe'), (25, 291, 'Baviรจre'), (26, 291, 'Berlin'), (27, 291, 'Brandebourg'), (28, 291, 'Brรƒยชme'), (29, 291, 'Hambourg'), (30, 294, 'Valencian Community'), (31, 294, 'Extremadura'), (32, 294, 'Galice'), (33, 294, 'Balearic Islands'), (34, 294, 'La Rioja'), (35, 294, 'Principality of Asturias'), (36, 294, 'Region of Murcia'), (37, 294, 'Naval Community of Navarre'), (38, 294, 'Community of Madrid'), (39, 294, 'Basque Autonomous Community'), (40, 294, 'Andalousie'), (41, 294, 'Aragon'), (42, 294, 'Canaries'), (43, 294, 'Cantabrie'), (44, 294, 'Castille-et-Leรƒยณn'), (45, 294, 'Castille-La Manche'), (46, 294, 'Catalogne'), (74, 234, 'Ohio'), (75, 234, 'Nouveau Mexique'), (76, 234, 'New York'), (77, 234, 'New Jersey'), (78, 234, 'New Hampshire'), (79, 234, 'Nevada'), (80, 234, 'Nebraska'), (81, 234, 'Montana'), (82, 234, 'Missouri'), (83, 234, 'Mississippi'), (84, 234, 'Minnesota'), (85, 234, 'Oklahoma'), (86, 234, 'Oregon'), (87, 234, 'Wyoming'), (88, 234, 'Wisconsin'), (89, 234, 'Washington'), (90, 234, 'Virginie Occidentale'), (91, 234, 'Virginie'), (92, 234, 'Vermont'), (93, 234, 'Utah'), (94, 234, 'Texas'), (95, 234, 'Tennessee'), (96, 234, 'Rhode Island'), (97, 234, 'Pennsylvanie'), (98, 234, 'Michigan'), (99, 234, 'Massachusetts'), (100, 234, '<NAME>'), (101, 234, '<NAME>'), (102, 234, 'Connecticut'), (103, 234, 'Colorado'), (104, 234, '<NAME>'), (105, 234, '<NAME>'), (106, 234, 'Californie'), (107, 234, 'Arkansas'), (108, 234, 'Arizona'), (109, 234, 'Alaska'), (110, 234, 'Delaware'), (111, 234, 'Floride'), (112, 234, 'Gรฉorgie'), (113, 234, 'Maryland'), (114, 234, 'Maine'), (115, 234, 'Louisiane'), (116, 234, 'Kentucky'), (117, 234, 'Kansas'), (118, 234, 'Iowa'), (119, 234, 'Indiana'), (120, 234, 'Illinois'), (121, 234, 'Idaho'), (122, 234, 'Hawaii'), (123, 234, 'Alabama'), (124, 2, 'Auvergne-Rhรดne-Alpes'), (125, 2, 'Bourgogne-Franche-Comtรฉ'), (126, 2, 'Bretagne'), (127, 2, 'Centre-Val de Loire'), (128, 2, 'Corse'), (129, 2, 'Grand Est'), (130, 2, 'Hauts-de-France'), (131, 2, 'รŽle-de-France'), (132, 2, 'Normandie'), (133, 2, 'Nouvelle-Aquitaine'), (134, 2, 'Occitanie'), (135, 2, 'Pays de la Loire'), (136, 2, 'Provence-Alpes-Cรดte d''Azur'), (137, 2, 'Guadeloupe'), (138, 2, 'Guyane'), (139, 2, 'Martinique'), (140, 2, 'La Rรฉunion'), (141, 2, 'Mayotte'); INSERT INTO configuration_field (id, code, data_group_id, is_system_type, is_visible, is_mandatory, is_locked, is_visible_only_view_mode, is_keep_history, value_type, position, parent_id, no_parameter_list, is_personal_data, is_visible_map, is_criteria) VALUES (1, 'Code', 2, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (2, 'Name', 2, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (3, 'Brand', 2, '1', '1', '1', '1', '0', '0', 'ListItems', 40, NULL, '0', '0', '1', '1'), (4, 'OperatingMode', 2, '1', '1', '1', '1', '0', '0', 'ListItems', 30, NULL, '1', '0', '0', '1'), (5, 'Company', 2, '1', '1', '1', '0', '0', '0', 'ListItems', 50, NULL, '1', '0', '0', '1'), (7, 'Currency', 10, '1', '1', '0', '0', '0', '0', 'ListItems', 100, NULL, '1', '0', '0', '1'), (8, 'Address', 2, '1', '1', '1', '1', '0', '0', 'Complex', 70, NULL, '0', '0', '0', '0'), (9, 'State', 2, '1', '1', '0', '0', '0', '0', 'ListItems', 80, NULL, '1', '0', '0', '1'), (10, 'Email', 2, '1', '1', '0', '0', '0', '0', 'Email', 110, NULL, '0', '0', '0', '0'), (11, 'Phone', 2, '1', '1', '0', '0', '0', '0', 'ShortText', 90, NULL, '0', '0', '0', '0'), (12, 'Fax', 2, '1', '1', '0', '0', '0', '0', 'ShortText', 100, NULL, '0', '0', '0', '0'), (13, 'WebSite', 2, '1', '1', '0', '0', '0', '0', 'ShortText', 120, NULL, '0', '0', '0', '0'), (14, 'Region', 10, '1', '1', '0', '1', '0', '0', 'ListItems', 30, NULL, '0', '0', '0', '1'), (16, 'LocationType', 10, '1', '1', '0', '0', '0', '0', 'ListItems', 40, NULL, '0', '0', '0', '1'), (17, 'OpeningHours', 2, '1', '0', '0', '0', '0', '0', 'Complex', 140, NULL, '0', '0', '0', '0'), (18, 'OpeningDate', 10, '1', '1', '0', '0', '0', '0', 'Date', 10, NULL, '0', '0', '0', '0'), (19, 'ClosingDate', 10, '1', '1', '0', '0', '1', '0', 'Date', 20, NULL, '0', '0', '0', '0'), (22, 'GrossSurface', 10, '1', '1', '0', '0', '0', '0', 'Number', 90, NULL, '0', '0', '0', '0'), (23, 'SalesArea', 2, '1', '0', '0', '0', '0', '0', 'Number', 150, NULL, '0', '0', '0', '0'), (24, 'FullTimeEquivalent', 10, '1', '0', '0', '0', '0', '0', 'Number', 80, NULL, '0', '0', '0', '0'), (25, 'Concept', 10, '1', '1', '0', '0', '0', '0', 'ListItems', 70, NULL, '0', '0', '0', '1'), (26, 'MainSite', 2, '1', '0', '0', '0', '0', '0', 'YesNo', 160, NULL, '0', '0', '0', '0'), (27, 'AdministrativeCode', 2, '1', '0', '0', '0', '0', '0', 'ShortText', 170, NULL, '0', '0', '0', '0'), (28, 'Iban', 2, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (29, 'Bic', 2, '1', '0', '0', '0', '0', '0', 'ShortText', 190, NULL, '0', '0', '0', '0'), (30, 'ExcludeFromSalesAnalysis', 10, '1', '1', '0', '0', '0', '0', 'YesNo', 110, NULL, '0', '0', '0', '0'), (31, 'ExcludeFromFinancialAnalysis', 2, '1', '0', '0', '0', '0', '0', 'YesNo', 200, NULL, '0', '0', '0', '0'), (32, 'CostCenter', 2, '1', '0', '0', '0', '0', '0', 'ShortText', 210, NULL, '0', '0', '0', '0'), (33, 'CreationDate', 2, '1', '0', '0', '0', '1', '0', 'DateTime', 220, NULL, '0', '0', '0', '0'), (34, 'CreatedBy', 2, '1', '0', '0', '0', '1', '0', 'ListItems', 230, NULL, '1', '0', '0', '1'), (35, 'LastModificationDate', 2, '1', '0', '0', '0', '1', '0', 'DateTime', 240, NULL, '0', '0', '0', '0'), (36, 'LastModifiedBy', 2, '1', '0', '0', '0', '1', '0', 'ListItems', 250, NULL, '1', '0', '0', '1'), (37, 'Code', 3, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (38, 'Name', 3, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (39, 'Brand', 3, '1', '1', '1', '1', '0', '0', 'ListItems', 30, NULL, '0', '0', '1', '1'), (40, 'OperatingMode', 3, '1', '1', '1', '1', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (41, 'Company', 3, '1', '1', '0', '0', '0', '0', 'ListItems', 50, NULL, '1', '0', '0', '1'), (43, 'Currency', 3, '1', '1', '0', '0', '0', '0', 'ListItems', 70, NULL, '1', '0', '0', '1'), (44, 'Address', 3, '1', '1', '1', '1', '0', '0', 'Complex', 80, NULL, '0', '0', '0', '0'), (45, 'State', 3, '1', '0', '0', '0', '0', '0', 'ListItems', 90, NULL, '1', '0', '0', '1'), (46, 'Email', 3, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (47, 'Phone', 3, '1', '1', '0', '0', '0', '0', 'ShortText', 110, NULL, '0', '0', '0', '0'), (48, 'Fax', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 120, NULL, '0', '0', '0', '0'), (49, 'WebSite', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 130, NULL, '0', '0', '0', '0'), (50, 'Region', 3, '1', '1', '0', '1', '0', '0', 'ListItems', 140, NULL, '0', '0', '0', '1'), (52, 'LocationType', 3, '1', '0', '0', '0', '0', '0', 'ListItems', 160, NULL, '0', '0', '0', '1'), (53, 'OpeningHours', 3, '1', '1', '0', '0', '0', '0', 'Complex', 170, NULL, '0', '0', '0', '0'), (54, 'OpeningDate', 3, '1', '1', '0', '0', '0', '0', 'Date', 180, NULL, '0', '0', '0', '0'), (55, 'ClosingDate', 3, '1', '1', '0', '0', '1', '0', 'Date', 190, NULL, '0', '0', '0', '0'), (58, 'GrossSurface', 3, '1', '1', '0', '0', '0', '0', 'Number', 220, NULL, '0', '0', '0', '0'), (59, 'SalesArea', 3, '1', '1', '0', '0', '0', '0', 'Number', 230, NULL, '0', '0', '0', '0'), (60, 'FullTimeEquivalent', 3, '1', '0', '0', '0', '0', '0', 'Number', 240, NULL, '0', '0', '0', '0'), (61, 'Concept', 3, '1', '0', '0', '0', '0', '0', 'ListItems', 250, NULL, '0', '0', '0', '1'), (62, 'MainSite', 3, '1', '0', '0', '0', '0', '0', 'YesNo', 260, NULL, '0', '0', '0', '0'), (63, 'AdministrativeCode', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 270, NULL, '0', '0', '0', '0'), (64, 'Iban', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 280, NULL, '0', '0', '0', '0'), (65, 'Bic', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 290, NULL, '0', '0', '0', '0'), (66, 'ExcludeFromSalesAnalysis', 3, '1', '0', '0', '0', '0', '0', 'YesNo', 300, NULL, '0', '0', '0', '0'), (67, 'ExcludeFromFinancialAnalysis', 3, '1', '0', '0', '0', '0', '0', 'YesNo', 310, NULL, '0', '0', '0', '0'), (68, 'CostCenter', 3, '1', '0', '0', '0', '0', '0', 'ShortText', 320, NULL, '0', '0', '0', '0'), (69, 'CreationDate', 3, '1', '0', '0', '0', '1', '0', 'DateTime', 330, NULL, '0', '0', '0', '0'), (70, 'CreatedBy', 3, '1', '0', '0', '0', '1', '0', 'ListItems', 340, NULL, '1', '0', '0', '1'), (71, 'LastModificationDate', 3, '1', '0', '0', '0', '1', '0', 'DateTime', 350, NULL, '0', '0', '0', '0'), (72, 'LastModifiedBy', 3, '1', '0', '0', '0', '1', '0', 'ListItems', 360, NULL, '1', '0', '0', '1'), (73, 'Code', 4, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (74, 'Name', 4, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (75, 'Brand', 4, '1', '1', '1', '1', '0', '0', 'ListItems', 30, NULL, '0', '0', '1', '1'), (76, 'OperatingMode', 4, '1', '1', '1', '1', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (77, 'Company', 4, '1', '1', '0', '0', '0', '0', 'ListItems', 50, NULL, '1', '0', '0', '1'), (79, 'Currency', 4, '1', '1', '0', '0', '0', '0', 'ListItems', 70, NULL, '1', '0', '0', '1'), (80, 'Address', 4, '1', '1', '1', '1', '0', '0', 'Complex', 80, NULL, '0', '0', '0', '0'), (81, 'State', 4, '1', '0', '0', '0', '0', '0', 'ListItems', 90, NULL, '1', '0', '0', '1'), (82, 'Email', 4, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (83, 'Phone', 4, '1', '1', '0', '0', '0', '0', 'ShortText', 110, NULL, '0', '0', '0', '0'), (84, 'Fax', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 120, NULL, '0', '0', '0', '0'), (85, 'WebSite', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 130, NULL, '0', '0', '0', '0'), (86, 'Region', 4, '1', '1', '0', '1', '0', '0', 'ListItems', 140, NULL, '0', '0', '0', '1'), (88, 'LocationType', 4, '1', '0', '0', '0', '0', '0', 'ListItems', 160, NULL, '0', '0', '0', '1'), (89, 'OpeningHours', 4, '1', '1', '0', '0', '0', '0', 'Complex', 170, NULL, '0', '0', '0', '0'), (90, 'OpeningDate', 4, '1', '1', '0', '0', '0', '0', 'Date', 180, NULL, '0', '0', '0', '0'), (91, 'ClosingDate', 4, '1', '1', '0', '0', '1', '0', 'Date', 190, NULL, '0', '0', '0', '0'), (94, 'GrossSurface', 4, '1', '1', '0', '0', '0', '0', 'Number', 220, NULL, '0', '0', '0', '0'), (95, 'SalesArea', 4, '1', '1', '0', '0', '0', '0', 'Number', 230, NULL, '0', '0', '0', '0'), (96, 'FullTimeEquivalent', 4, '1', '0', '0', '0', '0', '0', 'Number', 240, NULL, '0', '0', '0', '0'), (97, 'Concept', 4, '1', '0', '0', '0', '0', '0', 'ListItems', 250, NULL, '0', '0', '0', '1'), (98, 'MainSite', 4, '1', '0', '0', '0', '0', '0', 'YesNo', 260, NULL, '0', '0', '0', '0'), (99, 'AdministrativeCode', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 270, NULL, '0', '0', '0', '0'), (100, 'Iban', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 280, NULL, '0', '0', '0', '0'), (101, 'Bic', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 290, NULL, '0', '0', '0', '0'), (102, 'ExcludeFromSalesAnalysis', 4, '1', '0', '0', '0', '0', '0', 'YesNo', 300, NULL, '0', '0', '0', '0'), (103, 'ExcludeFromFinancialAnalysis', 4, '1', '0', '0', '0', '0', '0', 'YesNo', 310, NULL, '0', '0', '0', '0'), (104, 'CostCenter', 4, '1', '0', '0', '0', '0', '0', 'ShortText', 320, NULL, '0', '0', '0', '0'), (105, 'CreationDate', 4, '1', '0', '0', '0', '1', '0', 'DateTime', 330, NULL, '0', '0', '0', '0'), (106, 'CreatedBy', 4, '1', '0', '0', '0', '1', '0', 'ListItems', 340, NULL, '1', '0', '0', '1'), (107, 'LastModificationDate', 4, '1', '0', '0', '0', '1', '0', 'DateTime', 350, NULL, '0', '0', '0', '0'), (108, 'LastModifiedBy', 4, '1', '0', '0', '0', '1', '0', 'ListItems', 360, NULL, '1', '0', '0', '1'), (109, 'Zone', 2, '1', '0', '0', '0', '1', '0', 'ListItems', 130, NULL, '0', '0', '0', '1'), (110, 'Director', 2, '1', '0', '0', '0', '1', '0', 'ListItems', 60, NULL, '1', '0', '0', '1'), (112, 'Street', 2, '1', '1', '1', '1', '0', '0', 'ShortText', 71, 8, '0', '0', '1', '0'), (113, 'StreetComplement', 2, '1', '1', '0', '1', '0', '0', 'ShortText', 72, 8, '0', '0', '1', '0'), (114, 'ZipCode', 2, '1', '1', '1', '1', '0', '0', 'ShortText', 73, 8, '0', '0', '1', '0'), (115, 'City', 2, '1', '1', '1', '1', '0', '0', 'ShortText', 74, 8, '0', '0', '1', '0'), (116, 'Country', 2, '1', '1', '1', '1', '0', '0', 'ListItems', 75, 8, '1', '0', '1', '1'), (117, 'MonOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 141, 17, '0', '0', '0', '0'), (118, 'TueOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 142, 17, '0', '0', '0', '0'), (119, 'WedOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 143, 17, '0', '0', '0', '0'), (120, 'ThuOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 144, 17, '0', '0', '0', '0'), (121, 'FriOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 145, 17, '0', '0', '0', '0'), (122, 'SatOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 146, 17, '0', '0', '0', '0'), (123, 'SunOpeningHours', 2, '1', '0', '0', '1', '0', '0', 'ShortText', 147, 17, '0', '0', '0', '0'), (124, 'Street', 3, '1', '1', '1', '1', '0', '0', 'ShortText', 81, 44, '0', '0', '1', '0'), (125, 'StreetComplement', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 82, 44, '0', '0', '1', '0'), (126, 'ZipCode', 3, '1', '1', '1', '1', '0', '0', 'ShortText', 83, 44, '0', '0', '1', '0'), (127, 'City', 3, '1', '1', '1', '1', '0', '0', 'ShortText', 84, 44, '0', '0', '1', '0'), (128, 'Country', 3, '1', '1', '1', '1', '0', '0', 'ListItems', 85, 44, '1', '0', '1', '1'), (129, 'MonOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 171, 53, '0', '0', '0', '0'), (130, 'TueOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 172, 53, '0', '0', '0', '0'), (131, 'WedOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 173, 53, '0', '0', '0', '0'), (132, 'ThuOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 174, 53, '0', '0', '0', '0'), (133, 'FriOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 175, 53, '0', '0', '0', '0'), (134, 'SatOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 176, 53, '0', '0', '0', '0'), (135, 'SunOpeningHours', 3, '1', '1', '0', '1', '0', '0', 'ShortText', 177, 53, '0', '0', '0', '0'), (136, 'Street', 4, '1', '1', '1', '1', '0', '0', 'ShortText', 81, 80, '0', '0', '1', '0'), (137, 'StreetComplement', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 82, 80, '0', '0', '1', '0'), (138, 'ZipCode', 4, '1', '1', '1', '1', '0', '0', 'ShortText', 83, 80, '0', '0', '1', '0'), (139, 'City', 4, '1', '1', '1', '1', '0', '0', 'ShortText', 84, 80, '0', '0', '1', '0'), (140, 'Country', 4, '1', '1', '1', '1', '0', '0', 'ListItems', 85, 80, '1', '0', '1', '1'), (141, 'MonOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 171, 89, '0', '0', '0', '0'), (142, 'TueOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 172, 89, '0', '0', '0', '0'), (143, 'WedOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 173, 89, '0', '0', '0', '0'), (144, 'ThuOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 174, 89, '0', '0', '0', '0'), (145, 'FriOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 175, 89, '0', '0', '0', '0'), (146, 'SatOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 176, 89, '0', '0', '0', '0'), (147, 'SunOpeningHours', 4, '1', '1', '0', '1', '0', '0', 'ShortText', 177, 89, '0', '0', '0', '0'), (148, 'Code', 5, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (149, 'Name', 5, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (150, 'LegalForm', 5, '1', '1', '0', '0', '0', '0', 'ShortText', 30, NULL, '0', '0', '0', '0'), (151, 'parentId', 5, '1', '0', '0', '0', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (152, 'Address', 5, '1', '1', '1', '1', '0', '0', 'Complex', 50, NULL, '0', '0', '0', '0'), (153, 'Street', 5, '1', '1', '1', '1', '0', '0', 'ShortText', 51, 152, '0', '0', '1', '0'), (154, 'StreetComplement', 5, '1', '1', '0', '1', '0', '0', 'ShortText', 52, 152, '0', '0', '1', '0'), (155, 'ZipCode', 5, '1', '1', '1', '1', '0', '0', 'ShortText', 53, 152, '0', '0', '1', '0'), (156, 'City', 5, '1', '1', '1', '1', '0', '0', 'ShortText', 54, 152, '0', '0', '1', '0'), (157, 'Country', 5, '1', '1', '1', '1', '0', '0', 'ListItems', 55, 152, '1', '0', '1', '1'), (158, 'State', 5, '1', '0', '0', '0', '0', '0', 'ListItems', 60, NULL, '1', '0', '0', '1'), (159, 'Phone', 5, '1', '1', '0', '0', '0', '0', 'ShortText', 70, NULL, '0', '0', '0', '0'), (160, 'Fax', 5, '1', '1', '0', '0', '0', '0', 'ShortText', 80, NULL, '0', '0', '0', '0'), (161, 'WebSite', 5, '1', '0', '0', '0', '0', '0', 'ShortText', 90, NULL, '0', '0', '0', '0'), (162, 'Email', 5, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (163, 'MonthOfClosing', 5, '1', '1', '0', '0', '0', '0', 'ListItems', 110, NULL, '1', '0', '0', '1'), (164, 'Equity', 5, '1', '1', '0', '0', '0', '0', 'Number', 120, NULL, '0', '0', '0', '0'), (165, 'Currency', 5, '1', '0', '0', '0', '0', '0', 'ListItems', 130, NULL, '1', '0', '0', '1'), (166, 'OpeningHours', 5, '1', '0', '0', '0', '0', '0', 'Complex', 140, NULL, '0', '0', '0', '0'), (167, 'MonOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 141, 166, '0', '0', '0', '0'), (168, 'TueOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 142, 166, '0', '0', '0', '0'), (169, 'WedOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 143, 166, '0', '0', '0', '0'), (170, 'ThuOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 144, 166, '0', '0', '0', '0'), (171, 'FriOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 145, 166, '0', '0', '0', '0'), (172, 'SatOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 146, 166, '0', '0', '0', '0'), (173, 'SunOpeningHours', 5, '1', '0', '0', '1', '0', '0', 'ShortText', 147, 166, '0', '0', '0', '0'), (174, 'OpeningDate', 5, '1', '0', '0', '0', '0', '0', 'Date', 150, NULL, '0', '0', '0', '0'), (175, 'ClosingDate', 5, '1', '0', '0', '0', '1', '0', 'Date', 160, NULL, '0', '0', '0', '0'), (176, 'AdministrativeCode', 5, '1', '0', '0', '0', '0', '0', 'ShortText', 170, NULL, '0', '0', '0', '0'), (177, 'Iban', 5, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (178, 'Bic', 5, '1', '0', '0', '0', '0', '0', 'ShortText', 190, NULL, '0', '0', '0', '0'), (179, 'Nace', 5, '1', '1', '0', '0', '0', '0', 'ListItems', 200, NULL, '0', '0', '0', '1'), (180, 'VATNumber', 5, '1', '1', '0', '0', '0', '0', 'ShortText', 210, NULL, '0', '0', '0', '0'), (181, 'VATExempt', 5, '1', '0', '0', '0', '0', '0', 'YesNo', 260, NULL, '0', '0', '0', '0'), (182, 'ExcludeFromSalesAnalysis', 5, '1', '0', '0', '0', '0', '0', 'YesNo', 230, NULL, '0', '0', '0', '0'), (183, 'ExcludeFromFinancialAnalysis', 5, '1', '1', '0', '0', '0', '0', 'YesNo', 240, NULL, '0', '0', '0', '0'), (184, 'Comment', 5, '1', '1', '0', '0', '0', '0', 'LongText', 270, NULL, '0', '0', '0', '0'), (185, 'CreationDate', 5, '1', '0', '0', '0', '1', '0', 'DateTime', 280, NULL, '0', '0', '0', '0'), (186, 'CreatedBy', 5, '1', '0', '0', '0', '1', '0', 'ListItems', 290, NULL, '1', '0', '0', '1'), (187, 'LastModificationDate', 5, '1', '0', '0', '0', '1', '0', 'DateTime', 300, NULL, '0', '0', '0', '0'), (188, 'LastModifiedBy', 5, '1', '0', '0', '0', '1', '0', 'ListItems', 310, NULL, '1', '0', '0', '1'), (189, 'Code', 6, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (190, 'Name', 6, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (191, 'LegalForm', 6, '1', '1', '0', '0', '0', '0', 'ShortText', 30, NULL, '0', '0', '0', '0'), (192, 'parentId', 6, '1', '1', '0', '0', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (193, 'Address', 6, '1', '1', '1', '1', '0', '0', 'Complex', 50, NULL, '0', '0', '0', '0'), (194, 'Street', 6, '1', '1', '1', '1', '0', '0', 'ShortText', 51, 193, '0', '0', '1', '0'), (195, 'StreetComplement', 6, '1', '1', '0', '1', '0', '0', 'ShortText', 52, 193, '0', '0', '1', '0'), (196, 'ZipCode', 6, '1', '1', '1', '1', '0', '0', 'ShortText', 53, 193, '0', '0', '1', '0'), (197, 'City', 6, '1', '1', '1', '1', '0', '0', 'ShortText', 54, 193, '0', '0', '1', '0'), (198, 'Country', 6, '1', '1', '1', '1', '0', '0', 'ListItems', 55, 193, '1', '0', '1', '1'), (199, 'State', 6, '1', '0', '0', '0', '0', '0', 'ListItems', 60, NULL, '1', '0', '0', '1'), (200, 'Phone', 6, '1', '1', '0', '0', '0', '0', 'ShortText', 70, NULL, '0', '0', '0', '0'), (201, 'Fax', 6, '1', '1', '0', '0', '0', '0', 'ShortText', 80, NULL, '0', '0', '0', '0'), (202, 'WebSite', 6, '1', '1', '0', '0', '0', '0', 'ShortText', 90, NULL, '0', '0', '0', '0'), (203, 'Email', 6, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (204, 'MonthOfClosing', 6, '1', '1', '0', '0', '0', '0', 'ListItems', 110, NULL, '1', '0', '0', '1'), (205, 'Equity', 6, '1', '1', '0', '0', '0', '0', 'Number', 120, NULL, '0', '0', '0', '0'), (206, 'Currency', 6, '1', '1', '0', '0', '0', '0', 'ListItems', 130, NULL, '1', '0', '0', '1'), (207, 'OpeningHours', 6, '1', '0', '0', '0', '0', '0', 'Complex', 140, NULL, '0', '0', '0', '0'), (208, 'MonOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 141, 207, '0', '0', '0', '0'), (209, 'TueOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 142, 207, '0', '0', '0', '0'), (210, 'WedOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 143, 207, '0', '0', '0', '0'), (211, 'ThuOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 144, 207, '0', '0', '0', '0'), (212, 'FriOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 145, 207, '0', '0', '0', '0'), (213, 'SatOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 146, 207, '0', '0', '0', '0'), (214, 'SunOpeningHours', 6, '1', '0', '0', '1', '0', '0', 'ShortText', 147, 207, '0', '0', '0', '0'), (215, 'OpeningDate', 6, '1', '1', '0', '0', '0', '0', 'Date', 150, NULL, '0', '0', '0', '0'), (216, 'ClosingDate', 6, '1', '1', '0', '0', '1', '0', 'Date', 160, NULL, '0', '0', '0', '0'), (217, 'AdministrativeCode', 6, '1', '0', '0', '0', '0', '0', 'ShortText', 170, NULL, '0', '0', '0', '0'), (218, 'Iban', 6, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (219, 'Bic', 6, '1', '0', '0', '0', '0', '0', 'ShortText', 190, NULL, '0', '0', '0', '0'), (220, 'Nace', 6, '1', '1', '0', '0', '0', '0', 'ListItems', 200, NULL, '0', '0', '0', '1'), (221, 'VATNumber', 6, '1', '1', '0', '0', '0', '0', 'ShortText', 210, NULL, '0', '0', '0', '0'), (222, 'VATExempt', 6, '1', '1', '0', '0', '0', '0', 'YesNo', 220, NULL, '0', '0', '0', '0'), (223, 'ExcludeFromSalesAnalysis', 6, '1', '0', '0', '0', '0', '0', 'YesNo', 230, NULL, '0', '0', '0', '0'), (224, 'ExcludeFromFinancialAnalysis', 6, '1', '0', '0', '0', '0', '0', 'YesNo', 240, NULL, '0', '0', '0', '0'), (225, 'Comment', 6, '1', '1', '0', '0', '0', '0', 'LongText', 250, NULL, '0', '0', '0', '0'), (226, 'CreationDate', 6, '1', '0', '0', '0', '1', '0', 'DateTime', 260, NULL, '0', '0', '0', '0'), (227, 'CreatedBy', 6, '1', '0', '0', '0', '1', '0', 'ListItems', 270, NULL, '1', '0', '0', '1'), (228, 'LastModificationDate', 6, '1', '0', '0', '0', '1', '0', 'DateTime', 280, NULL, '0', '0', '0', '0'), (229, 'LastModifiedBy', 6, '1', '0', '0', '0', '1', '0', 'ListItems', 290, NULL, '1', '0', '0', '1'), (230, 'Code', 8, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (231, 'Name', 8, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (232, 'LegalForm', 8, '1', '1', '0', '0', '0', '0', 'ShortText', 30, NULL, '0', '0', '0', '0'), (233, 'parentId', 8, '1', '1', '0', '0', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (234, 'Address', 8, '1', '1', '1', '1', '0', '0', 'Complex', 50, NULL, '0', '0', '0', '0'), (235, 'Street', 8, '1', '1', '1', '1', '0', '0', 'ShortText', 51, 234, '0', '0', '1', '0'), (236, 'StreetComplement', 8, '1', '1', '0', '1', '0', '0', 'ShortText', 52, 234, '0', '0', '1', '0'), (237, 'ZipCode', 8, '1', '1', '1', '1', '0', '0', 'ShortText', 53, 234, '0', '0', '1', '0'), (238, 'City', 8, '1', '1', '1', '1', '0', '0', 'ShortText', 54, 234, '0', '0', '1', '0'), (239, 'Country', 8, '1', '1', '1', '1', '0', '0', 'ListItems', 55, 234, '1', '0', '1', '1'), (240, 'Phone', 8, '1', '1', '0', '0', '0', '0', 'ShortText', 60, NULL, '0', '0', '0', '0'), (241, 'Fax', 8, '1', '1', '0', '0', '0', '0', 'ShortText', 70, NULL, '0', '0', '0', '0'), (242, 'WebSite', 8, '1', '1', '0', '0', '0', '0', 'ShortText', 80, NULL, '0', '0', '0', '0'), (243, 'Email', 8, '1', '1', '0', '0', '0', '0', 'Email', 90, NULL, '0', '0', '0', '0'), (244, 'EmailInvoicing', 8, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (245, 'MonthOfClosing', 8, '1', '1', '0', '0', '0', '0', 'ListItems', 110, NULL, '1', '0', '0', '1'), (246, 'Equity', 8, '1', '0', '0', '0', '0', '0', 'Number', 120, NULL, '0', '0', '0', '0'), (247, 'Currency', 8, '1', '1', '0', '0', '0', '0', 'ListItems', 130, NULL, '1', '0', '0', '1'), (248, 'OpeningHours', 8, '1', '0', '0', '0', '0', '0', 'Complex', 140, NULL, '0', '0', '0', '0'), (249, 'MonOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 141, 248, '0', '0', '0', '0'), (250, 'TueOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 142, 248, '0', '0', '0', '0'), (251, 'WedOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 143, 248, '0', '0', '0', '0'), (252, 'ThuOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 144, 248, '0', '0', '0', '0'), (253, 'FriOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 145, 248, '0', '0', '0', '0'), (254, 'SatOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 146, 248, '0', '0', '0', '0'), (255, 'SunOpeningHours', 8, '1', '0', '0', '1', '0', '0', 'ShortText', 147, 248, '0', '0', '0', '0'), (256, 'OpeningDate', 8, '1', '1', '0', '0', '0', '0', 'Date', 150, NULL, '0', '0', '0', '0'), (257, 'ClosingDate', 8, '1', '1', '0', '0', '1', '0', 'Date', 160, NULL, '0', '0', '0', '0'), (258, 'MainSite', 8, '1', '0', '0', '0', '0', '0', 'YesNo', 170, NULL, '0', '0', '0', '0'), (259, 'AdministrativeCode', 8, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (260, 'Iban', 8, '1', '0', '0', '0', '0', '0', 'ShortText', 190, NULL, '0', '0', '0', '0'), (261, 'Bic', 8, '1', '0', '0', '0', '0', '0', 'ShortText', 200, NULL, '0', '0', '0', '0'), (262, 'Nace', 8, '1', '0', '0', '0', '0', '0', 'ListItems', 210, NULL, '0', '0', '0', '1'), (263, 'VATNumber', 8, '1', '0', '0', '0', '0', '0', 'ShortText', 220, NULL, '0', '0', '0', '0'), (264, 'VATExempt', 8, '1', '0', '0', '0', '0', '0', 'YesNo', 230, NULL, '0', '0', '0', '0'), (265, 'ExcludeFromSalesAnalysis', 8, '1', '0', '0', '0', '0', '0', 'YesNo', 240, NULL, '0', '0', '0', '0'), (266, 'ExcludeFromFinancialAnalysis', 8, '1', '0', '0', '0', '0', '0', 'YesNo', 250, NULL, '0', '0', '0', '0'), (267, 'Comment', 8, '1', '1', '0', '0', '0', '0', 'LongText', 260, NULL, '0', '0', '0', '0'), (268, 'CreationDate', 8, '1', '0', '0', '0', '1', '0', 'DateTime', 270, NULL, '0', '0', '0', '0'), (269, 'CreatedBy', 8, '1', '0', '0', '0', '1', '0', 'ListItems', 280, NULL, '1', '0', '0', '1'), (270, 'LastModificationDate', 8, '1', '0', '0', '0', '1', '0', 'DateTime', 290, NULL, '0', '0', '0', '0'), (271, 'LastModifiedBy', 8, '1', '0', '0', '0', '1', '0', 'ListItems', 300, NULL, '1', '0', '0', '1'), (272, 'Code', 7, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (273, 'Name', 7, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (274, 'LegalForm', 7, '1', '1', '0', '0', '0', '0', 'ShortText', 30, NULL, '0', '0', '0', '0'), (275, 'parentId', 7, '1', '1', '0', '0', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (276, 'Address', 7, '1', '1', '1', '1', '0', '0', 'Complex', 50, NULL, '0', '0', '0', '0'), (277, 'Street', 7, '1', '1', '1', '1', '0', '0', 'ShortText', 51, 276, '0', '0', '1', '0'), (278, 'StreetComplement', 7, '1', '1', '0', '1', '0', '0', 'ShortText', 52, 276, '0', '0', '1', '0'), (279, 'ZipCode', 7, '1', '1', '1', '1', '0', '0', 'ShortText', 53, 276, '0', '0', '1', '0'), (280, 'City', 7, '1', '1', '1', '1', '0', '0', 'ShortText', 54, 276, '0', '0', '1', '0'), (281, 'Country', 7, '1', '1', '1', '1', '0', '0', 'ListItems', 55, 276, '1', '0', '1', '1'), (282, 'Phone', 7, '1', '1', '0', '0', '0', '0', 'ShortText', 60, NULL, '0', '0', '0', '0'), (283, 'Fax', 7, '1', '1', '0', '0', '0', '0', 'ShortText', 70, NULL, '0', '0', '0', '0'), (284, 'WebSite', 7, '1', '1', '0', '0', '0', '0', 'ShortText', 80, NULL, '0', '0', '0', '0'), (285, 'Email', 7, '1', '1', '0', '0', '0', '0', 'Email', 90, NULL, '0', '0', '0', '0'), (286, 'EmailInvoicing', 7, '1', '1', '0', '0', '0', '0', 'Email', 100, NULL, '0', '0', '0', '0'), (287, 'MonthOfClosing', 7, '1', '1', '0', '0', '0', '0', 'ListItems', 110, NULL, '1', '0', '0', '1'), (288, 'Equity', 7, '1', '0', '0', '0', '0', '0', 'Number', 120, NULL, '0', '0', '0', '0'), (289, 'Currency', 7, '1', '1', '0', '0', '0', '0', 'ListItems', 130, NULL, '1', '0', '0', '1'), (290, 'OpeningHours', 7, '1', '0', '0', '0', '0', '0', 'Complex', 140, NULL, '0', '0', '0', '0'), (291, 'MonOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 141, 290, '0', '0', '0', '0'), (292, 'TueOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 142, 290, '0', '0', '0', '0'), (293, 'WedOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 143, 290, '0', '0', '0', '0'), (294, 'ThuOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 144, 290, '0', '0', '0', '0'), (295, 'FriOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 145, 290, '0', '0', '0', '0'), (296, 'SatOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 146, 290, '0', '0', '0', '0'), (297, 'SunOpeningHours', 7, '1', '0', '0', '1', '0', '0', 'ShortText', 147, 290, '0', '0', '0', '0'), (298, 'OpeningDate', 7, '1', '1', '0', '0', '0', '0', 'Date', 150, NULL, '0', '0', '0', '0'), (299, 'ClosingDate', 7, '1', '1', '0', '0', '1', '0', 'Date', 160, NULL, '0', '0', '0', '0'), (300, 'MainSite', 7, '1', '0', '0', '0', '0', '0', 'YesNo', 170, NULL, '0', '0', '0', '0'), (301, 'AdministrativeCode', 7, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (302, 'Iban', 7, '1', '0', '0', '0', '0', '0', 'ShortText', 190, NULL, '0', '0', '0', '0'), (303, 'Bic', 7, '1', '0', '0', '0', '0', '0', 'ShortText', 200, NULL, '0', '0', '0', '0'), (304, 'Nace', 7, '1', '0', '0', '0', '0', '0', 'ListItems', 210, NULL, '0', '0', '0', '1'), (305, 'VATNumber', 7, '1', '0', '0', '0', '0', '0', 'ShortText', 220, NULL, '0', '0', '0', '0'), (306, 'VATExempt', 7, '1', '0', '0', '0', '0', '0', 'YesNo', 230, NULL, '0', '0', '0', '0'), (307, 'ExcludeFromSalesAnalysis', 7, '1', '0', '0', '0', '0', '0', 'YesNo', 240, NULL, '0', '0', '0', '0'), (308, 'ExcludeFromFinancialAnalysis', 7, '1', '0', '0', '0', '0', '0', 'YesNo', 250, NULL, '0', '0', '0', '0'), (309, 'Comment', 7, '1', '1', '0', '0', '0', '0', 'LongText', 260, NULL, '0', '0', '0', '0'), (310, 'CreationDate', 7, '1', '0', '0', '0', '1', '0', 'DateTime', 270, NULL, '0', '0', '0', '0'), (311, 'CreatedBy', 7, '1', '0', '0', '0', '1', '0', 'ListItems', 280, NULL, '1', '0', '0', '1'), (312, 'LastModificationDate', 7, '1', '0', '0', '0', '1', '0', 'DateTime', 290, NULL, '0', '0', '0', '0'), (313, 'LastModifiedBy', 7, '1', '0', '0', '0', '1', '0', 'ListItems', 300, NULL, '1', '0', '0', '1'), (314, 'Code', 9, '1', '1', '1', '1', '0', '0', 'ShortText', 10, NULL, '0', '0', '1', '0'), (315, 'Name', 9, '1', '1', '1', '1', '0', '0', 'ShortText', 20, NULL, '0', '0', '1', '0'), (316, 'LegalForm', 9, '1', '1', '0', '0', '0', '0', 'ShortText', 30, NULL, '0', '0', '0', '0'), (317, 'parentId', 9, '1', '1', '0', '0', '0', '0', 'ListItems', 40, NULL, '1', '0', '0', '1'), (318, 'Address', 9, '1', '1', '1', '1', '0', '0', 'Complex', 50, NULL, '0', '0', '0', '0'), (319, 'Street', 9, '1', '1', '1', '1', '0', '0', 'ShortText', 51, 318, '0', '0', '1', '0'), (320, 'StreetComplement', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 52, 318, '0', '0', '1', '0'), (321, 'ZipCode', 9, '1', '1', '1', '1', '0', '0', 'ShortText', 53, 318, '0', '0', '1', '0'), (322, 'City', 9, '1', '1', '1', '1', '0', '0', 'ShortText', 54, 318, '0', '0', '1', '0'), (323, 'Country', 9, '1', '1', '1', '1', '0', '0', 'ListItems', 55, 318, '1', '0', '1', '1'), (324, 'Phone', 9, '1', '1', '0', '0', '0', '0', 'ShortText', 60, NULL, '0', '0', '0', '0'), (325, 'Fax', 9, '1', '1', '0', '0', '0', '0', 'ShortText', 70, NULL, '0', '0', '0', '0'), (326, 'WebSite', 9, '1', '1', '0', '0', '0', '0', 'ShortText', 80, NULL, '0', '0', '0', '0'), (327, 'Email', 9, '1', '1', '0', '0', '0', '0', 'Email', 90, NULL, '0', '0', '0', '0'), (328, 'MonthOfClosing', 9, '1', '1', '0', '0', '0', '0', 'ListItems', 100, NULL, '1', '0', '0', '1'), (329, 'Currency', 9, '1', '1', '0', '0', '0', '0', 'ListItems', 110, NULL, '1', '0', '0', '1'), (330, 'OpeningHours', 9, '1', '1', '0', '0', '0', '0', 'Complex', 120, NULL, '0', '0', '0', '0'), (331, 'MonOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 130, 330, '0', '0', '0', '0'), (332, 'TueOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 140, 330, '0', '0', '0', '0'), (333, 'WedOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 141, 330, '0', '0', '0', '0'), (334, 'ThuOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 142, 330, '0', '0', '0', '0'), (335, 'FriOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 143, 330, '0', '0', '0', '0'), (336, 'SatOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 144, 330, '0', '0', '0', '0'), (337, 'SunOpeningHours', 9, '1', '1', '0', '1', '0', '0', 'ShortText', 145, 330, '0', '0', '0', '0'), (338, 'OpeningDate', 9, '1', '1', '0', '0', '0', '0', 'Date', 146, NULL, '0', '0', '0', '0'), (339, 'ClosingDate', 9, '1', '1', '0', '0', '1', '0', 'Date', 147, NULL, '0', '0', '0', '0'), (340, 'MainSite', 9, '1', '0', '0', '0', '0', '0', 'YesNo', 150, NULL, '0', '0', '0', '0'), (341, 'AdministrativeCode', 9, '1', '0', '0', '0', '0', '0', 'ShortText', 160, NULL, '0', '0', '0', '0'), (342, 'Iban', 9, '1', '0', '0', '0', '0', '0', 'ShortText', 170, NULL, '0', '0', '0', '0'), (343, 'Bic', 9, '1', '0', '0', '0', '0', '0', 'ShortText', 180, NULL, '0', '0', '0', '0'), (344, 'Nace', 9, '1', '0', '0', '0', '0', '0', 'ListItems', 190, NULL, '0', '0', '0', '1'), (345, 'VATNumber', 9, '1', '1', '0', '0', '0', '0', 'ShortText', 200, NULL, '0', '0', '0', '0'), (346, 'VATExempt', 9, '1', '1', '0', '0', '0', '0', 'YesNo', 210, NULL, '0', '0', '0', '0'), (347, 'ExcludeFromSalesAnalysis', 9, '1', '0', '0', '0', '0', '0', 'YesNo', 220, NULL, '0', '0', '0', '0'), (348, 'ExcludeFromFinancialAnalysis', 9, '1', '0', '0', '0', '0', '0', 'YesNo', 230, NULL, '0', '0', '0', '0'), (349, 'Comment', 9, '1', '1', '0', '0', '0', '0', 'LongText', 240, NULL, '0', '0', '0', '0'), (350, 'CreationDate', 9, '1', '0', '0', '0', '1', '0', 'DateTime', 250, NULL, '0', '0', '0', '0'), (351, 'CreatedBy', 9, '1', '0', '0', '0', '1', '0', 'ListItems', 260, NULL, '1', '0', '0', '1'), (352, 'LastModificationDate', 9, '1', '0', '0', '0', '1', '0', 'DateTime', 270, NULL, '0', '0', '0', '0'), (353, 'LastModifiedBy', 9, '1', '0', '0', '0', '1', '0', 'ListItems', 280, NULL, '1', '0', '0', '1'), (354, 'Active', 2, '1', '1', '1', '1', '1', '0', 'YesNo', 260, NULL, '0', '0', '0', '0'), (355, 'Active', 3, '1', '1', '1', '1', '1', '0', 'YesNo', 370, NULL, '0', '0', '0', '0'), (356, 'Active', 4, '1', '1', '1', '1', '1', '0', 'YesNo', 370, NULL, '0', '0', '0', '0'), (357, 'Active', 5, '1', '1', '1', '1', '1', '0', 'YesNo', 320, NULL, '0', '0', '0', '0'), (358, 'Active', 6, '1', '1', '1', '1', '1', '0', 'YesNo', 300, NULL, '0', '0', '0', '0'), (359, 'Active', 7, '1', '1', '1', '1', '1', '0', 'YesNo', 310, NULL, '0', '0', '0', '0'), (360, 'Active', 8, '1', '1', '1', '1', '1', '0', 'YesNo', 310, NULL, '0', '0', '0', '0'), (361, 'Active', 9, '1', '1', '1', '1', '1', '0', 'YesNo', 290, NULL, '0', '0', '0', '0'), (362, 'RCS', 5, '0', '1', '0', '0', '0', '0', 'ShortText', 220, NULL, '0', '0', '0', '0'), (363, 'ExclusionRemonteeFinanciere', 5, '0', '1', '0', '0', '0', '0', 'YesNo', 250, NULL, '0', '0', '0', '0'), (364, 'Referent', 10, '0', '1', '0', '0', '0', '0', 'ListItems', 50, NULL, '0', '0', '0', '0'); INSERT INTO indexation_month (id, month_name) VALUES (1, 'January'), (2, 'February'), (3, 'March'), (4, 'April'), (5, 'May'), (6, 'June'), (7, 'July'), (8, 'August'), (9, 'September'), (10, 'October'), (11, 'November'), (12, 'December'); INSERT INTO nace (id, code, label) VALUES (1, '01.11', 'Growing of cereals (except rice), leguminous crops and oil seeds'), (2, '01.12', 'Growing of rice'), (3, '01.13', 'Growing of vegetables and melons, roots and tubers'), (4, '01.14', 'Growing of sugar cane'), (5, '01.15', 'Growing of tobacco'), (6, '01.16', 'Growing of fibre crops'), (7, '01.19', 'Growing of other non-perennial crops'), (8, '01.21', 'Growing of grapes'), (9, '01.22', 'Growing of tropical and subtropical fruits'), (10, '01.23', 'Growing of citrus fruits'), (11, '01.24', 'Growing of pome fruits and stone fruits'), (12, '01.25', 'Growing of other tree and bush fruits and nuts'), (13, '01.26', 'Growing of oleaginous fruits'), (14, '01.27', 'Growing of beverage crops'), (15, '01.28', 'Growing of spices, aromatic, drug and pharmaceutical crops'), (16, '01.30', 'Plant propagation'), (17, '01.41', 'Raising of dairy cattle'), (18, '01.29', 'Growing of other perennial crops'), (19, '01.42', 'Raising of other cattle and buffaloes'), (20, '01.43', 'Raising of horses and other equines'), (21, '01.44', 'Raising of camels and camelids'), (22, '01.45', 'Raising of sheep and goats'), (23, '01.46', 'Raising of swine/pigs'), (24, '01.47', 'Raising of poultry'), (25, '01.49', 'Raising of other animals'), (26, '01.50', 'Mixed farming'), (27, '01.61', 'Support activities for crop production'), (28, '01.62', 'Support activities for animal production'), (29, '01.63', 'Post-harvest crop activities'), (30, '01.64', 'Seed processing for propagation'), (31, '01.70', 'Hunting, trapping and related service activities'), (32, '02.20', 'Logging'), (33, '10.81', 'Manufacture of sugar'), (34, '19.10', 'Manufacture of coke oven products'), (35, '03.11', 'Marine fishing'), (36, '03.12', 'Freshwater fishing'), (37, '02.10', 'Silviculture and other forestry activities'), (38, '02.30', 'Gathering of wild growing non-wood products'), (39, '02.40', 'Support services to forestry'), (40, '03.21', 'Marine aquaculture'), (41, '03.22', 'Freshwater aquaculture'), (42, '05.10', 'Mining of hard coal'), (43, '05.20', 'Mining of lignite'), (44, '06.10', 'Extraction of crude petroleum'), (45, '06.20', 'Extraction of natural gas'), (46, '07.10', 'Mining of iron ores'), (47, '07.21', 'Mining of uranium and thorium ores'), (48, '07.29', 'Mining of other non-ferrous metal ores'), (49, '08.11', 'Quarrying of ornamental and building stone, limestone, gypsum, chalk and slate'), (50, '08.12', 'Operation of gravel and sand pits; mining of clays and kaolin'), (51, '08.92', 'Extraction of peat'), (52, '08.93', 'Extraction of salt'), (53, '10.52', 'Manufacture of ice cream'), (54, '10.61', 'Manufacture of grain mill products'), (55, '08.91', 'Mining of chemical and fertiliser minerals'), (56, '08.99', 'Other mining and quarrying n.e.c.'), (57, '09.10', 'Support activities for petroleum and natural gas extraction'), (58, '09.90', 'Support activities for other mining and quarrying'), (59, '10.11', 'Processing and preserving of meat'), (60, '10.12', 'Processing and preserving of poultry meat'), (61, '10.13', 'Production of meat and poultry meat products'), (62, '10.20', 'Processing and preserving of fish, crustaceans and molluscs'), (63, '10.31', 'Processing and preserving of potatoes'), (64, '10.32', 'Manufacture of fruit and vegetable juice'), (65, '10.39', 'Other processing and preserving of fruit and vegetables'), (66, '31.09', 'Manufacture of other furniture'), (67, '32.11', 'Striking of coins'), (68, '49.42', 'Removal services'), (69, '51.21', 'Freight air transport'), (70, '10.41', 'Manufacture of oils and fats'), (71, '10.42', 'Manufacture of margarine and similar edible fats'), (72, '10.51', 'Operation of dairies and cheese making'), (73, '10.62', 'Manufacture of starches and starch products'), (74, '10.71', 'Manufacture of bread; manufacture of fresh pastry goods and cakes'), (75, '10.72', 'Manufacture of rusks and biscuits; manufacture of preserved pastry goods and cakes'), (76, '10.73', 'Manufacture of macaroni, noodles, couscous and similar farinaceous products'), (77, '10.82', 'Manufacture of cocoa, chocolate and sugar confectionery'), (78, '10.83', 'Processing of tea and coffee'), (79, '10.84', 'Manufacture of condiments and seasonings'), (80, '55.90', 'Other accommodation'), (81, '58.14', 'Publishing of journals and periodicals'), (82, '58.29', 'Other software publishing'), (83, '11.02', 'Manufacture of wine from grape'), (84, '10.85', 'Manufacture of prepared meals and dishes'), (85, '10.86', 'Manufacture of homogenised food preparations and dietetic food'), (86, '10.89', 'Manufacture of other food products n.e.c.'), (87, '10.91', 'Manufacture of prepared feeds for farm animals'), (88, '10.92', 'Manufacture of prepared pet foods'), (89, '11.01', 'Distilling, rectifying and blending of spirits'), (90, '11.03', 'Manufacture of cider and other fruit wines'), (91, '11.04', 'Manufacture of other non-distilled fermented beverages'), (92, '11.05', 'Manufacture of beer'), (93, '11.06', 'Manufacture of malt'), (94, '11.07', 'Manufacture of soft drinks; production of mineral waters and other bottled waters'), (95, '12.00', 'Manufacture of tobacco products'), (96, '13.20', 'Weaving of textiles'), (97, '13.30', 'Finishing of textiles'), (98, '14.14', 'Manufacture of underwear'), (99, '13.10', 'Preparation and spinning of textile fibres'), (100, '13.91', 'Manufacture of knitted and crocheted fabrics'), (101, '13.92', 'Manufacture of made-up textile articles, except apparel'), (102, '13.93', 'Manufacture of carpets and rugs'), (103, '13.94', 'Manufacture of cordage, rope, twine and netting'), (104, '13.95', 'Manufacture of non-wovens and articles made from non-wovens, except apparel'), (105, '13.96', 'Manufacture of other technical and industrial textiles'), (106, '13.99', 'Manufacture of other textiles n.e.c.'), (107, '14.11', 'Manufacture of leather clothes'), (108, '14.12', 'Manufacture of workwear'), (109, '14.13', 'Manufacture of other outerwear'), (110, '61.10', 'Wired telecommunications activities'), (111, '64.11', 'Central banking'), (112, '15.20', 'Manufacture of footwear'), (113, '14.19', 'Manufacture of other wearing apparel and accessories'), (114, '14.20', 'Manufacture of articles of fur'), (115, '14.31', 'Manufacture of knitted and crocheted hosiery'), (116, '14.39', 'Manufacture of other knitted and crocheted apparel'), (117, '15.11', 'Tanning and dressing of leather; dressing and dyeing of fur'), (118, '15.12', 'Manufacture of luggage, handbags and the like, saddlery and harness'), (119, '16.10', 'Sawmilling and planing of wood'), (120, '16.21', 'Manufacture of veneer sheets and wood-based panels'), (121, '16.22', 'Manufacture of assembled parquet floors'), (122, '16.23', 'Manufacture of other builders'' carpentry and joinery'), (123, '24.34', 'Cold drawing of wire'), (124, '24.42', 'Aluminium production'), (125, '24.44', 'Copper production'), (126, '26.52', 'Manufacture of watches and clocks'), (127, '16.24', 'Manufacture of wooden containers'), (128, '17.11', 'Manufacture of pulp'), (129, '17.24', 'Manufacture of wallpaper'), (130, '18.11', 'Printing of newspapers'), (131, '18.12', 'Other printing'), (132, '16.29', 'Manufacture of other products of wood; manufacture of articles of cork, straw and plaiting materials'), (133, '17.12', 'Manufacture of paper and paperboard'), (134, '17.21', 'Manufacture of corrugated paper and paperboard and of containers of paper and paperboard'), (135, '17.22', 'Manufacture of household and sanitary goods and of toilet requisites'), (136, '17.23', 'Manufacture of paper stationery'), (137, '17.29', 'Manufacture of other articles of paper and paperboard'), (138, '64.92', 'Other credit granting'), (139, '75.00', 'Veterinary activities'), (140, '80.30', 'Investigation activities'), (141, '82.92', 'Packaging activities'), (142, '18.13', 'Pre-press and pre-media services'), (143, '18.14', 'Binding and related services'), (144, '18.20', 'Reproduction of recorded media'), (145, '19.20', 'Manufacture of refined petroleum products'), (146, '20.11', 'Manufacture of industrial gases'), (147, '20.12', 'Manufacture of dyes and pigments'), (148, '20.13', 'Manufacture of other inorganic basic chemicals'), (149, '20.14', 'Manufacture of other organic basic chemicals'), (150, '20.15', 'Manufacture of fertilisers and nitrogen compounds'), (151, '20.16', 'Manufacture of plastics in primary forms'), (152, '20.17', 'Manufacture of synthetic rubber in primary forms'), (153, '20.20', 'Manufacture of pesticides and other agrochemical products'), (154, '30.91', 'Manufacture of motorcycles'), (155, '65.20', 'Reinsurance'), (156, '65.30', 'Pension funding'), (157, '20.30', 'Manufacture of paints, varnishes and similar coatings, printing ink and mastics'), (158, '20.41', 'Manufacture of soap and detergents, cleaning and polishing preparations'), (159, '20.52', 'Manufacture of glues'), (160, '23.11', 'Manufacture of flat glass'), (161, '23.13', 'Manufacture of hollow glass'), (162, '20.42', 'Manufacture of perfumes and toilet preparations'), (163, '20.51', 'Manufacture of explosives'), (164, '20.53', 'Manufacture of essential oils'), (165, '20.59', 'Manufacture of other chemical products n.e.c.'), (166, '20.60', 'Manufacture of man-made fibres'), (167, '21.10', 'Manufacture of basic pharmaceutical products'), (168, '21.20', 'Manufacture of pharmaceutical preparations'), (169, '24.51', 'Casting of iron'), (170, '24.52', 'Casting of steel'), (171, '24.53', 'Casting of light metals'), (172, '31.03', 'Manufacture of mattresses'), (173, '22.11', 'Manufacture of rubber tyres and tubes; retreading and rebuilding of rubber tyres'), (174, '22.19', 'Manufacture of other rubber products'), (175, '22.21', 'Manufacture of plastic plates, sheets, tubes and profiles'), (176, '22.22', 'Manufacture of plastic packing goods'), (177, '22.23', 'Manufacture of buildersโ€™ ware of plastic'), (178, '22.29', 'Manufacture of other plastic products'), (179, '23.12', 'Shaping and processing of flat glass'), (180, '23.14', 'Manufacture of glass fibres'), (181, '23.19', 'Manufacture and processing of other glass, including technical glassware'), (182, '23.20', 'Manufacture of refractory products'), (183, '51.22', 'Space transport'), (184, '52.10', 'Warehousing and storage'), (185, '52.24', 'Cargo handling'), (186, '55.10', 'Hotels and similar accommodation'), (187, '86.23', 'Dental practice activities'), (188, '23.31', 'Manufacture of ceramic tiles and flags'), (189, '23.32', 'Manufacture of bricks, tiles and construction products, in baked clay'), (190, '23.41', 'Manufacture of ceramic household and ornamental articles'), (191, '23.42', 'Manufacture of ceramic sanitary fixtures'), (192, '23.43', 'Manufacture of ceramic insulators and insulating fittings'), (193, '84.30', 'Compulsory social security activities'), (194, '85.53', 'Driving school activities'), (195, '23.44', 'Manufacture of other technical ceramic products'), (196, '23.49', 'Manufacture of other ceramic products'), (197, '23.51', 'Manufacture of cement'), (198, '23.52', 'Manufacture of lime and plaster'), (199, '23.61', 'Manufacture of concrete products for construction purposes'), (200, '23.64', 'Manufacture of mortars'), (201, '24.31', 'Cold drawing of bars'), (202, '23.62', 'Manufacture of plaster products for construction purposes'), (203, '23.63', 'Manufacture of ready-mixed concrete'), (204, '23.65', 'Manufacture of fibre cement'), (205, '23.69', 'Manufacture of other articles of concrete, plaster and cement'), (206, '23.70', 'Cutting, shaping and finishing of stone'), (207, '23.91', 'Production of abrasive products'), (208, '23.99', 'Manufacture of other non-metallic mineral products n.e.c.'), (209, '24.10', 'Manufacture of basic iron and steel and of ferro-alloys'), (210, '24.20', 'Manufacture of tubes, pipes, hollow profiles and related fittings, of steel'), (211, '24.32', 'Cold rolling of narrow strip'), (212, '24.33', 'Cold forming or folding'), (213, '24.41', 'Precious metals production'), (214, '24.43', 'Lead, zinc and tin production'), (215, '24.45', 'Other non-ferrous metal production'), (216, '24.46', 'Processing of nuclear fuel'), (217, '24.54', 'Casting of other non-ferrous metals'), (218, '25.11', 'Manufacture of metal structures and parts of structures'), (219, '25.12', 'Manufacture of doors and windows of metal'), (220, '90.03', 'Artistic creation'), (221, '93.19', 'Other sports activities'), (222, '25.21', 'Manufacture of central heating radiators and boilers'), (223, '25.29', 'Manufacture of other tanks, reservoirs and containers of metal'), (224, '25.30', 'Manufacture of steam generators, except central heating hot water boilers'), (225, '25.62', 'Machining'), (226, '25.73', 'Manufacture of tools'), (227, '25.40', 'Manufacture of weapons and ammunition'), (228, '25.50', 'Forging, pressing, stamping and roll-forming of metal; powder metallurgy'), (229, '25.61', 'Treatment and coating of metals'), (230, '25.71', 'Manufacture of cutlery'), (231, '25.72', 'Manufacture of locks and hinges'), (232, '25.91', 'Manufacture of steel drums and similar containers'), (233, '25.92', 'Manufacture of light metal packaging'), (234, '25.93', 'Manufacture of wire products, chain and springs'), (235, '25.94', 'Manufacture of fasteners and screw machine products'), (236, '25.99', 'Manufacture of other fabricated metal products n.e.c.'), (237, '26.11', 'Manufacture of electronic components'), (238, '26.12', 'Manufacture of loaded electronic boards'), (239, '26.20', 'Manufacture of computers and peripheral equipment'), (240, '26.30', 'Manufacture of communication equipment'), (241, '26.40', 'Manufacture of consumer electronics'), (242, '26.51', 'Manufacture of instruments and appliances for measuring, testing and navigation'), (243, '26.60', 'Manufacture of irradiation, electromedical and electrotherapeutic equipment'), (244, '26.70', 'Manufacture of optical instruments and photographic equipment'), (245, '26.80', 'Manufacture of magnetic and optical media'), (246, '27.11', 'Manufacture of electric motors, generators and transformers'), (247, '58.19', 'Other publishing activities'), (248, '58.21', 'Publishing of computer games'), (249, '56.21', 'Event catering activities'), (250, '27.12', 'Manufacture of electricity distribution and control apparatus'), (251, '27.20', 'Manufacture of batteries and accumulators'), (252, '27.31', 'Manufacture of fibre optic cables'), (253, '27.32', 'Manufacture of other electronic and electric wires and cables'), (254, '27.33', 'Manufacture of wiring devices'), (255, '27.40', 'Manufacture of electric lighting equipment'), (256, '27.51', 'Manufacture of electric domestic appliances'), (257, '27.52', 'Manufacture of non-electric domestic appliances'), (258, '27.90', 'Manufacture of other electrical equipment'), (259, '28.11', 'Manufacture of engines and turbines, except aircraft, vehicle and cycle engines'), (260, '56.30', 'Beverage serving activities'), (261, '58.11', 'Book publishing'), (262, '58.13', 'Publishing of newspapers'), (263, '28.12', 'Manufacture of fluid power equipment'), (264, '28.13', 'Manufacture of other pumps and compressors'), (265, '28.14', 'Manufacture of other taps and valves'), (266, '28.15', 'Manufacture of bearings, gears, gearing and driving elements'), (267, '28.21', 'Manufacture of ovens, furnaces and furnace burners'), (268, '28.22', 'Manufacture of lifting and handling equipment'), (269, '28.23', 'Manufacture of office machinery and equipment (except computers and peripheral equipment)'), (270, '28.24', 'Manufacture of power-driven hand tools'), (271, '28.25', 'Manufacture of non-domestic cooling and ventilation equipment'), (272, '28.29', 'Manufacture of other general-purpose machinery n.e.c.'), (273, '28.30', 'Manufacture of agricultural and forestry machinery'), (274, '28.41', 'Manufacture of metal forming machinery'), (275, '28.49', 'Manufacture of other machine tools'), (276, '28.91', 'Manufacture of machinery for metallurgy'), (277, '28.92', 'Manufacture of machinery for mining, quarrying and construction'), (278, '28.93', 'Manufacture of machinery for food, beverage and tobacco processing'), (279, '28.94', 'Manufacture of machinery for textile, apparel and leather production'), (280, '28.95', 'Manufacture of machinery for paper and paperboard production'), (281, '28.96', 'Manufacture of plastics and rubber machinery'), (282, '28.99', 'Manufacture of other special-purpose machinery n.e.c.'), (283, '29.10', 'Manufacture of motor vehicles'), (284, '29.20', 'Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi-trailers'), (285, '29.31', 'Manufacture of electrical and electronic equipment for motor vehicles'), (286, '29.32', 'Manufacture of other parts and accessories for motor vehicles'), (287, '30.11', 'Building of ships and floating structures'), (288, '30.12', 'Building of pleasure and sporting boats'), (289, '30.20', 'Manufacture of railway locomotives and rolling stock'), (290, '30.30', 'Manufacture of air and spacecraft and related machinery'), (291, '30.40', 'Manufacture of military fighting vehicles'), (292, '30.92', 'Manufacture of Bicycles and invalid carriages'), (293, '30.99', 'Manufacture of other transport equipment n.e.c.'), (294, '31.01', 'Manufacture of office and shop furniture'), (295, '31.02', 'Manufacture of kitchen furniture'), (296, '32.12', 'Manufacture of jewellery and related articles'), (297, '32.13', 'Manufacture of imitation jewellery and related articles'), (298, '32.20', 'Manufacture of musical instruments'), (299, '32.30', 'Manufacture of sports goods'), (300, '32.40', 'Manufacture of games and toys'), (301, '32.50', 'Manufacture of medical and dental instruments and supplies'), (302, '32.91', 'Manufacture of brooms and brushes'), (303, '32.99', 'Other manufacturing n.e.c.'), (304, '33.11', 'Repair of fabricated metal products'), (305, '33.12', 'Repair of machinery'), (306, '33.13', 'Repair of electronic and optical equipment'), (307, '33.14', 'Repair of electrical equipment'), (308, '33.15', 'Repair and maintenance of ships and boats'), (309, '33.16', 'Repair and maintenance of aircraft and spacecraft'), (310, '33.17', 'Repair and maintenance of other transport equipment'), (311, '33.19', 'Repair of other equipment'), (312, '35.11', 'Production of electricity'), (313, '35.12', 'Transmission of electricity'), (314, '35.13', 'Distribution of electricity'), (315, '33.20', 'Installation of industrial machinery and equipment'), (316, '35.14', 'Trade of electricity'), (317, '35.21', 'Manufacture of gas'), (318, '37.00', 'Sewerage'), (319, '38.12', 'Collection of hazardous waste'), (320, '35.22', 'Distribution of gaseous fuels through mains'), (321, '35.23', 'Trade of gas through mains'), (322, '35.30', 'Steam and air conditioning supply'), (323, '36.00', 'Water collection, treatment and supply'), (324, '38.11', 'Collection of non-hazardous waste'), (325, '38.21', 'Treatment and disposal of non-hazardous waste'), (326, '38.22', 'Treatment and disposal of hazardous waste'), (327, '38.31', 'Dismantling of wrecks'), (328, '38.32', 'Recovery of sorted materials'), (329, '43.34', 'Painting and glazing'), (330, '43.91', 'Roofing activities'), (331, '59.14', 'Motion picture projection activities'), (332, '60.10', 'Radio broadcasting'), (333, '39.00', 'Remediation activities and other waste management services'), (334, '41.10', 'Development of building projects'), (335, '63.12', 'Web portals'), (336, '63.91', 'News agency activities'), (337, '65.12', 'Non-life insurance'), (338, '41.20', 'Construction of residential and non-residential buildings'), (339, '42.11', 'Construction of roads and motorways'), (340, '42.12', 'Construction of railways and underground railways'), (341, '42.13', 'Construction of bridges and tunnels'), (342, '42.21', 'Construction of utility projects for fluids'), (343, '42.22', 'Construction of utility projects for electricity and telecommunications'), (344, '42.91', 'Construction of water projects'), (345, '42.99', 'Construction of other civil engineering projects n.e.c.'), (346, '43.11', 'Demolition'), (347, '43.12', 'Site preparation'), (348, '43.13', 'Test drilling and boring'), (349, '43.21', 'Electrical installation'), (350, '43.22', 'Plumbing, heat and air-conditioning installation'), (351, '43.31', 'Plastering'), (352, '43.32', 'Joinery installation'), (353, '46.34', 'Wholesale of beverages'), (354, '46.41', 'Wholesale of textiles'), (355, '61.20', 'Wireless telecommunications activities'), (356, '43.29', 'Other construction installation'), (357, '43.33', 'Floor and wall covering'), (358, '43.39', 'Other building completion and finishing'), (359, '43.99', 'Other specialised construction activities n.e.c.'), (360, '45.11', 'Sale of cars and light motor vehicles'), (361, '45.19', 'Sale of other motor vehicles'), (362, '45.20', 'Maintenance and repair of motor vehicles'), (363, '45.31', 'Wholesale trade of motor vehicle parts and accessories'), (364, '45.32', 'Retail trade of motor vehicle parts and accessories'), (365, '45.40', 'Sale, maintenance and repair of motorcycles and related parts and accessories'), (366, '46.11', 'Agents involved in the sale of agricultural raw materials, live animals, textile raw materials and semi-finished goods'), (367, '46.12', 'Agents involved in the sale of fuels, ores, metals and industrial chemicals'), (368, '46.13', 'Agents involved in the sale of timber and building materials'), (369, '46.14', 'Agents involved in the sale of machinery, industrial equipment, ships and aircraft'), (370, '46.15', 'Agents involved in the sale of furniture, household goods, hardware and ironmongery'), (371, '46.16', 'Agents involved in the sale of textiles, clothing, fur, footwear and leather goods'), (372, '46.17', 'Agents involved in the sale of food, beverages and tobacco'), (373, '46.18', 'Agents specialised in the sale of other particular products'), (374, '46.19', 'Agents involved in the sale of a variety of goods'), (375, '46.21', 'Wholesale of grain, unmanufactured tobacco, seeds and animal feeds'), (376, '46.22', 'Wholesale of flowers and plants'), (377, '46.23', 'Wholesale of live animals'), (378, '46.24', 'Wholesale of hides, skins and leather'), (379, '46.31', 'Wholesale of fruit and vegetables'), (380, '46.32', 'Wholesale of meat and meat products'), (381, '46.33', 'Wholesale of dairy products, eggs and edible oils and fats'), (382, '46.35', 'Wholesale of tobacco products'), (383, '46.36', 'Wholesale of sugar and chocolate and sugar confectionery'), (384, '46.37', 'Wholesale of coffee, tea, cocoa and spices'), (385, '46.38', 'Wholesale of other food, including fish, crustaceans and molluscs'), (386, '46.39', 'Non-specialised wholesale of food, beverages and tobacco'), (387, '46.42', 'Wholesale of clothing and footwear'), (388, '46.43', 'Wholesale of electrical household appliances'), (389, '46.44', 'Wholesale of china and glassware and cleaning materials'), (390, '46.45', 'Wholesale of perfume and cosmetics'), (391, '46.46', 'Wholesale of pharmaceutical goods'), (392, '46.47', 'Wholesale of furniture, carpets and lighting equipment'), (393, '46.48', 'Wholesale of watches and jewellery'), (394, '46.49', 'Wholesale of other household goods'), (395, '46.51', 'Wholesale of computers, computer peripheral equipment and software'), (396, '64.20', 'Activities of holding companies'), (397, '64.91', 'Financial leasing'), (398, '46.52', 'Wholesale of electronic and telecommunications equipment and parts'), (399, '46.61', 'Wholesale of agricultural machinery, equipment and supplies'), (400, '46.62', 'Wholesale of machine tools'), (401, '46.63', 'Wholesale of mining, construction and civil engineering machinery'), (402, '46.64', 'Wholesale of machinery for the textile industry and of sewing and knitting machines'), (403, '46.65', 'Wholesale of office furniture'), (404, '46.66', 'Wholesale of other office machinery and equipment'), (405, '46.69', 'Wholesale of other machinery and equipment'), (406, '46.71', 'Wholesale of solid, liquid and gaseous fuels and related products'), (407, '49.32', 'Taxi operation'), (408, '49.41', 'Freight transport by road'), (409, '65.11', 'Life insurance'), (410, '49.20', 'Freight rail transport'), (411, '46.72', 'Wholesale of metals and metal ores'), (412, '46.73', 'Wholesale of wood, construction materials and sanitary equipment'), (413, '46.74', 'Wholesale of hardware, plumbing and heating equipment and supplies'), (414, '46.75', 'Wholesale of chemical products'), (415, '46.76', 'Wholesale of other intermediate products'), (416, '46.77', 'Wholesale of waste and scrap'), (417, '46.90', 'Non-specialised wholesale trade'), (418, '47.11', 'Retail sale in non-specialised stores with food, beverages or tobacco predominating'), (419, '47.19', 'Other retail sale in non-specialised stores'), (420, '47.21', 'Retail sale of fruit and vegetables in specialised stores'), (421, '47.22', 'Retail sale of meat and meat products in specialised stores'), (422, '47.23', 'Retail sale of fish, crustaceans and molluscs in specialised stores'), (423, '47.24', 'Retail sale of bread, cakes, flour confectionery and sugar confectionery in specialised stores'), (424, '47.25', 'Retail sale of beverages in specialised stores'), (425, '47.26', 'Retail sale of tobacco products in specialised stores'), (426, '47.29', 'Other retail sale of food in specialised stores'), (427, '47.30', 'Retail sale of automotive fuel in specialised stores'), (428, '47.41', 'Retail sale of computers, peripheral units and software in specialised stores'), (429, '47.42', 'Retail sale of telecommunications equipment in specialised stores'), (430, '47.43', 'Retail sale of audio and video equipment in specialised stores'), (431, '47.51', 'Retail sale of textiles in specialised stores'), (432, '47.52', 'Retail sale of hardware, paints and glass in specialised stores'), (433, '47.53', 'Retail sale of carpets, rugs, wall and floor coverings in specialised stores'), (434, '47.54', 'Retail sale of electrical household appliances in specialised stores'), (435, '47.59', 'Retail sale of furniture, lighting equipment and other household articles in specialised stores'), (436, '47.61', 'Retail sale of books in specialised stores'), (437, '47.62', 'Retail sale of newspapers and stationery in specialised stores'), (438, '47.63', 'Retail sale of music and video recordings in specialised stores'), (439, '47.64', 'Retail sale of sporting equipment in specialised stores'), (440, '47.65', 'Retail sale of games and toys in specialised stores'), (441, '47.71', 'Retail sale of clothing in specialised stores'), (442, '47.72', 'Retail sale of footwear and leather goods in specialised stores'), (443, '47.73', 'Dispensing chemist in specialised stores'), (444, '47.74', 'Retail sale of medical and orthopaedic goods in specialised stores'), (445, '81.29', 'Other cleaning activities'), (446, '82.20', 'Activities of call centres'), (447, '47.75', 'Retail sale of cosmetic and toilet articles in specialised stores'), (448, '47.76', 'Retail sale of flowers, plants, seeds, fertilisers, pet animals and pet food in specialised stores'), (449, '47.77', 'Retail sale of watches and jewellery in specialised stores'), (450, '47.78', 'Other retail sale of new goods in specialised stores'), (451, '47.79', 'Retail sale of second-hand goods in stores'), (452, '47.81', 'Retail sale via stalls and markets of food, beverages and tobacco products'), (453, '47.82', 'Retail sale via stalls and markets of textiles, clothing and footwear'), (454, '49.50', 'Transport via pipeline'), (455, '51.10', 'Passenger air transport'), (456, '47.89', 'Retail sale via stalls and markets of other goods'), (457, '84.12', 'Regulation of the activities of providing health care, education, cultural services and other social services, excluding social security'), (458, '47.91', 'Retail sale via mail order houses or via Internet'), (459, '47.99', 'Other retail sale not in stores, stalls or markets'), (460, '49.10', 'Passenger rail transport, interurban'), (461, '49.31', 'Urban and suburban passenger land transport'), (462, '49.39', 'Other passenger land transport n.e.c.'), (463, '50.10', 'Sea and coastal passenger water transport'), (464, '50.20', 'Sea and coastal freight water transport'), (465, '79.11', 'Travel agency activities'), (466, '79.12', 'Tour operator activities'), (467, '80.10', 'Private security activities'), (468, '50.30', 'Inland passenger water transport'), (469, '50.40', 'Inland freight water transport'), (470, '52.21', 'Service activities incidental to land transportation'), (471, '52.22', 'Service activities incidental to water transportation'), (472, '52.23', 'Service activities incidental to air transportation'), (473, '52.29', 'Other transportation support activities'), (474, '53.10', 'Postal activities under universal service obligation'), (475, '53.20', 'Other postal and courier activities'), (476, '55.20', 'Holiday and other short-stay accommodation'), (477, '55.30', 'Camping grounds, recreational vehicle parks and trailer parks'), (478, '56.10', 'Restaurants and mobile food service activities'), (479, '71.11', 'Architectural activities'), (480, '73.11', 'Advertising agencies'), (481, '74.20', 'Photographic activities'), (482, '90.01', 'Performing arts'), (483, '56.29', 'Other food service activities'), (484, '58.12', 'Publishing of directories and mailing lists'), (485, '59.11', 'Motion picture, video and television programme production activities'), (486, '59.12', 'Motion picture, video and television programme post-production activities'), (487, '59.13', 'Motion picture, video and television programme distribution activities'), (488, '59.20', 'Sound recording and music publishing activities'), (489, '60.20', 'Television programming and broadcasting activities'), (490, '61.30', 'Satellite telecommunications activities'), (491, '61.90', 'Other telecommunications activities'), (492, '62.01', 'Computer programming activities'), (493, '84.21', 'Foreign affairs'), (494, '84.22', 'Defence activities'), (495, '84.23', 'Justice and judicial activities'), (496, '84.25', 'Fire service activities'), (497, '66.30', 'Fund management activities'), (498, '69.10', 'Legal activities'), (499, '62.02', 'Computer consultancy activities'), (500, '62.03', 'Computer facilities management activities'), (501, '62.09', 'Other information technology and computer service activities'), (502, '63.11', 'Data processing, hosting and related activities'), (503, '63.99', 'Other information service activities n.e.c.'), (504, '64.19', 'Other monetary intermediation'), (505, '64.30', 'Trusts, funds and similar financial entities'), (506, '64.99', 'Other financial service activities, except insurance and pension funding n.e.c.'), (507, '66.11', 'Administration of financial markets'), (508, '66.12', 'Security and commodity contracts brokerage'), (509, '66.19', 'Other activities auxiliary to financial services, except insurance and pension funding'), (510, '66.21', 'Risk and damage evaluation'), (511, '66.22', 'Activities of insurance agents and brokers'), (512, '66.29', 'Other activities auxiliary to insurance and pension funding'), (513, '68.10', 'Buying and selling of own real estate'), (514, '68.20', 'Rental and operating of own or leased real estate'), (515, '68.31', 'Real estate agencies'), (516, '68.32', 'Management of real estate on a fee or contract basis'), (517, '69.20', 'Accounting, bookkeeping and auditing activities; tax consultancy'), (518, '70.10', 'Activities of head offices'), (519, '70.21', 'Public relations and communication activities'), (520, '74.30', 'User_translation and interpretation activities'), (521, '70.22', 'Business and other management consultancy activities'), (522, '71.12', 'Engineering activities and related technical consultancy'), (523, '71.20', 'Technical testing and analysis'), (524, '72.11', 'Research and experimental development on biotechnology'), (525, '72.19', 'Other research and experimental development on natural sciences and engineering'), (526, '72.20', 'Research and experimental development on social sciences and humanities'), (527, '73.12', 'Media representation'), (528, '73.20', 'Market research and public opinion polling'), (529, '74.10', 'Specialised design activities'), (530, '74.90', 'Other professional, scientific and technical activities n.e.c.'), (531, '85.10', 'Pre-primary education'), (532, '85.20', 'Primary education'), (533, '85.42', 'Tertiary education'), (534, '85.52', 'Cultural education'), (535, '85.59', 'Other education n.e.c.'), (536, '86.10', 'Hospital activities'), (537, '77.11', 'Rental and leasing of cars and light motor vehicles'), (538, '77.12', 'Rental and leasing of trucks'), (539, '77.21', 'Rental and leasing of recreational and sports goods'), (540, '77.22', 'Rental of video tapes and disks'), (541, '77.29', 'Rental and leasing of other personal and household goods'), (542, '77.31', 'Rental and leasing of agricultural machinery and equipment'), (543, '77.32', 'Rental and leasing of construction and civil engineering machinery and equipment'), (544, '77.33', 'Rental and leasing of office machinery and equipment (including computers)'), (545, '77.34', 'Rental and leasing of water transport equipment'), (546, '77.35', 'Rental and leasing of air transport equipment'), (547, '77.39', 'Rental and leasing of other machinery, equipment and tangible goods n.e.c.'), (548, '77.40', 'Leasing of intellectual property and similar products, except copyrighted works'), (549, '78.10', 'Activities of employment placement agencies'), (550, '78.20', 'Temporary employment agency activities'), (551, '78.30', 'Other human resources provision'), (552, '79.90', 'Other reservation service and related activities'), (553, '80.20', 'Security systems service activities'), (554, '81.10', 'Combined facilities support activities'), (555, '81.21', 'General cleaning of buildings'), (556, '81.22', 'Other building and industrial cleaning activities'), (557, '91.02', 'Museums activities'), (558, '93.12', 'Activities of sports clubs'), (559, '93.13', 'Fitness facilities'), (560, '94.20', 'Activities of trade unions'), (561, '93.11', 'Operation of sports facilities'), (562, '81.30', 'Landscape service activities'), (563, '82.11', 'Combined office administrative service activities'), (564, '82.19', 'Photocopying, document preparation and other specialised office support activities'), (565, '82.30', 'Organisation of conventions and trade shows'), (566, '82.91', 'Activities of collection agencies and credit bureaus'), (567, '82.99', 'Other business support service activities n.e.c.'), (568, '84.11', 'General public administration activities'), (569, '84.13', 'Regulation of and contribution to more efficient operation of businesses'), (570, '84.24', 'Public order and safety activities'), (571, '85.31', 'General secondary education'), (572, '96.03', 'Funeral and related activities'), (573, '85.32', 'Technical and vocational secondary education'), (574, '85.41', 'Post-secondary non-tertiary education'), (575, '85.51', 'Sports and recreation education'), (576, '85.60', 'Educational support activities'), (577, '86.21', 'General medical practice activities'), (578, '86.22', 'Specialist medical practice activities'), (579, '86.90', 'Other human health activities'), (580, '87.10', 'Residential nursing care activities'), (581, '87.20', 'Residential care activities for mental retardation, mental health and substance abuse'), (582, '87.30', 'Residential care activities for the elderly and disabled'), (583, '87.90', 'Other residential care activities'), (584, '88.10', 'Social work activities without accommodation for the elderly and disabled'), (585, '88.91', 'Child day-care activities'), (586, '88.99', 'Other social work activities without accommodation n.e.c.'), (587, '90.02', 'Support activities to performing arts'), (588, '90.04', 'Operation of arts facilities'), (589, '91.01', 'Library and archives activities'), (590, '91.03', 'Operation of historical sites and buildings and similar visitor attractions'), (591, '91.04', 'Botanical and zoological gardens and nature reserves activities'), (592, '92.00', 'Gambling and betting activities'), (593, '93.21', 'Activities of amusement parks and theme parks'), (594, '93.29', 'Other amusement and recreation activities'), (595, '94.11', 'Activities of business and employers membership organisations'), (596, '94.12', 'Activities of professional membership organisations'), (597, '94.91', 'Activities of religious organisations'), (598, '94.92', 'Activities of political organisations'), (599, '94.99', 'Activities of other membership organisations n.e.c.'), (600, '95.11', 'Repair of computers and peripheral equipment'), (601, '95.12', 'Repair of communication equipment'), (602, '95.21', 'Repair of consumer electronics'), (603, '95.22', 'Repair of household appliances and home and garden equipment'), (604, '95.23', 'Repair of footwear and leather goods'), (605, '95.24', 'Repair of furniture and home furnishings'), (606, '95.25', 'Repair of watches, clocks and jewellery'), (607, '95.29', 'Repair of other personal and household goods'), (608, '96.01', 'Washing and (dry-)cleaning of textile and fur products'), (609, '96.02', 'Hairdressing and other beauty treatment'), (610, '96.04', 'Physical well-being activities'), (611, '96.09', 'Other personal service activities n.e.c.'), (612, '97.00', 'Activities of households as employers of domestic personnel'), (613, '98.10', 'Undifferentiated goods-producing activities of private households for own use'), (614, '98.20', 'Undifferentiated service-producing activities of private households for own use'), (615, '99.00', 'Activities of extraterritorial organisations and bodies'); INSERT INTO operating_mode (id, shape_url, svg_path, code) VALUES (1, 'Square', 'm0,0l12.966617,0l0,12.966617l-12.966617,0l0,-12.966617z', 'Ownshop'), (2, 'Circle', 'm6.511173,0.15544c-3.557514,0 -6.341655,2.78414 -6.341655,6.341655s2.784141,6.341655 6.341655,6.341655s6.341656,-2.784142 6.341656,-6.341655s-2.784142,-6.341655 -6.341656,-6.341655z', 'Affiliate'), (3, 'Diamond', 'm6.465839,0l4.864033,6.41782l-4.864033,6.41782l-4.864032,-6.41782l4.864032,-6.41782z', 'Franchise'), (4, 'Triangle', 'm0.09108,13.01478l6.498306,-12.963892l6.498306,12.963892l-12.996613,0z', 'Corner'), (5, 'default', 'm10.316736,19.448206c-0.430615,-2.113873 -1.189851,-3.872988 -2.109454,-5.503368c-0.682109,-1.209355 -1.472302,-2.325614 -2.203434,-3.498348c-0.244066,-0.39149 -0.454697,-0.805072 -0.689222,-1.211373c-0.468934,-0.81241 -0.849142,-1.754351 -0.824983,-2.9762c0.023604,-1.193815 0.368875,-2.151451 0.866761,-2.934432c0.818872,-1.287811 2.190518,-2.343673 4.030931,-2.621155c1.504763,-0.226873 2.915584,0.156423 3.916061,0.741439c0.817552,0.478068 1.450666,1.116656 1.931913,1.869264c0.502305,0.785512 0.848199,1.713522 0.87721,2.923989c0.014853,0.620163 -0.086697,1.194472 -0.229757,1.670845c-0.144782,0.482194 -0.37763,0.885258 -0.584792,1.315796c-0.404401,0.840425 -0.911406,1.610465 -1.420221,2.380966c-1.515546,2.294984 -2.938032,4.635493 -3.561013,7.842578z', 'Other');
create table "Transactions" ( "OrganizationId" uuid not null, "AccountId" int not null, "TransactionId" bigserial, "TransactionDate" timestamp not null, "Description" varchar(250), "Amount" numeric(14,2) not null, "CreatedOn" timestamp not null default now(), primary key ("OrganizationId", "AccountId", "TransactionId"), constraint "Transactions_Accounts_fkey" foreign key ("OrganizationId", "AccountId") references "Accounts"("OrganizationId", "AccountId") ); create table "BankTransactions" ( "OrganizationId" uuid not null, "BankAccountId" int not null, "BankTransactionId" bigint not null, "ReferenceId" varchar(50), primary key ("OrganizationId", "BankAccountId", "BankTransactionId"), constraint "BankTransactions_Transactions_fkey" foreign key ("OrganizationId", "BankAccountId", "BankTransactionId") references "Transactions"("OrganizationId", "AccountId", "TransactionId"), constraint "BankTransactions_BankAccounts_fkey" foreign key ("OrganizationId", "BankAccountId") references "BankAccounts"("OrganizationId", "BankAccountId"), unique ("OrganizationId", "BankAccountId", "ReferenceId") );
<gh_stars>1-10 DROP DATABASE DESKLIT; create DATABASE DESKLIT; USE DESKLIT; CREATE TABLE USER( ID int NOT NULL AUTO_INCREMENT, EMAIL varchar(255) NOT NULL, PASSWORD varchar(255) NOT NULL, ROLE varchar(255) NOT NULL, PRIMARY KEY (ID), UNIQUE KEY unique_email (EMAIL) ); CREATE TABLE CLIENT( ID int NOT NULL AUTO_INCREMENT, NAME varchar(255) NOT NULL, COLOR varchar(255) NOT NULL, DESCRIPTION varchar(255) NOT NULL, UNIQUE KEY unique_client_name (NAME), PRIMARY KEY (ID) ); CREATE TABLE DOMAIN( ID int NOT NULL AUTO_INCREMENT, NAME varchar(255) NOT NULL, CLIENT_ID int NOT NULL, PRIMARY KEY (ID), FOREIGN KEY (CLIENT_ID) REFERENCES CLIENT(ID) ); CREATE TABLE TAG( ID int NOT NULL AUTO_INCREMENT, NAME varchar(255) NOT NULL, UNIQUE KEY unique_tag_name (NAME), PRIMARY KEY (ID) ); CREATE TABLE ARTICLE( ID int NOT NULL AUTO_INCREMENT, TITLE varchar(255) NOT NULL, CONTENT varchar(2000) NOT NULL, CREATOR_ID int NOT NULL, CLIENT_ID int NOT NULL, UNIQUE KEY unique_article_title_per_client (TITLE,CLIENT_ID), PRIMARY KEY (ID), FOREIGN KEY (CREATOR_ID) REFERENCES USER(ID), FOREIGN KEY (CLIENT_ID) REFERENCES CLIENT(ID) ); CREATE TABLE TICKET( ID int NOT NULL AUTO_INCREMENT, TITLE varchar(255) NOT NULL, DESCRIPTION varchar(2000) NOT NULL, STATUS varchar(255) NOT NULL, CREATOR_ID int NOT NULL, ASSIGNEE_ID int NOT NULL, CLIENT_ID int NOT NULL, PRIORITY varchar(255) NOT NULL, CREATION_DATE datetime NOT NULL, RESOLVED_DATE datetime, UNIQUE KEY unique_ticket_title_per_client (TITLE,CLIENT_ID), PRIMARY KEY (ID), FOREIGN KEY (CREATOR_ID) REFERENCES USER(ID), FOREIGN KEY (ASSIGNEE_ID) REFERENCES USER(ID), FOREIGN KEY (CLIENT_ID) REFERENCES CLIENT(ID) );
<filename>src/test/resources/sql/alter_table/999d14a0.sql -- file:foreign_key.sql ln:764 expect:true ALTER TABLE fktable ADD CONSTRAINT fk_1_2 FOREIGN KEY (x1) REFERENCES pktable(id2)
<filename>src/test/resources/sql/select/dbd2f3ec.sql -- file:rowsecurity.sql ln:866 expect:true SELECT * FROM z1 WHERE f_leak(b)
CREATE OR REPLACE FUNCTION pgl_ddl_deploy.exclude_regex() RETURNS text LANGUAGE sql IMMUTABLE AS $function$ SELECT '^(pg_catalog|information_schema|pg_temp.*|pg_toast.*|pgl_ddl_deploy|pglogical|pglogical_ticker|repack)$'::TEXT; $function$ ;
๏ปฟINSERT INTO RightsOfRoles (descriptionOfRight, adding, removing, commenting, updating) VALUES ('all rights',true,true,true,true), ('client rights',true,false,true,true); INSERT INTO Role (typeOfRole) VALUES ('admin'), ('customer'); INSERT INTO RightsRoleConnect (id_role_Role,id_right_RightsOfRoles) VALUES ((SELECT id_role FROM Role WHERE typeOfRole='admin'), (SELECT id_right FROM RightsOfRoles WHERE descriptionOfRight='all rights')); INSERT INTO RightsRoleConnect (id_role_Role,id_right_RightsOfRoles) VALUES ((SELECT id_role FROM Role WHERE typeOfRole='customer'), (SELECT id_right FROM RightsOfRoles WHERE descriptionOfRight='client rights')); INSERT INTO Users (firstName, lastName, email, login, password, id_role_Role) VALUES ('Andrey', 'Semenov', '<EMAIL>', '<PASSWORD>4281', '123', (SELECT id_role FROM Role WHERE Role.typeOfRole = 'admin')); INSERT INTO Users (firstName, lastName, email, login, password, id_role_Role) VALUES ('Vasya', 'Pupkin', '<EMAIL>', '<PASSWORD>', 'password', (SELECT id_role FROM Role WHERE Role.typeOfRole = 'customer')); INSERT INTO Category(nameOfCategory) VALUES('Books about computer science'); INSERT INTO State(stateName) VALUES ('ready'), ('delivering'); INSERT INTO Orders (descriptionOfOrder, priceOfOrder, dateOfOrder, id_user_Users, id_state_State, id_category_Category) VALUES('Git for proffesional programer',857.2,'2019.09.7 10:33', (SELECT id_user FROM Users WHERE login = 'Pupkin4281'), (SELECT id_state FROM State WHERE stateName='ready'), (SELECT id_category FROM Category WHERE nameOfCategory='Books about computer science') ); INSERT INTO Orders (descriptionOfOrder, priceOfOrder, dateOfOrder, id_user_Users, id_state_State, id_category_Category) VALUES('Effective java',1000,'2019.09.7 10:40', (SELECT id_user FROM Users WHERE login = 'Pupkin4281'), (SELECT id_state FROM State WHERE stateName='delivering'), (SELECT id_category FROM Category WHERE nameOfCategory='Books about computer science') ); INSERT INTO Orders (id_user_Users) VALUES( (SELECT id_user FROM Users WHERE login = 'Andrey4281') ); INSERT INTO Comments (contentOfComment, id_order_Orders, dateOfComment) VALUES('This is very helpful book', (SELECT id_order FROM Orders INNER JOIN Users ON Orders.id_user_Users = Users.id_user WHERE Users.login='Pupkin4281' AND Orders.descriptionOfOrder='Git for proffesional programer'), '2019.09.7 10:52'); INSERT INTO Comments (contentOfComment, id_order_Orders, dateOfComment) VALUES('I am waiting my book', (SELECT id_order FROM Orders INNER JOIN Users ON Orders.id_user_Users = Users.id_user WHERE Users.login='Pupkin4281' AND Orders.descriptionOfOrder='Effective java'), '2019.09.7 10:57'); INSERT INTO AttachedFiles (fileName, id_order_Orders) VALUES('picture1.png', (SELECT id_order FROM Orders INNER JOIN Users ON Orders.id_user_Users = Users.id_user WHERE Users.login='Pupkin4281' AND Orders.descriptionOfOrder='Effective java')); INSERT INTO AttachedFiles (fileName, id_order_Orders) VALUES('picture2.png', (SELECT id_order FROM Orders INNER JOIN Users ON Orders.id_user_Users = Users.id_user WHERE Users.login='Pupkin4281' AND Orders.descriptionOfOrder='Effective java')); INSERT INTO AttachedFiles (fileName, id_order_Orders) VALUES('picture2.png', (SELECT id_order FROM Orders INNER JOIN Users ON Orders.id_user_Users = Users.id_user WHERE Users.login='Pupkin4281' AND Orders.descriptionOfOrder='Git for proffesional programer'));
update wpq7_options set option_value = 'http://localhost/ecordel' where option_id = 1; update wpq7_options set option_value = 'http://localhost/ecordel' where option_id = 2; -- admin update wpq7_users SET user_pass='<PASSWORD>';
<gh_stars>1-10 ALTER TABLE /*_*/querycache_info DROP KEY /*i*/qci_type, ADD PRIMARY KEY (qci_type);
<reponame>sl45sms/carbon-identity-framework CREATE OR REPLACE PROCEDURE TOKEN_CLEANUP_SP BEGIN DECLARE batchSize INTEGER; DECLARE cursorLimit INTEGER; DECLARE backupTables INTEGER; DECLARE sleepTime FLOAT; DECLARE safePeriod INTEGER; DECLARE rowCount INTEGER; DECLARE enableLog BOOLEAN; DECLARE logLevel VARCHAR(10); DECLARE enableAudit INTEGER; DECLARE deleteTillTime TIMESTAMP; DECLARE message VARCHAR(32672); DECLARE status integer default 0; -- ------------------------------------------ -- CONFIGURABLE ATTRIBUTES -- ------------------------------------------ SET batchSize = 10000; -- SET BATCH SIZE FOR AVOID TABLE LOCKS [DEFAULT : 10000] SET backupTables = 1; -- SET IF TOKEN TABLE NEEDS TO BACKUP BEFORE DELETE [DEFAULT : TRUE] SET sleepTime = 2; -- SET SLEEP TIME FOR AVOID TABLE LOCKS [DEFAULT : 2] SET safePeriod = 2; -- SET SAFE PERIOD OF HOURS FOR TOKEN DELETE, SINCE TOKENS COULD BE CASHED [DEFAULT : 2] SET rowCount=0; SET enableLog = TRUE; -- ENABLE LOGGING [DEFAULT : FALSE] SET logLevel = 'TRACE'; -- SET LOG LEVELS : TRACE , DEBUG SET enableAudit = 1; -- SET TRUE FOR KEEP TRACK OF ALL THE DELETED TOKENS USING A TABLE [DEFAULT : TRUE] SET deleteTillTime = CURRENT TIMESTAMP + (safePeriod) HOUR; -- ------------------------------------------------------ -- BACKUP IDN_OAUTH2_ACCESS_TOKEN TABLE -- ------------------------------------------------------ IF backupTables = 1 THEN IF EXISTS (SELECT NAME FROM SYSIBM.SYSTABLES WHERE NAME = 'IDN_OAUTH2_ACCESS_TOKEN_BAK') THEN DROP TABLE IDN_OAUTH2_ACCESS_TOKEN_BAK; END IF; CREATE TABLE IDN_OAUTH2_ACCESS_TOKEN_BAK LIKE IDN_OAUTH2_ACCESS_TOKEN; INSERT INTO IDN_OAUTH2_ACCESS_TOKEN_BAK (SELECT * FROM IDN_OAUTH2_ACCESS_TOKEN); -- ------------------------------------------------------ -- BACKUP IDN_OAUTH2_AUTHORIZATION_CODE TABLE -- ------------------------------------------------------ IF EXISTS (SELECT NAME FROM SYSIBM.SYSTABLES WHERE NAME = 'IDN_OAUTH2_AUTHORIZATION_CODE_BAK') THEN DROP TABLE IDN_OAUTH2_AUTHORIZATION_CODE_BAK; END IF; CREATE TABLE IDN_OAUTH2_AUTHORIZATION_CODE_BAK LIKE IDN_OAUTH2_AUTHORIZATION_CODE; INSERT INTO IDN_OAUTH2_AUTHORIZATION_CODE_BAK (SELECT * FROM IDN_OAUTH2_AUTHORIZATION_CODE); END IF; -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- CREATING IDN_OAUTH2_ACCESS_TOKEN_CLEANUP_AUDITLOG a nd IDN_OAUTH2_AUTHORIZATION_CODE_CLEANUP_AUDITLOGFOR DELETING --TOKENS and authorization codes -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IF enableAudit = 1 THEN IF NOT EXISTS (SELECT NAME FROM SYSIBM.SYSTABLES WHERE NAME = 'IDN_OAUTH2_ACCESS_TOKEN_CLEANUP_AUDITLOG') THEN CREATE TABLE IDN_OAUTH2_ACCESS_TOKEN_CLEANUP_AUDITLOG LIKE IDN_OAUTH2_ACCESS_TOKEN; END IF; IF NOT EXISTS (SELECT * FROM SYSIBM.SYSTABLES WHERE NAME = 'IDN_OAUTH2_AUTHORIZATION_CODE_CLEANUP_AUDITLOG') THEN CREATE TABLE IDN_OAUTH2_AUTHORIZATION_CODE_CLEANUP_AUDITLOG LIKE IDN_OAUTH2_AUTHORIZATION_CODE; END IF; END IF; -- ------------------------------------------------------ -- BATCH DELETE IDN_OAUTH2_ACCESS_TOKEN -- ------------------------------------------------------ IF enableAudit = 1 THEN INSERT INTO IDN_OAUTH2_ACCESS_TOKEN_CLEANUP_AUDITLOG SELECT * FROM IDN_OAUTH2_ACCESS_TOKEN WHERE TOKEN_STATE IN ('EXPIRED','INACTIVE','REVOKED') OR (TOKEN_STATE='ACTIVE' AND (deleteTillTime > TIME_CREATED + ((VALIDITY_PERIOD/1000)/60) MINUTE) AND (deleteTillTime > REFRESH_TOKEN_TIME_CREATED + ((REFRESH_TOKEN_VALIDITY_PERIOD/1000)/60) MINUTE)); END IF; REPEAT IF rowCount > 0 THEN CALL dbms_alert.waitone('sleeping',message ,status,sleepTime); END IF; DELETE FROM IDN_OAUTH2_ACCESS_TOKEN WHERE TOKEN_STATE IN ('EXPIRED','INACTIVE','REVOKED') OR (TOKEN_STATE='ACTIVE' AND (deleteTillTime > TIME_CREATED + ((VALIDITY_PERIOD/1000)/60) MINUTE) AND (deleteTillTime > REFRESH_TOKEN_TIME_CREATED + ((REFRESH_TOKEN_VALIDITY_PERIOD/1000)/60) MINUTE)) LIMIT batchSize; GET DIAGNOSTICS rowCount = ROW_COUNT; UNTIL rowCount=0 END REPEAT; -- ------------------------------------------------------ -- BATCH DELETE IDN_OAUTH2_AUTHORIZATION_CODE -- ------------------------------------------------------ IF enableAudit = 1 THEN INSERT INTO IDN_OAUTH2_AUTHORIZATION_CODE_CLEANUP_AUDITLOG SELECT * FROM IDN_OAUTH2_AUTHORIZATION_CODE acode WHERE NOT EXISTS (SELECT * FROM IDN_OAUTH2_ACCESS_TOKEN tok WHERE tok.TOKEN_ID = acode.TOKEN_ID) OR STATE NOT IN ('ACTIVE') OR deleteTillTime > (TIME_CREATED + ((VALIDITY_PERIOD/1000)/60) MINUTE) OR TOKEN_ID IS NULL; INSERT INTO IDN_OAUTH2_AUTHORIZATION_CODE_CLEANUP_AUDITLOG SELECT * FROM IDN_OAUTH2_AUTHORIZATION_CODE where CODE_ID in ( SELECT * FROM ( select CODE_ID FROM IDN_OAUTH2_AUTHORIZATION_CODE code WHERE NOT EXISTS ( SELECT * FROM IDN_OAUTH2_ACCESS_TOKEN token WHERE token.TOKEN_ID = code.TOKEN_ID AND token.TOKEN_STATE = 'ACTIVE') AND code.STATE NOT IN ( 'ACTIVE' ) ) as x) OR deleteTillTime > (TIME_CREATED + (( VALIDITY_PERIOD / 1000 )/ 60 ) MINUTE ); END IF; REPEAT IF rowCount > 0 THEN CALL dbms_alert.waitone('sleeping',message ,status,sleepTime); END IF; DELETE FROM IDN_OAUTH2_AUTHORIZATION_CODE where CODE_ID in ( SELECT * FROM ( select CODE_ID FROM IDN_OAUTH2_AUTHORIZATION_CODE code WHERE NOT EXISTS ( SELECT * FROM IDN_OAUTH2_ACCESS_TOKEN token WHERE token.TOKEN_ID = code.TOKEN_ID AND token.TOKEN_STATE = 'ACTIVE') AND code.STATE NOT IN ( 'ACTIVE' ) ) as x) OR deleteTillTime > ( TIME_CREATED + (( VALIDITY_PERIOD / 1000 )/ 60 ) MINUTE ); GET DIAGNOSTICS rowCount = ROW_COUNT; UNTIL rowCount=0 END REPEAT; END/
<reponame>dmankins/Vertica-Extension-Packages --------------- -- Example of using ngram functions --------------- CREATE TABLE sentences (sentence varchar(300)); COPY sentences FROM stdin; SingleWord This is an input text file So possibly is equated with possible This is the final data line Well maybe not! The quick brown fox jumped over the lazy dog \. \echo ***************** 2Grams: ***************** select sentence, twograms(sentence) over(partition by sentence) from sentences; \echo ***************** 3Grams: ***************** select sentence, threegrams(sentence) over(partition by sentence) from sentences; \echo ***************** 4Grams: ***************** select sentence, fourgrams(sentence) over(partition by sentence) from sentences; \echo ***************** 5Grams: ***************** select sentence, fivegrams(sentence) over(partition by sentence) from sentences; drop table sentences;
--/* \connect sduser_db \set ON_ERROR_STOP on --*/ -- fncanuserchangetlws says if the user can change this tlws create or replace function fncanuserchangetlws( p_sduserid bigint, p_tlws_ownerid bigint, p_tlanguage_ownerid bigint) returns int language plpgsql immutable as $$ declare tlws_ownerid bigint; begin if coalesce(p_sduserid,0) = 0 then return 0; end if; if coalesce(p_tlws_ownerid,0) <> 0 then tlws_ownerid = p_tlws_ownerid; elsif coalesce(p_tlanguage_ownerid,0) <> 0 then tlws_ownerid = p_tlanguage_ownerid; else tlws_ownerid = 0; end if; if p_sduserid = tlws_ownerid then return 1; elsif tlws_ownerid = 0 then return 1; else return 0; end if; end; $$; create or replace function fnsavelws( p_sduserid bigint, p_lwsid bigint, p_languageid bigint, p_word varchar(512), p_senseid bigint, p_commentary text, action varchar(64) -- create, save, delete ) returns table (r_tlwsid bigint) language plpgsql as $$ declare v_dialect_ownerid bigint; declare v_ownerid bigint; declare v_affected_count int; begin select ownerid from tlanguage where id = p_languageid into v_dialect_ownerid; -- check rights (later) -- perform an action if coalesce(v_dialect_ownerid,0) = p_sduserid then v_ownerid = null; else v_ownerid = p_sduserid; end if; if action = 'create' then insert into tlws (languageid, word, senseid, commentary, ownerid) values (p_languageid, p_word, p_senseid, p_commentary, v_ownerid) returning id into p_lwsid; get diagnostics v_affected_count = row_count; if v_affected_count != 1 then raise exception 'expected to insert exactly one record, which didn''t happen'; end if; return query (select p_lwsid); elsif action='save' then if p_lwsid is null then raise exception 'p_lwsid is null'; end if; update tlws set word = p_word, commentary = p_commentary, ownerid = v_ownerid where id = p_lwsid and --- next conditions are an additional checks languageid = p_languageid and senseid = p_senseid; if v_affected_count != 1 then raise exception 'expected to update exactly one record, which didn''t hapen'; end if; return query (select p_lwsid); elsif action='delete' then raise exception 'sorry, not implemented yet'; else raise exception 'bad action'; end if; return; end; $$; create or replace function fnsavesense( p_sduserid bigint, p_senseid bigint, p_oword text, p_theme text, p_phrase text, p_ownerid bigint ) returns table (r_senseid bigint) language plpgsql as $$ declare update_count int; begin if coalesce(p_sduserid,0) = 0 THEN raise exception 'p_sduserid must be specified'; end if; if coalesce(p_senseid,0) = 0 then raise exception 'p_senseid must be specified'; end if; if not (p_sduserid = 1/*tsar*/ or exists (select 1 from tsense where id = p_senseid and (ownerid is null or coalesce(ownerid,0)=p_ownerid))) then raise exception 'You are not allowed to update this sense'; end if; update tsense set oword = p_oword ,theme = p_theme ,phrase = p_phrase ,ownerid = p_ownerid where id = p_senseid; get diagnostics update_count = row_count; if update_count != 1 then raise exception 'expected to update just one record, which didn''t hapen'; end if; return query(select p_senseid); return; end; $$; create or replace function fnwordsearchmasterrecord( p_sduserid bigint) returns table ( favoritelanguageid int, favoritelanguageslug varchar(128)) language plpgsql as $$ begin if coalesce(p_sduserid,0) = 0 then return query(select cast(0 as int), cast('' as varchar(128))); return; else return query(select coalesce(sduser_profile.favorite_tlanguageid,0), coalesce(tlanguage.slug,'') from sduser_profile left join tlanguage on sduser_profile.favorite_tlanguageid = tlanguage.id where sduser_profile.id = p_sduserid); return; end if; end $$; create or replace function fnwordsearch( p_sduserid bigint, p_wordpattern text, p_offset bigint, p_limit bigint) returns table ( senseid integer, oword varchar(512), theme varchar(512), phrase text, lwsjson jsonb, hasfavoritelanguagetranslation bigint) language plpgsql as $$ begin return query( select tsense.id as senseid, tsense.oword, tsense.theme, tsense.phrase, (select jsonb_agg(row_to_json(detail)) from (select tlws.*, tlanguage.slug languageslug, fncanuserchangetlws(p_sduserid,tlws.ownerid,tlanguage.ownerid) as canedit, case when tlws.languageid = coalesce(sduser_profile.favorite_tlanguageid,0) then 0 else 1 end as prefer_favorite_language from tlws left join tlanguage on tlws.languageid = tlanguage.id where tlws.senseid=tsense.id order by prefer_favorite_language, languageslug ) as detail ) as lwsjson, (select count(1) from tlws where tlws.senseid=tsense.id and tlws.languageid = sduser_profile.favorite_tlanguageid) as hasfavoritelanguagetranslation from tsense left join sduser_profile on sduser_profile.id = p_sduserid where tsense.oword like p_wordpattern order by tsense.oword, tsense.theme, senseid offset p_offset limit p_limit); return; end; $$; \echo *** language_and_sense_fn.sql Done
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE IF NOT EXISTS `cvewatch` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; USE `cvewatch`; CREATE TABLE IF NOT EXISTS `auth_tokens` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_email` varchar(255) NOT NULL, `auth_type` varchar(255) NOT NULL, `selector` text NOT NULL, `token` longtext NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `expires_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `debian_cve` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cve_id` varchar(100) NOT NULL, `summary` longtext DEFAULT NULL, `scorev2` varchar(10) DEFAULT NULL, `scorev3` varchar(10) DEFAULT NULL, `link` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cve_id_UNIQUE` (`cve_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `debian_package` ( `id` int(11) NOT NULL AUTO_INCREMENT, `debian_package_name` varchar(100) NOT NULL, `version` varchar(100) NOT NULL, `distribution` varchar(100) NOT NULL, `project_id` int(11) unsigned DEFAULT NULL, `is_vulnerable` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `fk_debian_package_project1` (`project_id`), CONSTRAINT `fk_debian_package_project1` FOREIGN KEY (`project_id`) REFERENCES `project` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `debian_package_cve` ( `debian_package_id` int(11) NOT NULL, `cve_id` int(11) NOT NULL, PRIMARY KEY (`debian_package_id`,`cve_id`), KEY `fk_debian_package_cve_cve1` (`cve_id`), CONSTRAINT `fk_debian_package_cve_cve1` FOREIGN KEY (`cve_id`) REFERENCES `debian_cve` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `fk_debian_package_cve_debian_package1` FOREIGN KEY (`debian_package_id`) REFERENCES `debian_package` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `project` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `project_name` varchar(100) NOT NULL, `operating_system` varchar(100) NOT NULL, `users_id` int(11) unsigned NOT NULL, `uploaded_file` longtext NOT NULL, `status_cve_check` varchar(50) DEFAULT NULL, `check_active` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_project_users` (`users_id`), CONSTRAINT `fk_project_users` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `first_name` varchar(255) DEFAULT NULL, `last_name` varchar(255) DEFAULT NULL, `profile_image` varchar(255) NOT NULL DEFAULT '_defaultUser.png', `company` varchar(255) NOT NULL, `is_admin` varchar(255) DEFAULT NULL, `verified_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` timestamp NULL DEFAULT NULL, `last_login_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; INSERT INTO `users` (`id`, `username`, `email`, `password`, `first_name`, `last_name`, `profile_image`, `company`, `is_admin`, `verified_at`, `created_at`, `updated_at`, `deleted_at`, `last_login_at`) VALUES (1, 'admin', '<EMAIL>', <PASSWORD>', 'Admin', 'Admin', '_defaultUser.png', 'Admin', 'true', '2021-08-30 14:50:03', '2021-08-30 13:19:30', '2021-09-21 14:45:16', NULL, '2021-09-20 13:59:43'); CREATE TABLE IF NOT EXISTS `yocto_cve` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cve_id` varchar(100) NOT NULL, `summary` longtext DEFAULT NULL, `scorev2` varchar(10) DEFAULT NULL, `scorev3` varchar(10) DEFAULT NULL, `link` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cve_id_UNIQUE` (`cve_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `yocto_package` ( `id` int(11) NOT NULL AUTO_INCREMENT, `yocto_package_name` varchar(100) NOT NULL, `version` varchar(100) NOT NULL, `project_id` int(11) unsigned DEFAULT NULL, `is_vulnerable` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `fk_yocto_package_project1` (`project_id`), CONSTRAINT `fk_yocto_package_project1` FOREIGN KEY (`project_id`) REFERENCES `project` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `yocto_package_cve` ( `yocto_package_id` int(11) NOT NULL, `yocto_cve_id` int(11) NOT NULL, PRIMARY KEY (`yocto_package_id`,`yocto_cve_id`), KEY `fk_yocto_package_cve_cve1` (`yocto_cve_id`), CONSTRAINT `fk_yocto_package_cve_cve1` FOREIGN KEY (`yocto_cve_id`) REFERENCES `yocto_cve` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `fk_yocto_package_cve_yocto_package1` FOREIGN KEY (`yocto_package_id`) REFERENCES `yocto_package` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
------------------------------- -- Auxiliar database DATA Model ------------------------------- CREATE TABLE IF NOT EXISTS image_t ( -- Observer metadata observer TEXT, -- Observer full name (family name + surname) obs_family_name TEXT, -- Observer family name (used only for dataset Zenodo publication) obs_surnane TEXT, -- Observer family name (used only for dataset Zenodo publication) organization TEXT, -- Observer organization email TEXT, -- Observer email -- Location metadata location TEXT, -- location name -- Camera metadata model TEXT, -- Camera Model from EXIF focal_length REAL, -- Either from config file or EXIF f_number REAL, -- Either from config file or EXIF -- Image metadata name TEXT NOT NULL, -- Image name without the path hash BLOB, -- Image hash tstamp TEXT, -- ISO 8601 timestamp from EXIF night TEXT, -- YYYY-MM-DD night where it belongs (as a grouping attribute) iso TEXT, -- ISO sensivity from EXIF exptime REAL, -- exposure time in seconds from EXIF roi TEXT, -- region of interest: [x1:x2,y1:y2] dark_roi TEXT, -- dark region of interest: [x1:x2,y1:y2], NULL if not used bias INTEGER DEFAULT 0, -- Common BIAS level for all channels scale REAL, -- image scale in arcsec/pixel -- Image Measurements aver_signal_R1 REAL, -- R1 raw signal mean without dark substraction vari_signal_R1 REAL, -- R1 raw signal variance without dark substraction aver_dark_R1 REAL DEFAULT 0.0, -- R1 dark level R1 either from master dark or dark_roi vari_dark_R1 REAL DEFAULT 0.0, -- R1 dark variance either from master dark or dark_roi aver_signal_G2 REAL, -- G2 raw signal mean without dark substraction vari_signal_G2 REAL, -- G2 raw signal variance without dark substraction aver_dark_G2 REAL DEFAULT 0.0, -- G2 dark level either from master dark or dark_roi vari_dark_G2 REAL DEFAULT 0.0, -- G2 dark variance either from master dark or dark_roi aver_signal_G3 REAL, -- G3 raw signal mean without dark substraction vari_signal_G3 REAL, -- G3 raw signal variance without dark substraction aver_dark_G3 REAL DEFAULT 0.0, -- G3 dark level either from master dark or dark_roi vari_dark_G3 REAL DEFAULT 0.0, -- G3 dark variance either from master dark or dark_roi aver_signal_B4 REAL, -- B4 raw signal mean without dark substraction vari_signal_B4 REAL, -- B4 raw signal variance without dark substraction aver_dark_B4 REAL DEFAULT 0.0, -- B4 dark level either master dark or dark_roi vari_dark_B4 REAL DEFAULT 0.0, -- B4 dark variance either master dark or dark_roi -- Processing state columns session INTEGER NOT NULL, -- session identifier type TEXT NOT NULL, -- LIGHT or DARK state INTEGER NOT NULL REFERENCES state_t(state), meta_changes INTEGER NOT NULL REFERENCES changes_t(flags), PRIMARY KEY(hash) ); CREATE INDEX IF NOT EXISTS image_i1 ON image_t(name); CREATE TABLE IF NOT EXISTS state_t ( state INTEGER, label TEXT, PRIMARY KEY(state) ); CREATE TABLE IF NOT EXISTS changes_t ( flags INTEGER, label TEXT, PRIMARY KEY(flags) ); ------------------------------------------------------------------------------------------------ -- This View exists to automatically substract the dark levels and calculate resulting variances -- From the raw data without actually modifyng the underlying data ------------------------------------------------------------------------------------------------ CREATE VIEW IF NOT EXISTS image_v AS SELECT -- Observer metadata observer , -- Observer name organization , -- Observer organization email , -- Observer email -- Location metadata location , -- location name -- Camera metadata model , -- Camera Model from EXIF focal_length , -- Either from config file or EXIF f_number , -- Either from config file or EXIF -- Image metadata name , -- Image name without the path hash , -- Image hash tstamp , -- ISO 8601 timestamp iso , -- ISO sensivity exptime , -- exposure time in seconds roi , -- region of interest: [x1:x2,y1:y2] dark_roi , -- dark region of interest: [x1:x2,y1:y2], NULL if not used bias , -- common bias for all channels scale , -- image scale in arcsec/pixel -- Image Measurements -- (aver_signal_R1 - bias - aver_dark_R1) AS aver_signal_R1, -- R1 dark substracted signal (aver_signal_R1 - aver_dark_R1) AS aver_signal_R1, -- R1 dark substracted signal (vari_signal_R1 + vari_dark_R1) AS vari_signal_R1, -- R1 dark substracted signal variance aver_dark_R1 , -- R1 dark level R1 either from master dark or dark_roi vari_dark_R1 , -- R1 dark variance either from master dark or dark_roi -- (aver_signal_G2 - bias - aver_dark_G2) AS aver_signal_G2, -- G2 dark substracted signal (aver_signal_G2 - aver_dark_G2) AS aver_signal_G2, -- G2 dark substracted signal (vari_signal_G2 + vari_dark_G2) AS vari_signal_G2, -- G2 dark substracted signal variance aver_dark_G2 , -- G2 dark level either from master dark or dark_roi vari_dark_G2 , -- G2 dark variance either from master dark or dark_roi -- (aver_signal_G3 - bias - aver_dark_G3) AS aver_signal_G3, -- G3 dark substracted signal (aver_signal_G3 - aver_dark_G3) AS aver_signal_G3, -- G3 dark substracted signal (vari_signal_G3 + vari_dark_G3) AS vari_signal_G3, -- G3 dark substracted signal variance aver_dark_G3 , -- G3 dark level either from master dark or dark_roi vari_dark_G3 , -- G3 dark variance either from master dark or dark_roi -- (aver_signal_B4 - bias - aver_dark_B4) AS aver_signal_B4, -- B4 dark substracted signal (aver_signal_B4 - aver_dark_B4) AS aver_signal_B4, -- B4 dark substracted signal (vari_signal_B4 + vari_dark_B4) AS vari_signal_B4, -- B4 dark substracted signal variance aver_dark_B4 , -- B4 dark level either master dark or dark_roi vari_dark_B4 , -- B4 dark variance either master dark or dark_roi -- Processing state columns session , -- session identifier type , -- LIGHT or DARK state , -- See table state_t meta_changes -- See table changes_t FROM image_t; CREATE TABLE IF NOT EXISTS master_dark_t ( session INTEGER, -- session id aver_R1 REAL NOT NULL, -- Red mean dark level vari_R1 REAL NOT NULL, -- Red dark vari aver_G2 REAL NOT NULL, -- Green 1 mean dark level vari_G2 REAL NOT NULL, -- Green 1 dark variance aver_G3 REAL NOT NULL, -- Green 2 mean dark level vari_G3 REAL NOT NULL, -- Green 2 dark variance aver_B4 REAL NOT NULL, -- Blue mean dark level vari_B4 REAL NOT NULL, -- Blue dark variance min_exptime REAL NOT NULL, -- Minimun session exposure time max_exptime REAL NOT NULL, -- Maximun session exposure time roi TEXT NOT NULL, -- region of interest: [x1:x2,y1:y2] N INTEGER NOT NULL, -- number of darks used to average PRIMARY KEY(session) );
IF NOT EXISTS(SELECT 1 FROM sys.tables WHERE object_id = OBJECT_ID(N'dbo.TabDetails')) BEGIN CREATE TABLE dbo.TabDetails ( Id UNIQUEIDENTIFIER NOT NULL PRIMARY KEY, [Data] NVARCHAR(MAX) NOT NULL ) END GO
--------------------------------------------------------------------- -- OUTER APPLY -- 1. Apply right Table Expression to Left Table Rows -- 2. Add OUTER Rows --------------------------------------------------------------------- USE TSQLV4 SELECT * FROM Sales.Customers --91 SELECT * FROM Sales.Orders --830 --In this case OUTER APPLY and CROSS JOIN are similar SELECT * FROM Sales.Customers OUTER APPLY Sales.Orders --In this case OUTER APPLY and LEFT JOIN are similar SELECT * FROM Sales.Customers C OUTER APPLY ( SELECT O.orderid FROM Sales.Orders O where O.custid = C.custid ) A --------------------------------------------------------------------- -- Query: Three most recent orders for each customer, including customers that made no orders --------------------------------------------------------------------- SELECT * FROM Sales.Customers C OUTER APPLY ( SELECT TOP(3) O.orderid FROM Sales.Orders O where O.custid = C.custid ORDER BY O.orderdate DESC, O.orderid DESC ) A SELECT * FROM Sales.Customers C OUTER APPLY ( SELECT O.orderid FROM Sales.Orders O where O.custid = C.custid ORDER BY O.orderdate DESC, O.orderid DESC OFFSET 0 ROWS FETCH NEXT 3 ROWS ONLY ) A --------------------------------------------------------------------- -- Query: more convenient to work with inline TVFs instead of derived tables. --------------------------------------------------------------------- DROP FUNCTION IF EXISTS dbo.fnGetTopOrders GO CREATE FUNCTION dbo.fnGetTopOrders (@custid INT) RETURNS TABLE AS RETURN SELECT * FROM Sales.Orders WHERE custid = @custid ORDER BY orderdate DESC, orderid DESC OFFSET 0 ROWS FETCH NEXT 3 ROWS ONLY GO SELECT * FROM dbo.fnGetTopOrders(1) SELECT * FROM Sales.Customers C OUTER APPLY ( SELECT * FROM dbo.fnGetTopOrders(C.custid) ) A
<gh_stars>0 CREATE TABLE camddmw.fuel_year_dim ( fuel_yr_dim numeric(10,0) NOT NULL, unit_id numeric(12,0) NOT NULL, op_year numeric(4,0) NOT NULL, fuel_code character varying(10) COLLATE pg_catalog."default", fuel_type_description character varying(35) COLLATE pg_catalog."default", indicator character varying(2) COLLATE pg_catalog."default", data_source character varying(35) COLLATE pg_catalog."default", userid character varying(8) COLLATE pg_catalog."default", add_date date, CONSTRAINT uk_fuel_year_1 UNIQUE (unit_id, fuel_code, op_year, indicator) ) PARTITION BY RANGE (op_year); -- ALTER TABLE camddmw.fuel_year_dim -- OWNER to "u<PASSWORD>"; COMMENT ON TABLE camddmw.fuel_year_dim IS 'Primary and secondary unit fuels for an operating year'; COMMENT ON COLUMN camddmw.fuel_year_dim.fuel_yr_dim IS 'Identity key of FUEL_YEAR_DIM table'; COMMENT ON COLUMN camddmw.fuel_year_dim.unit_id IS 'Unique identifier of a unit'; COMMENT ON COLUMN camddmw.fuel_year_dim.op_year IS 'Year in which data was collected'; COMMENT ON COLUMN camddmw.fuel_year_dim.fuel_code IS 'Fuel type code'; COMMENT ON COLUMN camddmw.fuel_year_dim.fuel_type_description IS 'Fuel type description'; COMMENT ON COLUMN camddmw.fuel_year_dim.indicator IS 'Indicates whether the parameter was used as a primary or secondary source'; COMMENT ON COLUMN camddmw.fuel_year_dim.data_source IS 'Source of the data'; COMMENT ON COLUMN camddmw.fuel_year_dim.userid IS 'Initials of user who last modified data'; COMMENT ON COLUMN camddmw.fuel_year_dim.add_date IS 'Date on which the record was added'; -- Index: fuel_year_dim_idx2 -- DROP INDEX camddmw.fuel_year_dim_idx2; CREATE INDEX fuel_year_dim_idx2 ON camddmw.fuel_year_dim USING btree (fuel_code COLLATE pg_catalog."default" ASC NULLS LAST, indicator COLLATE pg_catalog."default" ASC NULLS LAST, unit_id ASC NULLS LAST, fuel_type_description COLLATE pg_catalog."default" ASC NULLS LAST) TABLESPACE pg_default; -- Partitions SQL CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p1 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM (MINVALUE) TO ('1996'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p1 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p10 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2004') TO ('2005'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p10 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p11 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2005') TO ('2006'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p11 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p12 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2006') TO ('2007'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p12 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p13 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2007') TO ('2008'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p13 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p14 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2008') TO ('2009'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p14 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p15 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2009') TO ('2010'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p15 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p16 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2010') TO ('2011'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p16 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p17 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2011') TO ('2012'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p17 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p18 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2012') TO ('2013'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p18 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p19 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2013') TO ('2014'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p19 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p2 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('1996') TO ('1997'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p2 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p20 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2014') TO ('2015'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p20 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p21 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2015') TO ('2016'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p21 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p22 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2016') TO ('2017'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p22 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p23 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2017') TO ('2018'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p23 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p24 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2018') TO ('2019'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p24 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p25 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2019') TO ('2020'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p25 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p26 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2020') TO ('2021'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p26 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p27 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2021') TO ('2022'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p27 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p3 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('1997') TO ('1998'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p3 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p4 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('1998') TO ('1999'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p4 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p5 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('1999') TO ('2000'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p5 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p6 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2000') TO ('2001'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p6 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p7 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2001') TO ('2002'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p7 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p8 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2002') TO ('2003'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p8 -- OWNER to "uImcwuf4K9dyaxeL"; CREATE TABLE camddmw.fuel_year_dim_fuel_yr_dim_p9 PARTITION OF camddmw.fuel_year_dim FOR VALUES FROM ('2003') TO ('2004'); -- ALTER TABLE camddmw.fuel_year_dim_fuel_yr_dim_p9 -- OWNER to "uImcwuf4K9dyaxeL";
<filename>gimnasio.sql #DROP DATABASE gimnasio; #CREATE DATABASE gimnasio; CREATE TABLE gimnasio ( idgimnasio smallint(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre varchar(45) NOT NULL, dinero float(8,2) NOT NULL ); INSERT INTO gimnasio (nombre, dinero) VALUES ('Cazadores', 1200.00); CREATE TABLE membresia ( idmembresia tinyint(1) NOT NULL AUTO_INCREMENT PRIMARY KEY, membresia varchar(10) NOT NULL, costo float(6,2) NOT NULL ); INSERT INTO membresia (idmembresia, membresia, costo) VALUES (1, 'Mensual', 300.00), (2, 'Trimestral', 750.00), (3, 'Semestral', 1300.00), (4, 'Anual', 2400.00), (5, 'Semanal', 100.00); CREATE TABLE tipo_producto ( idtipo_producto tinyint(1) NOT NULL AUTO_INCREMENT PRIMARY KEY, tipo_producto varchar(11) NOT NULL ); INSERT INTO tipo_producto (idtipo_producto, tipo_producto) VALUES (1, 'Bebidas'), (2, 'Suplementos'), (3, 'Accesorios'), (4, 'Otros'); CREATE TABLE producto ( idproducto int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre varchar(45) NOT NULL, precio float(6,2) NOT NULL, contenido varchar(15) DEFAULT NULL, num_piezas tinyint(3) NOT NULL, idtipo_producto tinyint(2) NOT NULL, FOREIGN KEY (idtipo_producto) REFERENCES tipo_producto (idtipo_producto) ON DELETE NO ACTION ON UPDATE CASCADE ); INSERT INTO producto (idproducto, nombre, precio, contenido, num_piezas, idtipo_producto) VALUES (1, 'Visita', 30.00, '', 1, 4); CREATE TABLE retiro_efectivo ( idretiro int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, monto float(6,2) NOT NULL, fecha date NOT NULL, justificacion varchar(100) NOT NULL ); CREATE TABLE sexo ( idsexo tinyint(1) NOT NULL PRIMARY KEY, sexo varchar(10) NOT NULL ); INSERT INTO sexo (idsexo, sexo) VALUES (1, 'Femenino'), (2, 'Mรกsculino'); CREATE TABLE socio ( idsocio int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre_pila varchar(45) NOT NULL, apellido1 varchar(30) NOT NULL, apellido2 varchar(30) DEFAULT NULL, fecha_nacimiento date NOT NULL, idsexo tinyint(1) NOT NULL, peso float(4, 2) NOT NULL, estatura float(4, 2) NOT NULL, lesion_abdomen tinyint(1) NOT NULL, lesion_brazos tinyint(1) NOT NULL, lesion_espalda tinyint(1) NOT NULL, lesion_hombro tinyint(1) NOT NULL, lesion_pecho tinyint(1) NOT NULL, lesion_piernas tinyint(1) NOT NULL, correo_electronico varchar(50) NOT NULL, ruta_fotografia varchar(100) NOT NULL, fecha_inscripcion date NOT NULL, ultima_asistencia date NOT NULL, dias_entrenando smallint(5) NOT NULL, fecha_fin_membresia date NOT NULL, oculto tinyint(1) NOT NULL DEFAULT '0', idmembresia tinyint(1) NOT NULL, FOREIGN KEY (idmembresia) REFERENCES membresia (idmembresia) ON DELETE NO ACTION ON UPDATE CASCADA FOREIGN KEY (idsexo) REFERENCES sexo (idsexo) ON DELETE NO ACTION ON UPDATE CASCADA ); CREATE TABLE usuario ( idusuario int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre_pila varchar(45) NOT NULL, apellido1 varchar(30) NOT NULL, apellido2 varchar(30) DEFAULT NULL, correo_electronico varchar(50) NOT NULL, telefono varchar(20) NOT NULL, domicilio varchar(50) NOT NULL, clave char(40) NOT NULL, ruta_fotografia varchar(100) NOT NULL, root tinyint(1) NOT NULL DEFAULT '0', habilitado tinyint(1) NOT NULL DEFAULT '1', idgimnasio smallint(2) NOT NULL, FOREIGN KEY (idgimnasio) REFERENCES gimnasio (idgimnasio) ON DELETE NO ACTION ON UPDATE CASCADE ); INSERT INTO usuario (nombre_pila, apellido1, apellido2, correo_electronico, telefono, domicilio, clave, ruta_fotografia, root, habilitado, idgimnasio) VALUES ('Fernando', 'Illan', '', '<EMAIL>', '33-23-35-64-95', '<NAME> #687', 'cef48cb4569d34364e0e86067efa14fbe9b4591e', 'img/Usuarios/IMG_1.jpg', 1, 1, 1); CREATE TABLE venta_membresias ( idventa_membresia int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, fecha date NOT NULL, idmembresia tinyint(2) NOT NULL, precio float(6,2) NOT NULL, idsocio int(11) NOT NULL, idusuario int(11) NOT NULL, FOREIGN KEY (idsocio) REFERENCES socio (idsocio) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (idusuario) REFERENCES usuario (idusuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE venta_productos ( idventa_producto int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, fecha date NOT NULL, num_piezas tinyint(2) NOT NULL, precio float(6,2) NOT NULL, idproducto int(2) DEFAULT NULL, idusuario int(11) DEFAULT NULL, FOREIGN KEY (idproducto) REFERENCES producto (idproducto) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (idusuario) REFERENCES usuario (idusuario) ON DELETE CASCADE ON UPDATE CASCADE ); CREATE TABLE parte_del_cuerpo ( idparte_del_cuerpo tinyint(1) NOT NULL AUTO_INCREMENT PRIMARY KEY, parte_del_cuerpo varchar(10) NOT NULL ); INSERT INTO parte_del_cuerpo (parte_del_cuerpo) VALUES ('Abdomen'), ('Brazo'), ('Espalda'), ('Hombro'), ('Pecho'), ('Pierna'); CREATE TABLE musculo ( idmusculo tinyint(1) NOT NULL AUTO_INCREMENT PRIMARY KEY, musculo varchar(20) NOT NULL, idparte_del_cuerpo tinyint(1) NOT NULL, FOREIGN KEY (idparte_del_cuerpo) REFERENCES parte_del_cuerpo (idparte_del_cuerpo) ON DELETE CASCADE ON UPDATE CASCADE ); INSERT INTO musculo (musculo, idparte_del_cuerpo) VALUES ('Abdomen', 1), ('Antebrazo', 2), ('Bรญcep', 2), ('Bรญcep femoral', 6), ('Cuadricep', 6), ('Espalda', 3), ('Femoral', 6), ('Hombro', 4), ('Glรบteo', 6), ('Pantorrilla', 6), ('Pecho', 5), ('Trรญcep', 2); CREATE TABLE ejercicio ( idejercicio tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre varchar(50) NOT NULL, series varchar(50) NOT NULL, ruta_fotografia varchar(100) NOT NULL, peso_principiante varchar(50) NOT NULL, peso_intermedio varchar(50) NOT NULL, peso_medio varchar(50) NOT NULL, peso_medioavanzado varchar(50) NOT NULL, peso_avanzado varchar(50) NOT NULL, idmusculo tinyint(1) NOT NULL, idsexo tinyint(1) NOT NULL, FOREIGN KEY (idmusculo) REFERENCES musculo (idmusculo) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (idsexo) REFERENCES sexo (idsexo) ON DELETE CASCADE ON UPDATE CASCADE );
<reponame>brydavis/flow<filename>sql/h2.sql<gh_stars>0 insert into Persons(Id,FirstName,LastName,Birthdate,SSN,Street,City,Zip,State,Race,Latino,Gender,Veteran,MaritialStatus,DisabilityStatus,EducationLevel,EmploymentStatus) values ('7572AB5C-D4B7-5A8D-226D-77F9E60AAA04','Alexandra','Estrada','1942-09-20','081-48-4868','135-7684 Arcu Rd.','San Francisco','96787','California','','No','Male','Yes','Divorced','Yes','Bachelorโ€™s degree','Employed'), -- End Row ('DA9581E0-EFE7-57A1-7939-E20864618871','Maisie','Mcclain','1944-03-23','163-20-6712','P.O. Box 972, 853 Vitae, Rd.','Portland','56347','OR','Middle Eastern or North African, Native Hawaiian or Other Pacific Islander, White','No','Female','Yes','Separated','Yes','Associate degree','Military'), -- End Row ('5829E074-E5D9-208B-EE1A-C5B01E3C0B03','Colton','Clayton','2000-06-21','026-72-3774','9141 Ut St.','Montgomery','36490','Alabama','','Yes','Male','No','Divorced','No','Bachelorโ€™s degree','Employed'), -- End Row ('46730DD1-1BDA-ABE4-174E-6011AE7FCCA3','Ann','Barnes','1996-11-14','656-19-3669','264-8139 Egestas Ave','Detroit','24336','Michigan','Asian, Middle Eastern or North African','Yes','Female','Yes','Separated','Yes','No schooling completed','Unable to work'), -- End Row ('D921BED9-4B22-59E8-7893-2115A1E87D02','Regan','Mercado','1966-07-01','647-38-0325','4320 Ornare, Road','Sterling Heights','56448','MI','White, Black or African American, Middle Eastern or North African','Yes','Male','Yes','Common-Law','No','Masterโ€™s degree','Out of work and looking for work'), -- End Row ('991470B7-5374-BA03-88A9-1D6ED5AFAC8E','Dexter','Graves','1967-04-19','299-86-4726','438-5190 Metus. Road','Great Falls','78088','MT','','No','Female','Yes','Married','Yes','Some college credit, no degree','Out of work and looking for work'), -- End Row ('9F351D97-C61B-F0B8-A023-CE5A6BF0DED8','Bree','Roberson','1952-07-16','768-78-4988','6200 Netus Street','Houston','19180','TX','','No','Female','Yes','Separated','Yes','Bachelorโ€™s degree','Out of work and looking for work'), -- End Row ('2210F16E-EFB9-A895-43EE-CBB03E7438F1','Jenna','Herrera','1988-11-23','658-52-8862','Ap #442-5998 Cursus Avenue','Bridgeport','26637','CT','Asian, Middle Eastern or North African, White','No','Female','No','Separated','Yes','No schooling completed','Self-employed'), -- End Row ('A2F1FE46-76C1-1492-4986-98B5011EDBB5','Nelle','Fisher','1983-03-23','288-40-6439','P.O. Box 330, 9221 Turpis Av.','Indianapolis','52436','IN','','Yes','Male','No','Widowed','No','Masterโ€™s degree','Self-employed'), -- End Row ('DBE957D2-59B4-7F16-0197-B47F831CE144','Blake','Dudley','1960-06-29','099-69-9828','Ap #285-2035 Fermentum Rd.','Rockford','74096','IL','','No','Female','Yes','Divorced','No','Masterโ€™s degree','Out of work and looking for work'), -- End Row ('619CDDF4-98D3-53B6-EA1D-93F19767E69A','Solomon','Mcclain','1997-05-01','688-69-7201','P.O. Box 286, 5231 A, Street','Bowling Green','45028','KY','Middle Eastern or North African, White','Yes','Male','No','Widowed','Yes','Nursery school to 8th grade','Unable to work'), -- End Row ('3D762143-4730-98F2-8E6B-05086FBC2F8A','Benjamin','Davis','2014-04-02','213-93-4985','927-8990 Dapibus Avenue','Chesapeake','32006','Virginia','Native Hawaiian or Other Pacific Islander, Black or African American, White','Yes','Female','No','Married','Yes','Trade / technical / vocational training','Unable to work'), -- End Row ('2FCB98D5-A28C-A3FA-8B34-743C06BA9E6F','Rafael','Guerra','1949-11-21','932-07-4584','2825 Turpis Rd.','Tacoma','84324','Washington','Asian, Native Hawaiian or Other Pacific Islander','No','Male','No','Common-Law','Yes','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('67DDE281-3AD8-2A2E-CF38-D162E35ABC72','Brielle','Gill','1980-05-10','403-20-8611','P.O. Box 362, 9709 Tempus Rd.','Savannah','76100','Georgia','','Yes','Female','No','Married','Yes','Bachelorโ€™s degree','A homemaker'), -- End Row ('44B85C32-AF3B-AC1D-3EFE-3F3978C52BDD','Stacey','Sellers','1954-07-13','379-56-5366','7862 Dictum St.','Chattanooga','76469','Tennessee','','No','Male','No','Widowed','Yes','Nursery school to 8th grade','Out of work but not currently looking for work'), -- End Row ('E7096838-C682-D069-078D-F525663FCAD8','Thaddeus','Daniel','1957-04-08','204-33-4248','Ap #826-8808 Netus Rd.','Flint','71106','Michigan','Black or African American, Asian','Yes','Female','No','Domestic Partnership','Yes','No schooling completed','Retired'), -- End Row ('E4240978-65D7-40E3-768C-109B24ACDE02','Channing','Peterson','2006-06-06','657-84-4459','409 Risus. Rd.','Miami','70857','FL','American Indian or Alaska Native, Asian, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Domestic Partnership','No','Doctorate degree','Military'), -- End Row ('2B13A64A-CAD1-2C85-845A-95AFFC36D1AE','Octavia','Cole','1951-01-06','671-73-7471','162-5994 Donec Street','South Bend','11730','IN','Asian, American Indian or Alaska Native','No','Male','Yes','Domestic Partnership','Yes','Professional degree','Military'), -- End Row ('332B6B1D-A099-9097-4899-9BBE1C359881','Anastasia','Strong','2007-09-16','457-01-7299','Ap #709-3608 Ligula St.','Biloxi','71560','Mississippi','','Yes','Female','No','Married','Yes','High school graduate, diploma or the equivalent','Military'), -- End Row ('02CEA624-2107-358B-6E6E-C835D45C160B','Jacob','Wall','1952-12-13','640-55-6112','223-8562 Eget St.','Clarksville','75566','Tennessee','','No','Female','No','Separated','Yes','Professional degree','Out of work and looking for work'), -- End Row ('B0549F13-A16E-656E-5FD9-40BFCA00A099','Cheyenne','Whitney','1959-07-19','325-13-5760','Ap #641-108 Purus, Street','Frankfort','98868','Kentucky','White, Middle Eastern or North African, Black or African American','Yes','Male','Yes','Domestic Partnership','Yes','Trade / technical / vocational training','Self-employed'), -- End Row ('CCF00945-E861-421B-0104-33ADA12C77AF','Arthur','Koch','2000-01-19','016-54-1349','5550 Est Road','Fort Collins','87301','Colorado','Middle Eastern or North African, Asian, Native Hawaiian or Other Pacific Islander','No','Male','Yes','Married','No','Doctorate degree','Unable to work'), -- End Row ('002AC115-ECD5-7B57-7B92-D5DE5124A5F4','Maggy','Watkins','1984-09-14','861-98-7108','P.O. Box 649, 2193 Metus. Road','Houston','97885','Texas','American Indian or Alaska Native','No','Female','Yes','Divorced','No','Bachelorโ€™s degree','Self-employed'), -- End Row ('A4711150-2CB7-6EDE-3F31-358344F60A94','Hunter','Baird','1966-06-08','776-66-2063','Ap #630-6061 Nullam Av.','San Francisco','93600','California','','No','Female','Yes','Single','Yes','Masterโ€™s degree','Self-employed'), -- End Row ('2E1E09B3-CCF9-98AC-32EB-19B321341FF3','Hilary','Sparks','1984-10-03','722-83-7299','433-7114 Dolor Rd.','San Francisco','91534','CA','','Yes','Female','Yes','Common-Law','No','Nursery school to 8th grade','Retired'), -- End Row ('F33DA886-9640-3EA0-622F-3B59C85D0EF4','Harper','Charles','1985-09-20','093-68-8838','9648 Sed Street','Indianapolis','12189','IN','Native Hawaiian or Other Pacific Islander','No','Male','No','Separated','Yes','Doctorate degree','Out of work but not currently looking for work'), -- End Row ('E560AFE4-D48B-34FD-93AF-7892E003E43E','Jayme','Crawford','1974-03-27','419-92-0111','P.O. Box 438, 1436 Malesuada Ave','South Burlington','40736','Vermont','Asian, Native Hawaiian or Other Pacific Islander, Black or African American','Yes','Male','No','Widowed','Yes','Trade / technical / vocational training','A student'), -- End Row ('18DA06CA-FF71-42DA-1397-65E94CD65005','Gay','Huber','1951-10-19','213-78-2927','P.O. Box 917, 8394 Lorem Av.','Boise','52024','ID','','Yes','Male','Yes','Common-Law','Yes','Nursery school to 8th grade','Out of work and looking for work'), -- End Row ('9542AC05-9BA2-EE37-FD55-F750786C70A3','Germane','Burnett','1976-10-22','937-87-1700','P.O. Box 951, 6067 Erat Street','Waterbury','87929','Connecticut','Native Hawaiian or Other Pacific Islander','No','Female','Yes','Separated','Yes','No schooling completed','A homemaker'), -- End Row ('149BA565-44E3-3A2A-E8E5-DA45A9756531','Priscilla','Harris','1983-02-20','598-78-8610','361 Aliquam, Ave','Auburn','97079','ME','Native Hawaiian or Other Pacific Islander, Asian','Yes','Female','Yes','Domestic Partnership','Yes','Bachelorโ€™s degree','Retired'), -- End Row ('0F99DBE6-5945-6BB6-D6D5-A7F90FDCBABE','Chaim','Black','1961-03-17','921-60-7782','P.O. Box 371, 6911 Faucibus. Road','Seattle','77087','WA','','No','Female','Yes','Widowed','Yes','Doctorate degree','Military'), -- End Row ('CD5E6725-2F55-2A43-970F-076C7A7B1E18','Carla','Barber','1969-07-19','769-09-3761','4899 Sed Avenue','Stamford','47054','Connecticut','Black or African American','No','Female','Yes','Married','Yes','High school graduate, diploma or the equivalent','Military'), -- End Row ('D6620E8B-027E-79C1-B3CF-A76FFB963D0D','Tasha','Graves','1995-01-06','019-29-4532','P.O. Box 838, 461 Egestas Street','Dover','45994','Delaware','','Yes','Female','No','Domestic Partnership','No','Masterโ€™s degree','Military'), -- End Row ('F5B4CD39-282B-7C71-A325-79CB6CE48B44','Renee','Reese','2013-06-29','306-20-9021','168-1460 Mattis. Road','Bellevue','73134','WA','Asian','No','Female','Yes','Divorced','No','Doctorate degree','Unable to work'), -- End Row ('1DCF0A4A-C177-F3B4-2F80-43832397CEE6','Keely','Gallagher','1955-11-02','990-90-8618','976-8918 Fermentum St.','Tucson','86241','AZ','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Female','No','Separated','Yes','Professional degree','Military'), -- End Row ('58D7FD63-CB38-4ED5-D770-FAA992FFE4FA','Arden','Mills','2013-03-29','510-38-5363','P.O. Box 903, 3631 Vitae Road','Jefferson City','85399','Missouri','','No','Female','Yes','Separated','No','Trade / technical / vocational training','A homemaker'), -- End Row ('82681676-62F6-7723-8CC1-661F1BB48B70','Wilma','Daugherty','1984-09-04','594-62-2658','Ap #912-4747 Vel Avenue','South Bend','30009','Indiana','','Yes','Male','Yes','Common-Law','Yes','Some college credit, no degree','Employed'), -- End Row ('ACF65885-869A-0A80-F0B0-A3E370A33DAF','Dane','Burns','2009-04-18','458-60-5535','402 Ipsum Street','Fort Worth','50157','Texas','','Yes','Male','No','Single','No','Associate degree','Employed'), -- End Row ('FE9AD5E6-F8E8-7593-DF90-7EEF9C54EE1C','Armando','Carrillo','1968-08-06','366-50-2978','Ap #188-2988 Nullam Street','Lafayette','81966','Louisiana','','No','Male','No','Domestic Partnership','No','Some college credit, no degree','Out of work but not currently looking for work'), -- End Row ('4F10170F-3979-2C71-BC68-0A705F047D60','Alexandra','Rutledge','1955-08-16','429-58-5427','Ap #531-3679 Cursus. Rd.','Sacramento','94043','CA','','Yes','Female','No','Single','No','Bachelorโ€™s degree','A homemaker'), -- End Row ('E493F326-FEF1-CEBC-4921-5C5E63B82741','Uriah','Hebert','1951-04-03','343-17-7520','P.O. Box 627, 4210 Orci. Street','Lewiston','99556','ME','Asian','No','Male','No','Married','Yes','Bachelorโ€™s degree','Retired'), -- End Row ('2B14E57E-6B67-F2D8-37D1-256A854DA709','Prescott','Nunez','1999-04-16','540-53-1741','P.O. Box 635, 1675 Dignissim Road','Wilmington','29279','DE','Middle Eastern or North African, American Indian or Alaska Native','Yes','Male','Yes','Common-Law','No','Professional degree','Retired'), -- End Row ('894DF1CE-2C73-4691-4CCF-0400576DC07A','Yen','Curtis','1969-07-15','194-59-6854','2802 Auctor St.','Bellevue','55698','Nebraska','Black or African American, Asian, White','No','Female','No','Married','No','Masterโ€™s degree','A student'), -- End Row ('66B0D2EF-0515-1D71-4314-ED55CE6FB564','Quin','Roach','1956-08-30','350-24-5039','130-2122 Sit Ave','Olympia','29031','Washington','American Indian or Alaska Native, Black or African American, White','No','Male','Yes','Common-Law','No','Masterโ€™s degree','Employed'), -- End Row ('0F2E2F8A-0625-4F45-0173-538B8544B67A','Isaac','Marks','1957-06-12','871-64-2791','P.O. Box 700, 8008 Sed Street','Knoxville','88957','TN','','Yes','Female','Yes','Widowed','No','Associate degree','Out of work and looking for work'), -- End Row ('983D3A91-CB0C-143C-DEF5-2D1FD0B749B4','Glenna','Marshall','1957-07-02','824-76-0235','P.O. Box 151, 7324 Pede. Avenue','Anchorage','99850','Alaska','Middle Eastern or North African, Black or African American, White','No','Male','Yes','Single','No','Nursery school to 8th grade','Self-employed'), -- End Row ('45C7750B-D8C5-CF3A-E07F-CA23C7DF059B','Isabella','Fleming','1996-01-25','680-93-5502','4647 Commodo St.','Kaneohe','77635','HI','Asian, Black or African American, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Common-Law','Yes','Nursery school to 8th grade','Out of work but not currently looking for work'), -- End Row ('519DF775-3C40-8B94-DFFC-8591B548D757','Eleanor','Price','1948-08-28','100-33-9066','839-5397 Mauris Road','Salt Lake City','55080','Utah','Black or African American','No','Male','Yes','Widowed','No','Nursery school to 8th grade','A student'), -- End Row ('E639E706-946C-DEBF-6315-ED699FF3E258','Fredericka','Daugherty','2001-07-14','705-23-7167','Ap #327-6802 Erat, Av.','Chandler','86612','AZ','Black or African American','No','Female','No','Single','Yes','Bachelorโ€™s degree','Out of work and looking for work'), -- End Row ('661AC28A-E934-3FA4-0670-97972F0113F4','Yolanda','Mcclain','1978-04-26','792-64-6570','2049 Phasellus St.','Kansas City','69011','KS','American Indian or Alaska Native','No','Male','Yes','Widowed','Yes','Associate degree','Out of work but not currently looking for work'), -- End Row ('CC9A2906-8F48-48B0-2A4D-12BAB6DA9CAA','Chaim','Hurley','1990-01-09','452-35-2224','Ap #723-3674 Ornare. Rd.','Nashville','58220','TN','Middle Eastern or North African','Yes','Female','Yes','Common-Law','Yes','Doctorate degree','Self-employed'), -- End Row ('01F5ED4F-F34B-528D-12C9-8EE5AE12AC34','Zane','Carlson','2002-07-12','926-29-2358','Ap #406-8091 Malesuada St.','Helena','15913','MT','American Indian or Alaska Native, Asian','No','Male','Yes','Single','No','Some college credit, no degree','A homemaker'), -- End Row ('5F297F82-4386-1352-3A38-25BACC88BE2E','Orla','Bush','1951-05-20','131-80-9554','6373 Tellus. Rd.','Gulfport','44890','Mississippi','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Male','No','Separated','Yes','Some high school, no diploma','Out of work but not currently looking for work'), -- End Row ('8B0DA991-E04B-C1DA-0FDE-2513F64CE44D','Oren','Avery','1956-12-09','870-98-8567','P.O. Box 630, 8597 Mollis. Rd.','Pittsburgh','29359','PA','','No','Female','No','Widowed','Yes','Trade / technical / vocational training','A student'), -- End Row ('2A7AD90F-940D-6FEA-2D22-0E2FA8E48DFE','Wynne','Curtis','1977-08-12','198-72-3052','594 Dis Avenue','Kansas City','85992','MO','White, Asian, Middle Eastern or North African','No','Female','No','Common-Law','Yes','Some high school, no diploma','A student'), -- End Row ('50BD9E46-6521-8C33-239E-0EB68F7F4751','Yeo','Sherman','1941-03-24','787-28-5968','Ap #236-7472 Malesuada. Av.','New Haven','24371','CT','White','Yes','Female','Yes','Domestic Partnership','No','Trade / technical / vocational training','Unable to work'), -- End Row ('ADA960F0-A41E-E5C2-3DB7-CFBB3BCAEF87','Benjamin','Valentine','1968-04-21','973-53-9484','Ap #532-9933 Cras Road','Bellevue','75867','NE','Black or African American, Middle Eastern or North African','Yes','Male','Yes','Single','Yes','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('80E98DB6-6968-7A27-6F8D-B1969C7DF9C1','Allegra','Jennings','1974-11-02','554-55-3906','771-8588 Erat, Ave','Seattle','66898','WA','White','Yes','Male','Yes','Divorced','No','Associate degree','Military'), -- End Row ('73522A06-882F-C90E-FD9E-B123BBF5CD57','Idona','Mcintyre','2008-12-17','704-82-7354','P.O. Box 285, 1459 Eu St.','Toledo','54027','OH','','Yes','Male','No','Domestic Partnership','Yes','Masterโ€™s degree','A homemaker'), -- End Row ('36A6565D-D6C1-9954-F017-BA894D0F4F2C','Vernon','Lloyd','1965-08-25','274-38-4635','P.O. Box 560, 4117 Varius Rd.','Sioux City','80395','Iowa','Asian, Native Hawaiian or Other Pacific Islander','No','Female','Yes','Widowed','Yes','Professional degree','A homemaker'), -- End Row ('546E885A-F4FB-9A81-DA38-24DBE3FAB4BC','Beverly','Cardenas','1991-01-03','173-06-5876','5823 Tellus. St.','Columbus','23481','Ohio','Native Hawaiian or Other Pacific Islander','No','Female','Yes','Married','No','Bachelorโ€™s degree','Military'), -- End Row ('93405D79-77BC-4262-73F1-FA0F8CAF3FBC','Shad','Huffman','1944-03-24','034-72-9304','P.O. Box 475, 7504 Auctor St.','Colorado Springs','24097','CO','American Indian or Alaska Native, Black or African American, Middle Eastern or North African','Yes','Male','Yes','Married','Yes','Nursery school to 8th grade','Employed'), -- End Row ('F754CEB2-C70D-C3A4-3B40-5C4DD5257978','Stacy','Reeves','1998-05-18','017-09-0810','Ap #669-8110 Sed, Ave','Clarksville','93724','TN','White, Asian','No','Female','No','Separated','No','Some college credit, no degree','Out of work and looking for work'), -- End Row ('6E55B889-8ED0-6674-B901-4423A12F498B','Nyssa','Hess','1963-09-23','566-33-8172','228-7552 Proin Rd.','Sandy','86141','UT','Middle Eastern or North African, Asian, White','Yes','Female','Yes','Divorced','Yes','Trade / technical / vocational training','Retired'), -- End Row ('24D9E1BC-49C5-33BC-1282-63AD2B93C3A9','Nichole','Bell','1995-12-01','235-57-2414','P.O. Box 163, 7335 Dictum. Rd.','Frederick','23802','Maryland','','No','Male','No','Married','Yes','Professional degree','Unable to work'), -- End Row ('027252EA-5B0B-BA89-BD9D-B6BC6E02B8A8','Cherokee','Middleton','1978-10-07','692-33-6286','Ap #412-7704 Vestibulum Street','Virginia Beach','36374','Virginia','American Indian or Alaska Native','No','Female','No','Separated','No','Professional degree','Out of work but not currently looking for work'), -- End Row ('04DE0DE9-7CFD-7945-0F29-5A1CA74A34B0','Jasper','Best','1951-03-24','551-79-2607','P.O. Box 508, 8656 Convallis Av.','Bear','98323','DE','Black or African American, Asian','Yes','Female','No','Divorced','No','Doctorate degree','A homemaker'), -- End Row ('0AECC693-990B-9F10-4444-FB10E698966B','Zephania','Morton','1950-11-14','582-28-0941','P.O. Box 849, 1252 Phasellus Rd.','Fresno','95342','California','White, Middle Eastern or North African, American Indian or Alaska Native','Yes','Female','No','Widowed','No','Trade / technical / vocational training','A homemaker'), -- End Row ('4197A24D-01C0-6289-3710-837E2CAC50DC','Carl','Holt','1977-08-15','182-81-7167','P.O. Box 841, 5055 Ut Street','Provo','50630','UT','American Indian or Alaska Native','Yes','Female','Yes','Widowed','No','Some high school, no diploma','Employed'), -- End Row ('EE64E352-CB35-F445-C209-E559532999F9','Jared','Winters','1965-08-09','238-89-9209','Ap #993-9469 Augue St.','Vancouver','90859','WA','Asian','Yes','Male','Yes','Married','Yes','Some high school, no diploma','A homemaker'), -- End Row ('CDA6149E-8C84-8C8E-C301-3B870A0F5335','Yardley','Torres','1953-10-07','790-83-7563','P.O. Box 942, 4241 Et, Road','Cheyenne','88679','WY','Middle Eastern or North African','Yes','Female','Yes','Divorced','Yes','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('3F071B11-2823-0F88-3B9A-A19130277DA4','Marvin','Pace','1955-06-03','010-34-0747','P.O. Box 600, 150 Donec Av.','Tampa','58941','FL','','Yes','Male','Yes','Widowed','Yes','Masterโ€™s degree','A student'), -- End Row ('D91A6742-6BC1-24AD-7D01-48FB8CD1BBE2','Denton','Bridges','1960-05-27','701-61-1068','949-3586 Aliquam Avenue','Detroit','95478','Michigan','Asian, Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Female','No','Domestic Partnership','Yes','Some college credit, no degree','A homemaker'), -- End Row ('EF1F6F8A-6B29-95A5-A760-4BDEA0BC2B05','Connor','Henson','1946-01-10','591-17-6372','Ap #975-2982 Suscipit Street','Grand Island','18675','Nebraska','','No','Male','Yes','Single','No','Doctorate degree','Retired'), -- End Row ('8290481A-5C0B-32C7-54FA-8F3266DCED02','Amaya','Olson','1944-04-13','677-99-6284','P.O. Box 694, 8411 Eget St.','Reading','25978','PA','Middle Eastern or North African, American Indian or Alaska Native, Black or African American','Yes','Female','No','Divorced','Yes','No schooling completed','Out of work but not currently looking for work'), -- End Row ('0B6931B3-CA42-BCB3-6980-E1C702269F25','Regina','Malone','1996-07-18','602-98-0542','P.O. Box 437, 3547 Dis Ave','Columbus','57123','Georgia','','Yes','Male','No','Married','Yes','Nursery school to 8th grade','A student'), -- End Row ('3548C65A-D46C-2F53-7841-B90AA2F286C5','Yen','Pennington','1978-02-20','569-91-6994','Ap #541-1771 Augue Rd.','Bridgeport','82045','CT','Middle Eastern or North African','Yes','Female','No','Separated','No','No schooling completed','Self-employed'), -- End Row ('FED8A2A5-D9D7-8A44-27BC-C9899E1D6D44','Lucas','Cunningham','2009-10-19','543-87-5185','8209 Faucibus Ave','Kansas City','12819','Kansas','White, Asian','No','Male','No','Married','Yes','Masterโ€™s degree','Employed'), -- End Row ('EC6ACBB0-C890-12B2-8D6E-C69F8A6C5CD0','Madaline','Bell','1994-08-15','288-47-3769','299-8290 Dictum Av.','College','99934','Alaska','Middle Eastern or North African, Asian','Yes','Male','Yes','Single','Yes','Professional degree','Retired'), -- End Row ('E29AF2DC-4AF4-38B5-F904-D3710EC031E9','Simon','Gallegos','1981-01-05','934-39-8413','Ap #869-5061 Cras Rd.','Bellevue','47818','NE','White, Asian, Black or African American','Yes','Female','Yes','Married','Yes','Nursery school to 8th grade','Retired'), -- End Row ('AF5F980C-24B9-421F-D772-D6FBF1B2EA5C','Kadeem','Buckley','1949-11-16','304-04-5654','P.O. Box 132, 353 Feugiat St.','Bowling Green','19456','KY','Black or African American, American Indian or Alaska Native','Yes','Male','Yes','Married','Yes','Associate degree','A student'), -- End Row ('751AD043-D20A-34A0-A73D-4EBD0A32AB77','Solomon','Phillips','1958-02-28','112-01-2946','P.O. Box 676, 8371 Pellentesque Avenue','Bridgeport','25581','CT','Native Hawaiian or Other Pacific Islander','Yes','Male','No','Domestic Partnership','No','No schooling completed','Military'), -- End Row ('F416A983-D502-6E03-E1CD-79673FA93AFE','Lenore','Wagner','2002-12-25','868-71-8361','8516 At Road','Jefferson City','49638','MO','','Yes','Male','Yes','Separated','Yes','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('6CE9A146-DAE0-0B0C-0634-F9BD5D0266D6','Lara','Cote','1966-04-28','886-92-9456','P.O. Box 786, 7696 Vitae Rd.','Chattanooga','56304','TN','American Indian or Alaska Native, Middle Eastern or North African, Black or African American','Yes','Female','No','Married','Yes','Some college credit, no degree','Self-employed'), -- End Row ('FBC3667D-26A9-189A-4489-B2AE0D91E04E','Zenaida','Buckner','1944-07-23','477-02-5272','Ap #526-6192 Mollis. Rd.','Juneau','99942','AK','Black or African American, Asian, Middle Eastern or North African','No','Female','No','Common-Law','Yes','High school graduate, diploma or the equivalent','Retired'), -- End Row ('6792E2B4-44D6-3A7E-E094-51568AAE6D5A','Adria','Doyle','1973-07-31','444-65-6996','7164 Tortor. Av.','Lafayette','87467','LA','Black or African American','No','Female','No','Separated','No','Some college credit, no degree','Military'), -- End Row ('420258C8-6C87-ED88-1FC4-E27EFD306B21','September','Sims','1957-01-10','832-59-7193','8495 Neque Rd.','North Las Vegas','34077','Nevada','','No','Female','Yes','Domestic Partnership','Yes','Doctorate degree','Self-employed'), -- End Row ('A789B634-401D-6F4B-8FD0-765C017B5B40','Barry','Ingram','2014-08-03','324-33-1099','Ap #377-8766 Ante Rd.','<NAME>','42892','Minnesota','Black or African American, Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Male','No','Single','No','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('BEC05644-3EC7-E0E3-A3FC-B426558221A7','Dahlia','Bridges','1994-01-23','159-13-5297','P.O. Box 728, 7596 Nec Street','Fort Wayne','43570','Indiana','White, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Single','Yes','Masterโ€™s degree','A student'), -- End Row ('ECE99B28-B614-470D-6EB3-6E2F0A5FCB9F','Hope','Kirkland','1986-05-22','172-33-0423','3181 Duis St.','New Orleans','98786','Louisiana','Asian, Native Hawaiian or Other Pacific Islander, Black or African American','No','Female','Yes','Single','Yes','Masterโ€™s degree','Unable to work'), -- End Row ('3DDA1DA2-E7A2-304E-0454-CCF2FBD0D1B2','Reagan','Fletcher','1981-08-26','210-46-2876','612-412 Eu Av.','Montgomery','36709','Alabama','White','No','Female','Yes','Separated','No','Nursery school to 8th grade','Self-employed'), -- End Row ('AC602051-29D0-4CAC-DA94-097B8B87E447','Haley','Todd','1944-03-17','519-50-0949','840-4009 Libero Avenue','Juneau','99589','AK','','No','Female','No','Separated','Yes','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('CAB3A597-8F98-7992-FAA4-8DE3DCE337A2','Gannon','Smith','1948-07-02','987-13-2225','P.O. Box 550, 6039 Rutrum St.','Grand Island','19564','Nebraska','','Yes','Female','No','Common-Law','Yes','Some high school, no diploma','Employed'), -- End Row ('C91CA567-78BB-652E-81E1-569C65430DDB','Gwendolyn','Barber','1955-06-15','047-83-0126','Ap #579-3928 Quis Av.','Fayetteville','72092','AR','','Yes','Male','Yes','Married','No','Nursery school to 8th grade','Employed'), -- End Row ('17DBF5D1-7A04-B571-4F89-6058B8A290EC','William','Vasquez','2009-10-28','502-48-0843','P.O. Box 306, 9508 Adipiscing St.','Biloxi','53885','MS','Middle Eastern or North African','Yes','Male','Yes','Common-Law','No','Professional degree','Military'), -- End Row ('6DDC33FA-EB42-D685-67B3-CFAE2269D531','Althea','Grant','1981-06-07','011-63-8752','Ap #843-6595 Lacus Av.','Erie','16738','Pennsylvania','','Yes','Male','Yes','Divorced','No','Some college credit, no degree','A student'), -- End Row ('1ACF3CB3-D183-76C6-0FDC-F7797D02F2DD','Rogan','Bartlett','1966-07-02','228-68-8992','Ap #693-8316 Inceptos Rd.','Baton Rouge','25517','LA','Native Hawaiian or Other Pacific Islander, White','Yes','Female','Yes','Widowed','Yes','Associate degree','Out of work and looking for work'), -- End Row ('0C150584-96BC-14D1-F3ED-D8D192B9B740','Jordan','Cunningham','1954-02-05','789-83-6451','Ap #552-3538 Quis Rd.','Gresham','84043','Oregon','Middle Eastern or North African, American Indian or Alaska Native, Black or African American','No','Male','Yes','Domestic Partnership','Yes','Nursery school to 8th grade','A student'), -- End Row ('B4ACC865-719E-EFB2-0070-FF86717A8F81','Lael','England','1956-06-06','312-88-7105','P.O. Box 269, 9120 Tincidunt Av.','Billings','56704','MT','','No','Female','No','Common-Law','No','Nursery school to 8th grade','Out of work but not currently looking for work'), -- End Row ('8C42CC57-AEC8-7D4E-C0E5-D74A615941E1','Arsenio','Hewitt','1958-07-03','934-23-0915','459-3344 Lacus. Rd.','Norman','94114','Oklahoma','','Yes','Female','No','Married','Yes','Masterโ€™s degree','Self-employed'), -- End Row ('A4B2DE91-AD15-4B1C-696E-345999A1C776','Nigel','Duran','1948-06-26','644-77-4249','P.O. Box 406, 1958 Eu Ave','Wyoming','56871','Wyoming','Black or African American, American Indian or Alaska Native','No','Male','No','Widowed','Yes','Bachelorโ€™s degree','Employed'), -- End Row ('A58E8979-6495-4DD3-F827-6547EFE09EA6','Brady','Elliott','1953-09-14','046-74-6897','Ap #948-5822 Cras Avenue','Bowling Green','35593','KY','American Indian or Alaska Native','Yes','Male','No','Domestic Partnership','Yes','Bachelorโ€™s degree','Employed'), -- End Row ('6CF5A24C-4BFB-0075-31E8-526E33953AF9','Marshall','Key','1951-10-01','806-09-6847','280-2887 Adipiscing Rd.','Rockford','10767','Illinois','Native Hawaiian or Other Pacific Islander','No','Female','Yes','Common-Law','Yes','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('5688B923-9D68-8B79-4623-F8C52F2FBF2B','Raven','Stokes','1987-06-04','521-91-0787','965-9737 Quisque Rd.','Knoxville','93363','TN','American Indian or Alaska Native, Middle Eastern or North African, Black or African American','Yes','Female','No','Common-Law','No','Professional degree','Employed'), -- End Row ('AD7872A1-F285-40FC-E118-3BCBC0805354','Samson','Hurst','2013-06-07','779-87-6627','173-9292 Etiam Rd.','Hattiesburg','41636','Mississippi','Asian, American Indian or Alaska Native','No','Male','No','Separated','Yes','High school graduate, diploma or the equivalent','Unable to work'), -- End Row ('8B4479E7-F21A-C44F-8596-853E837535C7','Kasimir','Thomas','1945-11-11','390-16-4636','Ap #122-597 Adipiscing Ave','Birmingham','35598','AL','Middle Eastern or North African, American Indian or Alaska Native','No','Female','No','Divorced','No','Masterโ€™s degree','Unable to work'), -- End Row ('760DD365-B759-D6C2-76FC-25CD6584B833','Hollee','Lucas','1949-12-12','234-13-5226','9474 Facilisis Avenue','Atlanta','48648','GA','','No','Male','No','Domestic Partnership','Yes','Doctorate degree','Out of work and looking for work'), -- End Row ('B366716E-9C23-0A4F-4A4C-EDC4CD8A8073','Kamal','Humphrey','1968-07-08','050-16-8176','478 Consectetuer Rd.','Bangor','85483','ME','Native Hawaiian or Other Pacific Islander, Black or African American, White','No','Male','No','Common-Law','Yes','High school graduate, diploma or the equivalent','Retired'), -- End Row ('CDA35DEA-8C55-F253-11B9-65FD10DA7515','Bruce','Avila','1942-08-15','214-65-2570','8168 Sapien, Rd.','Fairbanks','99506','AK','White, Asian','No','Female','No','Widowed','Yes','Some high school, no diploma','Unable to work'), -- End Row ('68853D3D-28FF-5CCA-1E86-B3230327959D','Shelly','Wilkins','1981-02-16','256-25-6930','Ap #212-8326 Urna. St.','Gary','26768','Indiana','Middle Eastern or North African, American Indian or Alaska Native','No','Male','Yes','Separated','Yes','Associate degree','Military'), -- End Row ('F3F220B6-E868-0EED-1AA7-DA965D5CBFB9','Norman','Whitehead','2014-05-09','607-86-5640','Ap #784-9593 Lobortis Avenue','Erie','18833','Pennsylvania','Black or African American','Yes','Male','Yes','Widowed','No','Associate degree','Out of work but not currently looking for work'), -- End Row ('F6C45442-9160-9F97-90E4-374F6368AB67','Dacey','Mullen','2004-02-13','841-49-4256','380-2769 Semper St.','Nampa','46430','Idaho','','Yes','Male','Yes','Single','No','Some high school, no diploma','Military'), -- End Row ('24F54554-430F-0B85-CC83-A7CDAA0A8E57','Ori','Jones','1948-03-15','472-99-7119','219-3042 Purus, St.','Kailua','22600','Hawaii','Black or African American, American Indian or Alaska Native','Yes','Female','No','Married','Yes','Professional degree','Self-employed'), -- End Row ('684D7F2A-6474-721C-6D46-95172BE0D8F2','Charlotte','Baldwin','1975-12-07','371-29-1859','Ap #984-6933 Dignissim Avenue','South Burlington','19167','Vermont','','Yes','Male','No','Domestic Partnership','Yes','Masterโ€™s degree','Self-employed'), -- End Row ('A4EDD013-7EDC-3E34-F28A-339CD5065E8B','Jeanette','Moreno','1946-11-23','295-77-3629','Ap #608-7969 Laoreet Rd.','Cleveland','44082','OH','Black or African American, American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Domestic Partnership','No','Nursery school to 8th grade','Unable to work'), -- End Row ('CEF80526-BA73-0A9E-0DE5-89F6209F9973','Margaret','Hanson','1959-04-26','592-80-8704','P.O. Box 637, 7929 Ac, St.','Gulfport','35362','MS','','Yes','Female','Yes','Divorced','No','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('E5D712CE-C578-89D6-16BA-DC016ECBAB99','Rae','Morrow','1971-03-05','282-43-9139','3867 Nunc Rd.','Worcester','96664','Massachusetts','American Indian or Alaska Native','No','Female','Yes','Widowed','Yes','Trade / technical / vocational training','Out of work and looking for work'), -- End Row ('12A25066-160D-CE15-F806-CD6BEE43D1B3','Allen','Waters','1958-05-09','751-09-5775','P.O. Box 254, 4674 Nullam St.','Lawton','62552','OK','Black or African American','No','Female','No','Separated','Yes','No schooling completed','Employed'), -- End Row ('8A6006BD-E5B1-81B0-35E0-43597B88E71F','Mufutau','Holland','1960-01-22','786-84-7018','P.O. Box 329, 5570 Lorem, Rd.','Colorado Springs','80128','CO','Asian, White','No','Male','No','Single','Yes','Professional degree','Retired'), -- End Row ('2C54FD29-67C4-B2E6-4582-BE72547283FF','Debra','Sampson','2012-11-28','617-37-7363','805-5699 Eros Rd.','Jefferson City','46599','MO','American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander, Black or African American','Yes','Male','Yes','Widowed','No','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('400EE367-D53D-373D-FEBF-85E5AEFA494B','Kaseem','Barber','1975-07-10','602-43-8515','753-3639 In Avenue','Las Vegas','40299','Nevada','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','No','Male','No','Common-Law','Yes','Some high school, no diploma','Out of work but not currently looking for work'), -- End Row ('76E56ECF-619C-7AF3-05ED-5CFA57EC65DA','Savannah','Sexton','1984-10-14','076-22-5719','Ap #836-7399 Nullam Ave','Ketchikan','99770','AK','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African, Asian','No','Male','Yes','Separated','No','Bachelorโ€™s degree','A homemaker'), -- End Row ('78E3555A-B10D-0B9C-273E-6EE505D6F018','Curran','Buck','1973-01-23','827-48-9080','Ap #853-7234 Quis, Avenue','Kailua','41841','HI','White, Middle Eastern or North African, Native Hawaiian or Other Pacific Islander','No','Male','Yes','Domestic Partnership','Yes','Associate degree','Self-employed'), -- End Row ('02BC889C-4B2F-99F7-8108-6699D9B496C5','Jack','Irwin','1961-03-25','408-48-8403','7957 Maecenas Av.','Rock Springs','43936','Wyoming','American Indian or Alaska Native, Black or African American, Asian','Yes','Male','Yes','Common-Law','Yes','Associate degree','Employed'), -- End Row ('C7E6BB0B-941D-E2F9-2EF0-FAB28EC80328','Melinda','Lloyd','1944-06-08','236-08-5544','P.O. Box 356, 8455 Facilisis Ave','Chesapeake','24922','Virginia','','Yes','Male','No','Domestic Partnership','Yes','Nursery school to 8th grade','Out of work and looking for work'), -- End Row ('106A174C-382C-0AC9-53A1-72B4FA59B544','Shelly','Logan','1965-10-22','522-98-2722','5578 Rhoncus. Road','Butte','79419','Montana','Black or African American','Yes','Male','Yes','Separated','Yes','Some college credit, no degree','Unable to work'), -- End Row ('7DCDCD5D-7CF9-3798-327F-93B50DB1AE0B','Uriel','Mason','1951-03-12','541-91-1071','904-2304 Ipsum Av.','Green Bay','62550','WI','Asian, Middle Eastern or North African, American Indian or Alaska Native','Yes','Female','Yes','Common-Law','Yes','Professional degree','Military'), -- End Row ('CCA126B9-6803-A65D-44B5-4E905F94E17E','Samantha','Pierce','2011-03-06','307-19-1894','4685 Libero. Rd.','Portland','86235','Oregon','','Yes','Female','No','Widowed','Yes','Some high school, no diploma','Out of work and looking for work'), -- End Row ('CA8C4329-026A-45C8-9848-43133177F8D8','Gillian','Emerson','1994-12-03','417-69-6817','P.O. Box 166, 9098 Placerat, St.','Racine','23207','WI','American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander, Black or African American','No','Female','Yes','Separated','No','Some college credit, no degree','Self-employed'), -- End Row ('F87EC66C-BA96-3057-0F10-36FEC47C89D9','Scarlet','Hahn','1957-10-03','366-86-5843','Ap #825-7476 Turpis St.','Fort Collins','13331','Colorado','American Indian or Alaska Native, Asian','No','Female','Yes','Single','Yes','High school graduate, diploma or the equivalent','Military'), -- End Row ('AB13CB0F-5617-0AD4-A7CE-A7EF047FDF03','Olga','Kemp','1950-03-08','612-78-2343','P.O. Box 466, 5778 Tempor Rd.','Mesa','85906','Arizona','Black or African American','No','Male','No','Divorced','No','High school graduate, diploma or the equivalent','Retired'), -- End Row ('DCED5B67-EE35-080D-E400-ECB6B36A2416','Celeste','Mcpherson','1965-12-19','619-06-7453','706-5860 Et Rd.','Rochester','46358','MN','','No','Male','Yes','Single','Yes','Associate degree','Unable to work'), -- End Row ('1F47F3BD-D884-3B30-112D-F033BE063535','Harrison','Welch','1971-08-05','350-34-5604','Ap #980-3877 Ut Av.','Richmond','91112','VA','American Indian or Alaska Native, Middle Eastern or North African','Yes','Male','No','Married','No','Trade / technical / vocational training','A student'), -- End Row ('1E81881A-C24C-2A5E-D264-849999A83C9E','Jillian','Schwartz','1996-02-07','663-47-7426','486-3049 Nonummy Road','Juneau','99782','Alaska','','No','Male','Yes','Domestic Partnership','No','No schooling completed','Unable to work'), -- End Row ('487B6988-F3FD-3FED-DDEA-5C5F6C27AE75','Ashton','Hines','1967-11-29','412-49-0426','9276 Dignissim Avenue','Kansas City','47011','KS','Asian, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Common-Law','Yes','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('6B961EE6-C3CD-A713-B20A-053FED3DB145','Judah','Velazquez','1969-02-23','923-04-1049','Ap #186-4466 Tellus Rd.','San Francisco','90889','CA','White, Black or African American','No','Female','No','Widowed','Yes','High school graduate, diploma or the equivalent','A student'), -- End Row ('BF12D797-045E-3B89-C846-9C8C85BD8A99','Zoe','Park','2012-10-10','712-53-3731','Ap #375-1841 Cras Road','Naperville','39960','Illinois','','Yes','Male','Yes','Married','Yes','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('976658D1-AE30-B740-55E0-734BCF8A42C2','Hayden','Gilbert','1956-04-14','656-48-4799','8457 Dolor St.','Dallas','14140','TX','White','No','Male','Yes','Single','No','High school graduate, diploma or the equivalent','Military'), -- End Row ('50697B12-FDDF-5837-6C9B-4123C383A2BE','Noelani','Holman','1997-03-15','728-74-6618','721-540 Phasellus Street','Bozeman','95095','Montana','Black or African American, Asian','No','Male','Yes','Domestic Partnership','Yes','No schooling completed','Out of work and looking for work'), -- End Row ('AE9AD566-E59A-FF12-20D4-27B6ACA47ACA','Eden','Lambert','1982-11-29','674-80-0358','P.O. Box 744, 6252 Luctus Avenue','Springdale','71609','AR','Middle Eastern or North African, Black or African American','Yes','Female','No','Separated','Yes','Some high school, no diploma','Out of work but not currently looking for work'), -- End Row ('D2EF388B-72E2-871C-90F0-8135DA3F9B97','Salvador','Mccormick','1961-04-02','763-98-4749','Ap #577-8462 Fusce Street','Duluth','60127','Minnesota','American Indian or Alaska Native','Yes','Female','No','Domestic Partnership','No','Trade / technical / vocational training','A homemaker'), -- End Row ('356DA0F9-40B5-80FA-6AD2-6AED87C193FB','Ronan','Kirby','1956-12-25','365-84-6552','3590 Amet Av.','Newport News','71520','Virginia','White','No','Male','No','Single','Yes','Some high school, no diploma','Employed'), -- End Row ('28CCBBA7-9628-6F3B-2CD2-C83A1CBC0FF7','April','Fernandez','1966-05-26','584-88-4662','P.O. Box 914, 5898 Quisque Ave','Baton Rouge','58996','LA','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Male','Yes','Common-Law','Yes','Professional degree','Retired'), -- End Row ('59F43ACB-3D77-091C-56B0-0763384A416A','Zachary','Hines','1986-05-21','196-02-5210','1294 Suspendisse Street','South Burlington','59102','Vermont','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native, Black or African American','Yes','Male','No','Separated','No','Professional degree','Employed'), -- End Row ('3395AA82-A7F1-3113-E5F4-C29C25A94304','Drew','Giles','2011-05-31','523-21-7360','Ap #891-6836 Quisque St.','Georgia','52646','Georgia','','No','Female','No','Married','Yes','High school graduate, diploma or the equivalent','Unable to work'), -- End Row ('08FB0A20-E536-37C6-FB8E-E3BC3D927CD7','Beverly','Mendez','1953-04-08','196-22-5344','544-1094 Cursus, Road','Cincinnati','63423','Ohio','Black or African American, Middle Eastern or North African','Yes','Male','No','Married','No','No schooling completed','Out of work and looking for work'), -- End Row ('F32F396B-E358-D154-0863-F4EC784C7EB4','Brynn','Nunez','1994-08-18','690-11-9538','139-3108 Enim Street','Toledo','68783','Ohio','','No','Female','No','Domestic Partnership','No','Associate degree','A student'), -- End Row ('5A9C94B2-1CD2-9306-20C6-11961D75C89F','Alma','Ford','1989-12-31','580-20-5063','4239 Magnis Rd.','Fort Collins','92499','CO','','No','Female','No','Married','No','Some high school, no diploma','Self-employed'), -- End Row ('409400FF-D292-8DF7-5D1F-D5685E1D7F21','Callie','Mayer','1991-03-05','659-60-4595','221 Fusce Avenue','Stamford','31364','CT','American Indian or Alaska Native, White','No','Female','Yes','Widowed','No','No schooling completed','Military'), -- End Row ('FCE9B37C-33FF-E025-3284-EF871DCDA526','Ingrid','Warner','1942-04-27','978-86-3661','176-6354 Eu Rd.','Chesapeake','65531','VA','American Indian or Alaska Native, White','Yes','Male','No','Separated','Yes','Some high school, no diploma','Out of work but not currently looking for work'), -- End Row ('736748C7-6ECC-49E2-0FF0-C534F0A9991D','Rhona','Cooper','1966-10-13','916-31-6456','528-5659 Consequat Road','Mesa','85041','AZ','Asian, Middle Eastern or North African','Yes','Male','Yes','Single','No','Some high school, no diploma','Self-employed'), -- End Row ('ADD0CBDD-BC60-0723-A87C-F0F24C98CFDE','Halee','Hines','1995-04-09','195-79-7797','P.O. Box 499, 688 Libero. Rd.','Meridian','59133','ID','American Indian or Alaska Native, Asian','Yes','Female','Yes','Common-Law','No','Masterโ€™s degree','A student'), -- End Row ('7F48521E-F99F-EEBF-AD36-E3B0A471D46F','Gage','Livingston','1960-04-19','438-82-9473','Ap #437-5129 Egestas, Street','Las Vegas','24874','Nevada','Middle Eastern or North African, Black or African American, White','No','Female','Yes','Separated','Yes','Professional degree','Self-employed'), -- End Row ('1B046300-5E15-A0A2-097E-5856C6DFF908','Rhona','Hurley','1945-01-18','049-67-8423','773-5730 Turpis Rd.','Akron','20167','OH','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African, Asian','No','Female','No','Domestic Partnership','Yes','Professional degree','Out of work and looking for work'), -- End Row ('C909A4FE-2E81-F8C7-04AB-578CDDB643AA','Piper','Wall','1977-07-13','661-37-9065','P.O. Box 636, 3997 Mus. Av.','Chicago','22829','IL','','Yes','Male','No','Single','No','Professional degree','Retired'), -- End Row ('4FE9BB1E-6F40-F89D-3272-BF6A3CDDA92A','Thaddeus','Rosales','1957-02-23','430-23-7867','P.O. Box 239, 5090 Malesuada Road','Fort Collins','14304','CO','','Yes','Male','No','Divorced','Yes','Associate degree','Out of work but not currently looking for work'), -- End Row ('1A87B25E-8581-6DB7-7F15-21DB2A2725AD','Linus','Horne','1985-02-22','649-14-8345','P.O. Box 936, 3897 Blandit Avenue','Sandy','62927','Utah','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African, Asian','No','Male','No','Widowed','No','Professional degree','Out of work and looking for work'), -- End Row ('C161A42F-EA7A-A6E4-2316-0E397A858EEC','Nicholas','Stewart','1967-07-22','171-28-0149','Ap #830-7887 Hendrerit. Rd.','Montpelier','52507','VT','','No','Female','Yes','Separated','Yes','Masterโ€™s degree','A homemaker'), -- End Row ('3C21C4AC-5288-1C18-A0F5-4DF06DAE16D6','Chaim','Bass','2005-09-24','762-24-5664','514-4718 Nunc Rd.','Fort Wayne','52302','IN','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Male','Yes','Widowed','Yes','Some high school, no diploma','Retired'), -- End Row ('681E1018-C135-A2B5-B927-8BA81BBB4341','Sophia','Hall','1982-10-27','835-79-9504','7087 Cum Av.','Colchester','97936','VT','White','No','Female','Yes','Domestic Partnership','No','Professional degree','Unable to work'), -- End Row ('89753553-524D-3A57-39F0-666D26EED5D0','Felix','Wynn','1964-08-12','561-49-4836','7592 Semper St.','Augusta','11889','GA','American Indian or Alaska Native','No','Male','Yes','Separated','No','Some high school, no diploma','A student'), -- End Row ('2B4227B5-CD71-6CAB-47BA-37175B347239','Cara','Rosario','1966-07-01','354-10-6332','506-4509 Amet Street','Tulsa','34653','Oklahoma','','No','Female','Yes','Divorced','Yes','Trade / technical / vocational training','Self-employed'), -- End Row ('7FF604E7-05DC-AD93-9E11-960DD6AF0DEC','Amal','Bishop','1947-12-01','510-82-7578','407-9245 Neque. St.','Mesa','85095','AZ','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','No','Male','No','Single','Yes','Bachelorโ€™s degree','Employed'), -- End Row ('26472FDA-6098-65F6-12AD-D72729CAD14D','Haviva','Goodman','1949-01-18','371-26-6064','Ap #390-5767 Felis. Avenue','Tuscaloosa','35210','AL','','Yes','Female','Yes','Divorced','No','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('E314812B-9E30-4A1B-A17D-D3B165115EC0','Hillary','Guerrero','1971-12-17','270-61-0261','408-9425 Dolor, Av.','Kansas City','61284','KS','Black or African American, White, American Indian or Alaska Native','No','Female','Yes','Widowed','Yes','Associate degree','A homemaker'), -- End Row ('054B7A1C-8B88-529B-996D-29E6B73522CF','Hayfa','Battle','1960-03-06','514-27-2037','P.O. Box 622, 6772 Eget, Rd.','Denver','84269','CO','','No','Female','No','Widowed','No','Some college credit, no degree','A student'), -- End Row ('4A951354-55D3-1FED-1030-A7E6A5AC3FEA','Lawrence','Sandoval','1979-06-24','628-22-6257','Ap #194-187 A Road','San Diego','92635','California','','No','Male','No','Single','No','Some high school, no diploma','Self-employed'), -- End Row ('7B2F5C47-031C-CB6E-98A9-C11A3FA664E3','Carson','Velazquez','1969-08-27','987-96-2541','280-7640 Arcu. Road','Minneapolis','19547','MN','','Yes','Male','Yes','Widowed','Yes','Some high school, no diploma','A homemaker'), -- End Row ('1B108FEB-5CE5-90D6-745B-2E5A5E39C290','Alana','Copeland','1962-05-03','570-37-6979','Ap #326-4873 Vivamus Av.','Houston','16950','Texas','White','No','Female','Yes','Common-Law','No','Some college credit, no degree','A student'), -- End Row ('8D71F330-75EB-B194-AE08-44A914DC4932','Chaney','Little','1959-04-08','535-39-3659','9867 Ac, Ave','Frankfort','41959','Kentucky','Native Hawaiian or Other Pacific Islander','No','Male','Yes','Married','Yes','Some high school, no diploma','Military'), -- End Row ('FFAD6589-054F-35DC-8ED6-F00A15218EE7','Wing','Cardenas','2010-11-22','667-94-3544','P.O. Box 830, 8436 Ipsum Av.','Eugene','40800','Oregon','White, American Indian or Alaska Native','Yes','Female','No','Single','Yes','Some college credit, no degree','Out of work and looking for work'), -- End Row ('C8AF317A-76A2-508A-1490-EE49DC337FC7','Whoopi','Allison','2007-05-09','567-86-3193','664-3966 Libero. Ave','South Portland','97762','Maine','','No','Male','Yes','Separated','No','Some college credit, no degree','A homemaker'), -- End Row ('35E980B3-B152-59C3-FC04-E41D295EF0B7','Clinton','Monroe','2004-09-04','298-10-9514','Ap #248-1466 Gravida. Rd.','Frankfort','62071','Kentucky','Middle Eastern or North African, White','Yes','Male','Yes','Widowed','Yes','Trade / technical / vocational training','Out of work and looking for work'), -- End Row ('65C65060-7968-D5A5-DFBD-C50EA295882C','Brenna','Byers','1954-04-22','208-50-1569','P.O. Box 482, 5927 Commodo Road','Naperville','19328','IL','Asian, Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Male','No','Common-Law','No','Professional degree','Employed'), -- End Row ('1F07006A-E6D0-38C2-3521-770ECCFED9AB','Kimberley','Shaffer','1977-08-15','835-74-9771','9055 A Ave','Orlando','97610','Florida','','Yes','Female','No','Separated','Yes','Professional degree','Out of work but not currently looking for work'), -- End Row ('C33E07F7-3ACE-24F7-ABDF-8633C3E4EFC7','Ruby','Mayo','1945-04-29','237-87-6245','P.O. Box 945, 8418 Vulputate Av.','Cleveland','72412','OH','American Indian or Alaska Native','No','Female','Yes','Common-Law','Yes','Professional degree','Out of work but not currently looking for work'), -- End Row ('399011B5-27E6-D6D9-720E-CD14D5C4BB8D','Dara','Alvarado','1980-04-13','605-55-9648','P.O. Box 251, 693 Aliquet St.','Kearney','12536','Nebraska','White, Middle Eastern or North African, American Indian or Alaska Native','Yes','Male','No','Single','No','High school graduate, diploma or the equivalent','Self-employed'), -- End Row ('78493864-F7FF-FC23-9CDA-C6780400B4F9','Hamilton','Stafford','1946-06-02','220-43-1450','2958 Consectetuer Av.','Nampa','42851','Idaho','Black or African American, Native Hawaiian or Other Pacific Islander','No','Male','No','Separated','Yes','Associate degree','A student'), -- End Row ('71CEE949-0D2E-693A-E2CC-3C5A8AEDD164','Clinton','Park','1998-10-08','048-61-5746','Ap #887-4290 Ligula Avenue','Salem','81930','Oregon','Asian, Black or African American','Yes','Male','Yes','Common-Law','No','Bachelorโ€™s degree','Self-employed'), -- End Row ('48B33F49-68C6-1740-B59F-39827FCEA50F','Leroy','Britt','1947-04-19','132-12-8026','853-3357 Aliquam, St.','Cleveland','48873','Ohio','Middle Eastern or North African','Yes','Female','No','Widowed','No','Masterโ€™s degree','Retired'), -- End Row ('B5F77F34-EC51-3627-5EC2-8F94AFEE93F5','Lance','Vance','1966-08-25','011-38-5884','Ap #262-9001 Cursus Ave','Salem','91579','OR','Middle Eastern or North African','Yes','Male','Yes','Common-Law','No','Trade / technical / vocational training','Unable to work'), -- End Row ('DED6F95D-E0B8-3901-7CC9-FAEF85078780','Bertha','Decker','2011-07-12','822-60-2290','Ap #712-7486 Ligula. St.','Fairbanks','99919','AK','','Yes','Female','No','Married','No','Masterโ€™s degree','A homemaker'), -- End Row ('FACE8AF5-8E3B-8A67-A1F6-74FC4FBF56DD','Alana','Mullins','1990-03-11','223-38-2035','Ap #813-2659 Nibh. Rd.','San Jose','93821','California','Middle Eastern or North African','Yes','Male','Yes','Widowed','No','Doctorate degree','Out of work and looking for work'), -- End Row ('7C73C8A4-4D40-CAD0-C2CC-81F2297F8E5A','Connor','Ray','1996-06-11','847-46-2846','Ap #916-7721 Lorem, Avenue','Hartford','90873','CT','Asian, Middle Eastern or North African, Black or African American','No','Male','No','Divorced','No','Nursery school to 8th grade','Employed'), -- End Row ('4F783E3D-E563-ABE6-1DC6-F254A628EF78','Shelby','Contreras','1961-11-09','497-94-0667','201 Nec Road','Los Angeles','93380','CA','Black or African American, Native Hawaiian or Other Pacific Islander, Asian','No','Male','No','Single','No','High school graduate, diploma or the equivalent','Unable to work'), -- End Row ('5279B928-73AA-EAEF-0F8F-1504D397C918','Andrew','Benton','1954-01-04','413-20-4599','P.O. Box 253, 1633 Arcu. St.','San Antonio','18685','Texas','','Yes','Female','No','Domestic Partnership','Yes','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('4854DE27-2518-4CB1-5EFB-86E33FD2B839','Harrison','Gilmore','1950-04-26','660-45-0895','9294 Tincidunt, Road','South Burlington','92592','Vermont','American Indian or Alaska Native','No','Male','No','Separated','No','Professional degree','Unable to work'), -- End Row ('DF80EA1E-8785-D7CC-153B-2F0DD552DAD3','Justina','Bonner','1962-01-17','518-90-1264','Ap #845-5433 Rhoncus. Street','Laramie','47172','WY','Black or African American','Yes','Male','No','Common-Law','No','Professional degree','Self-employed'), -- End Row ('B021E8E2-8AFF-E0C2-7862-123BE11E5991','Yoshio','Quinn','1990-10-18','297-66-2050','977-6454 Fames Rd.','Olathe','40726','KS','','Yes','Female','No','Domestic Partnership','No','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('20A1451B-E7C8-3B84-AE1F-9B11E41F4DF2','Tatyana','Wynn','2008-09-15','675-92-0406','864-1529 Volutpat. Rd.','Portland','49490','Maine','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native, White','Yes','Female','No','Divorced','Yes','No schooling completed','Out of work and looking for work'), -- End Row ('4DBBADBE-0A8E-63B8-435B-825C19330660','Kessie','Barton','1960-03-01','528-51-1596','6700 Proin St.','Kenosha','25171','WI','Black or African American','Yes','Male','No','Divorced','Yes','Associate degree','A homemaker'), -- End Row ('3A33372E-BB7F-8E8A-0C6B-2ADB3113FC4C','Christopher','Mcdonald','1947-04-09','341-88-3893','P.O. Box 988, 8073 Ante. St.','Erie','39365','PA','American Indian or Alaska Native, White','Yes','Female','Yes','Domestic Partnership','Yes','High school graduate, diploma or the equivalent','Out of work and looking for work'), -- End Row ('9967A724-93B7-4BE6-AA95-CF39F06EB182','Rinah','Hopper','2003-04-21','878-40-1398','Ap #817-2334 Mauris. Rd.','Clarksville','87887','TN','White, Middle Eastern or North African','No','Female','Yes','Separated','Yes','Nursery school to 8th grade','A homemaker'), -- End Row ('B1F7DBD4-C8EA-0863-87D2-AA9806D3E1AC','Gwendolyn','Sellers','2011-07-12','554-75-4149','Ap #770-8162 Integer Rd.','Tulsa','65956','OK','White','No','Male','Yes','Common-Law','Yes','Bachelorโ€™s degree','Self-employed'), -- End Row ('A9BDB432-882A-65D3-026C-7607DA2C2CC6','Samantha','Rush','1988-08-07','310-63-2340','Ap #784-9311 Cursus Rd.','Frederick','23753','MD','Asian','No','Female','Yes','Single','No','Some college credit, no degree','Unable to work'), -- End Row ('B1C5A699-FAD8-E001-EE0D-E525623EF082','Burton','Richards','1997-05-19','512-15-9292','Ap #458-9232 Enim Road','Honolulu','82655','Hawaii','American Indian or Alaska Native, Asian, Middle Eastern or North African','Yes','Female','No','Common-Law','Yes','High school graduate, diploma or the equivalent','Out of work but not currently looking for work'), -- End Row ('FE483B97-64EE-88F3-DB4B-D7FD69C847BA','Herman','Guy','1958-05-25','687-03-3797','P.O. Box 801, 3545 Ut St.','Hilo','20937','HI','','No','Female','Yes','Single','No','Nursery school to 8th grade','Self-employed'), -- End Row ('5E789DF0-BDBF-78F4-7248-ACD178EB95B1','Colleen','Cummings','2000-09-24','359-67-6707','914-3229 Urna. Rd.','Provo','39397','Utah','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','No','Male','No','Divorced','No','Bachelorโ€™s degree','Employed'), -- End Row ('B305475D-5997-54F2-3FF8-F1F7D2448C25','Ivor','Levy','1972-07-21','898-71-4523','P.O. Box 839, 8005 Senectus Road','Tucson','85453','Arizona','American Indian or Alaska Native, White, Black or African American','Yes','Male','No','Domestic Partnership','No','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('30C7BBA1-9F9E-4938-99B1-79A45FA0321D','Keiko','Doyle','1948-02-24','446-52-4524','641 Vivamus St.','Casper','42928','WY','Black or African American','Yes','Male','Yes','Separated','No','Trade / technical / vocational training','A student'), -- End Row ('6F6B51E1-9231-F9E5-3B16-314ADC305413','Bell','Holt','1970-05-12','891-39-6089','194-3044 Non Ave','New Haven','53843','Connecticut','Middle Eastern or North African','Yes','Female','No','Single','No','No schooling completed','Out of work and looking for work'), -- End Row ('008EE6DF-BE06-080D-6471-09532184157D','Adrian','Mckee','1974-08-20','594-32-1878','6205 Libero St.','Saint Louis','25209','MO','Asian, Native Hawaiian or Other Pacific Islander','No','Female','No','Domestic Partnership','No','No schooling completed','A student'), -- End Row ('761484C3-E323-E455-3D65-3D36BB712616','Roth','Gould','2003-12-11','761-24-4968','Ap #926-8171 Mi Street','Atlanta','45655','Georgia','','No','Female','Yes','Single','Yes','Masterโ€™s degree','Self-employed'), -- End Row ('1CCD18A3-C112-DE09-B6D7-725310103917','Gabriel','Medina','1999-06-18','617-00-8969','P.O. Box 206, 1915 Ligula. Rd.','Grand Island','37019','NE','','No','Male','No','Common-Law','No','Doctorate degree','Out of work and looking for work'), -- End Row ('2BAB423A-24A8-7D8E-8912-C0ED29943E8D','Wayne','Blake','1945-01-14','847-90-6602','Ap #653-1977 Bibendum. Ave','Bangor','79443','Maine','','Yes','Female','Yes','Married','No','Bachelorโ€™s degree','Employed'), -- End Row ('0CC03D62-C213-8E9E-2D04-97177CF31093','Brittany','William','1983-05-19','446-06-4569','9586 Nunc St.','Independence','69925','MO','Middle Eastern or North African','Yes','Female','No','Single','No','Doctorate degree','Employed'), -- End Row ('006E7BB8-BE8E-A41E-FDA5-EEB8695C1A54','Chloe','Bowen','1977-02-08','306-30-3541','P.O. Box 191, 423 Arcu. Av.','Honolulu','62041','HI','White','No','Male','No','Married','Yes','Doctorate degree','Unable to work'), -- End Row ('ECE73A68-CA02-901B-37BE-477CE590D4C3','Vladimir','Moss','1972-07-13','765-12-3305','457-5535 Aliquam St.','Portland','46940','OR','Native Hawaiian or Other Pacific Islander','No','Male','No','Divorced','No','Nursery school to 8th grade','Out of work and looking for work'), -- End Row ('EFA6AD0F-1384-FE87-3A9E-FAC647D6264A','Regina','Perkins','1955-08-13','596-82-2785','P.O. Box 825, 4879 Penatibus St.','Detroit','35078','Michigan','','Yes','Male','Yes','Separated','Yes','Some college credit, no degree','Unable to work'), -- End Row ('0B3D8286-EAE6-E0F9-4572-5159ACE2DC2C','Fulton','Cantu','1989-09-11','392-46-9700','P.O. Box 846, 6359 Ut Av.','Gulfport','20755','MS','Middle Eastern or North African','Yes','Female','Yes','Single','Yes','Bachelorโ€™s degree','Retired'), -- End Row ('8A473F85-2B09-D317-46F9-7E7061F70C15','Marah','Mcclain','1978-10-16','366-71-3060','P.O. Box 396, 3333 Dolor. Rd.','Rutland','92689','VT','White, American Indian or Alaska Native, Asian','No','Male','No','Married','Yes','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('45172D8B-2C39-DB0B-A0C3-FFDA670CAA3E','Macaulay','Noel','1968-10-19','967-24-3519','P.O. Box 584, 500 Arcu Ave','Bellevue','70694','NE','Black or African American, Asian, American Indian or Alaska Native','Yes','Female','No','Common-Law','No','Doctorate degree','A homemaker'), -- End Row ('4F24A60F-30EE-DDD4-E344-A0C084CA84E8','Sylvia','Dudley','1966-07-03','956-97-7787','776-8192 Suspendisse St.','San Antonio','73893','TX','American Indian or Alaska Native, Asian','No','Female','Yes','Widowed','Yes','Professional degree','Military'), -- End Row ('C6929C8B-AA2C-2019-20B8-FD5D72897FF3','Brett','Gates','1968-10-06','017-72-0280','891-587 Nunc Street','North Las Vegas','85960','NV','Middle Eastern or North African, White, American Indian or Alaska Native','Yes','Female','No','Widowed','No','Masterโ€™s degree','A student'), -- End Row ('4148AC9A-4544-88B9-A061-C53A3E176B5A','Lars','Ramos','1965-12-06','881-89-7946','3835 Elit. Avenue','Milwaukee','35456','WI','','Yes','Male','Yes','Divorced','No','Bachelorโ€™s degree','A student'), -- End Row ('184250E1-235C-0568-FF0E-4F6041FF383F','Hakeem','Todd','1989-02-12','659-64-2691','5460 Nunc Av.','Iowa City','40187','IA','Black or African American, Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Female','No','Common-Law','No','High school graduate, diploma or the equivalent','Retired'), -- End Row ('D9C0E407-941B-B2D7-87BC-BA0EB9B9B13C','Simone','Small','1967-09-20','021-79-1601','P.O. Box 245, 9288 Ultricies Road','Green Bay','36509','WI','Black or African American, Asian, American Indian or Alaska Native','No','Female','No','Separated','Yes','Some college credit, no degree','Employed'), -- End Row ('749952CD-128C-405B-79FA-9119E1891644','Nissim','Rose','2003-08-08','632-96-6297','6049 Ut Rd.','Athens','22213','Georgia','','No','Male','No','Married','Yes','High school graduate, diploma or the equivalent','Unable to work'), -- End Row ('869E25C8-ECBA-72BC-28D4-8C57D15ABAF8','Cecilia','Mccarty','2014-01-09','284-36-0805','7975 Placerat, Ave','Seattle','59907','Washington','Asian','No','Male','No','Single','No','Doctorate degree','Self-employed'), -- End Row ('F19DAD7E-37E2-2062-788F-E478E5198CBE','Zephania','Bennett','1949-11-01','535-07-9634','589 Vivamus Ave','Reno','42853','Nevada','','No','Male','Yes','Widowed','Yes','Doctorate degree','Out of work but not currently looking for work'), -- End Row ('98EA43CD-2E3B-6AFD-5A10-1B3716F88666','Zenia','Rivera','2014-05-19','588-00-5404','2237 Et Street','Savannah','70035','Georgia','Asian','Yes','Female','Yes','Widowed','Yes','Doctorate degree','Employed'), -- End Row ('265E6C93-EC77-DA20-32A2-78F5B4E4D447','Macy','Salas','1963-08-25','503-41-0322','917-2227 Erat Av.','Olathe','92334','Kansas','Middle Eastern or North African, White, American Indian or Alaska Native','No','Female','No','Common-Law','No','Bachelorโ€™s degree','A homemaker'), -- End Row ('0AE7F6CE-C289-365B-2187-BF9C51E8BAE5','Sierra','Stafford','1991-03-18','875-33-8246','644-6501 Neque. Avenue','Norman','79509','Oklahoma','Middle Eastern or North African, Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Male','Yes','Separated','No','Bachelorโ€™s degree','Self-employed'), -- End Row ('30DF5AF4-2436-A95D-AA26-FD9937FF4BB1','Raphael','Gibbs','1988-02-08','601-30-6706','Ap #930-4560 Et Street','Fort Worth','78309','Texas','White','Yes','Female','Yes','Single','No','Associate degree','A student'), -- End Row ('1787FF1D-86A1-AC72-AD57-DD7B0A095E15','Travis','Larsen','2014-10-10','591-54-0830','7864 Ac Avenue','Springdale','72696','Arkansas','','Yes','Female','Yes','Single','Yes','High school graduate, diploma or the equivalent','Military'), -- End Row ('ECA63C9C-6DBA-3C96-CA4E-BDF4FD5ED9AE','Wayne','Gomez','1985-11-15','388-75-5873','8549 Blandit Av.','Milwaukee','69967','Wisconsin','White, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Divorced','No','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('38B32C44-4EBA-0FDE-DEF6-BF89F7648177','Arden','Burks','1952-07-16','716-87-8607','290-9165 Enim, Road','Tucson','85348','AZ','American Indian or Alaska Native, White, Black or African American','Yes','Female','No','Separated','Yes','Trade / technical / vocational training','Military'), -- End Row ('BDA836C8-D247-A147-2F75-DCC280D97398','Kylynn','Woodward','1979-12-07','111-77-7415','Ap #941-238 Eu St.','Norman','67997','Oklahoma','Asian, White','Yes','Male','No','Married','No','Bachelorโ€™s degree','A homemaker'), -- End Row ('9CF32722-883D-2B90-491E-28E8C1B4A339','Xenos','Stanton','1955-07-16','710-98-6189','6730 Est. Rd.','Henderson','51025','Nevada','','Yes','Female','Yes','Common-Law','Yes','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('E8C32354-D2D7-18E1-3EA5-9E5E38F0ABEF','Hamish','Knapp','1952-10-01','877-10-4052','938 Hendrerit St.','Bangor','95105','ME','','Yes','Male','No','Married','Yes','Masterโ€™s degree','A homemaker'), -- End Row ('0A8B5728-B124-3599-2A99-6D9778C33181','Hunter','Miranda','1961-05-27','527-84-5257','P.O. Box 442, 3067 Convallis Rd.','Tulsa','98894','Oklahoma','Middle Eastern or North African, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Divorced','Yes','Trade / technical / vocational training','A student'), -- End Row ('BA00D6E9-DC2A-0548-F508-44FDD7F69080','Tanya','Bates','1950-09-28','301-04-0239','P.O. Box 411, 9467 Cursus Ave','Bear','74999','DE','American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander, Asian','Yes','Female','No','Separated','No','Bachelorโ€™s degree','Out of work but not currently looking for work'), -- End Row ('14214953-0A1A-A64E-B0DA-C88E3F1A69A9','Brittany','Grant','1994-08-02','762-48-4304','P.O. Box 601, 2661 Vestibulum, St.','Hartford','38758','CT','','No','Male','Yes','Separated','No','No schooling completed','A student'), -- End Row ('2AA47B55-A2F0-7D88-F622-6D88502AE372','Anastasia','Carlson','1968-05-08','384-77-4120','Ap #197-3104 Volutpat. St.','Mesa','85254','AZ','American Indian or Alaska Native, White','No','Female','No','Separated','Yes','Doctorate degree','Employed'), -- End Row ('29CB4AC8-3205-7715-B194-9A8FF7F58F9F','Bianca','Gay','2014-05-03','092-68-5586','6126 Et, Street','Jonesboro','72342','Arkansas','Black or African American','No','Female','No','Domestic Partnership','No','Masterโ€™s degree','Unable to work'), -- End Row ('38CFABAA-6AB6-AFD8-54DC-E537A5F7863A','Jenette','Dawson','1956-01-24','974-46-7935','P.O. Box 601, 3801 Adipiscing. Street','Gresham','44142','OR','Black or African American','No','Female','No','Widowed','No','Some college credit, no degree','A homemaker'), -- End Row ('45CF6376-6E70-2491-1F9E-4C8D9D797972','Summer','Simmons','1959-09-24','114-36-4954','744-9312 Primis St.','Hattiesburg','49309','Mississippi','Asian, Black or African American, Native Hawaiian or Other Pacific Islander','Yes','Female','Yes','Domestic Partnership','No','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('9EDC9D01-6629-0409-5E4D-81F583CDA441','Giacomo','Kirby','1940-04-30','389-46-0483','7168 Ligula Rd.','Gulfport','40011','MS','Black or African American, Asian, White','Yes','Female','No','Single','Yes','No schooling completed','Military'), -- End Row ('3A14C9F9-5FFC-08CA-E61F-9DF461362675','Joy','Sanchez','1953-09-06','271-44-3855','792-2928 Nulla. Ave','Georgia','74270','GA','','Yes','Female','No','Widowed','No','High school graduate, diploma or the equivalent','Retired'), -- End Row ('EDB0FA4C-2241-6C20-50F8-261C6FF268EE','Jocelyn','Hodges','2014-08-29','540-60-5891','P.O. Box 327, 272 Nulla Ave','Lexington','15976','KY','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Female','Yes','Single','No','Some college credit, no degree','Out of work and looking for work'), -- End Row ('865E6A80-9119-B8FD-125C-55569972F410','Glenna','Lane','2010-02-24','840-27-4502','P.O. Box 854, 9655 Nunc Street','Colorado Springs','83921','Colorado','Native Hawaiian or Other Pacific Islander','Yes','Female','Yes','Widowed','Yes','Nursery school to 8th grade','Employed'), -- End Row ('90B533E5-8531-FE4E-5BDD-910795C4CFF5','Ginger','Barton','1941-12-26','105-11-1323','7031 Suspendisse Ave','Erie','51841','Pennsylvania','Middle Eastern or North African, American Indian or Alaska Native, Black or African American','No','Male','No','Divorced','Yes','Bachelorโ€™s degree','Self-employed'), -- End Row ('D7B50C9C-ED85-2F7F-D140-46A37F0F5D1E','Quemby','Casey','1994-05-11','456-23-4481','Ap #430-2455 A Street','Cedar Rapids','99805','IA','Middle Eastern or North African','Yes','Male','No','Married','Yes','Nursery school to 8th grade','Military'), -- End Row ('F48E068E-07BE-9B7E-2520-963601346577','Erich','Schmidt','1983-11-08','540-15-1431','5216 Mauris Avenue','Newport News','40113','VA','White, American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander','No','Female','Yes','Common-Law','No','Doctorate degree','A student'), -- End Row ('306E27F7-DC22-7D05-6E32-8578E0C81E67','Kato','Dudley','1995-03-07','614-71-1382','513-5366 Nullam Ave','Virginia Beach','40629','Virginia','American Indian or Alaska Native','Yes','Male','Yes','Domestic Partnership','No','Doctorate degree','Out of work and looking for work'), -- End Row ('7BB93479-DFA2-2B61-00C8-03F5C806BA92','Kaden','Bright','1968-05-15','156-69-5809','Ap #614-2427 Sem, Av.','San Antonio','25952','TX','','No','Female','No','Widowed','No','No schooling completed','Self-employed'), -- End Row ('D885C541-AD93-1BF7-D1F5-AE00FFC85A60','Darryl','Miller','2012-11-04','914-49-9571','722-3203 Luctus Ave','Glendale','85281','Arizona','American Indian or Alaska Native, Asian, Middle Eastern or North African','No','Female','No','Domestic Partnership','Yes','Some college credit, no degree','Military'), -- End Row ('773B989F-FC16-6E39-528A-BA80D61D19CB','Leila','Pruitt','1993-07-03','877-29-5419','P.O. Box 577, 8028 Neque Rd.','San Antonio','50494','Texas','Asian','No','Male','No','Domestic Partnership','No','Some college credit, no degree','Out of work and looking for work'), -- End Row ('CDFC3E12-6B1F-8735-EF7B-DA01D636AC1A','Randall','Perkins','1944-06-09','394-85-5732','6499 Libero. Street','Erie','42242','PA','Asian, Black or African American, Middle Eastern or North African','No','Male','No','Married','Yes','Masterโ€™s degree','Unable to work'), -- End Row ('13EF0E0D-EF5A-975E-5A34-461EB4A82C07','Uriel','Ratliff','1960-01-19','401-24-8450','P.O. Box 975, 9118 Vitae, Street','Spokane','61118','WA','','Yes','Male','No','Common-Law','Yes','Masterโ€™s degree','Out of work and looking for work'), -- End Row ('5B187EBE-D959-31D6-2ABC-3B6D20A20BEF','Gwendolyn','West','1943-04-13','336-89-8947','P.O. Box 607, 8956 Est Ave','Milwaukee','92537','Wisconsin','','No','Male','Yes','Married','No','Nursery school to 8th grade','A homemaker'), -- End Row ('101E190A-15E0-D72B-D9E8-4FF20AA9301E','Dylan','Vinson','1963-10-10','876-25-1812','Ap #120-7530 Faucibus. Street','Chattanooga','91855','TN','Asian, Black or African American','No','Female','Yes','Common-Law','No','Nursery school to 8th grade','Employed'), -- End Row ('2D3CAB38-1AA6-6558-844F-61A6D7AB3577','Tanek','Ratliff','2005-08-01','277-79-9120','Ap #930-1742 Mattis Av.','Nashville','82291','TN','Black or African American','Yes','Female','Yes','Common-Law','No','Some high school, no diploma','A homemaker'), -- End Row ('3FA1D38D-B510-7E32-EA14-B8226CDA2797','Casey','Singleton','1985-09-24','600-70-8598','P.O. Box 903, 6536 Tempor Av.','Chesapeake','40420','VA','','No','Female','Yes','Separated','Yes','High school graduate, diploma or the equivalent','Employed'), -- End Row ('3292BC00-BFFC-5A23-378E-84FD2EADD540','Sierra','Zamora','1940-12-06','507-25-8943','Ap #344-8471 Cum Rd.','Lowell','38299','Massachusetts','Middle Eastern or North African, White','Yes','Female','No','Single','No','Professional degree','Unable to work'), -- End Row ('16033475-BB0E-B2EB-3BB9-E1B848000949','Suki','Wolfe','1955-04-02','126-45-4045','Ap #731-4536 Posuere St.','Reading','42203','PA','','Yes','Female','No','Domestic Partnership','No','Some college credit, no degree','Unable to work'), -- End Row ('9CBDE271-E579-2799-65F0-61F7A2C5F36C','Solomon','Francis','1988-11-23','776-79-2643','710-3209 Magnis Rd.','Cambridge','23859','MA','','Yes','Female','Yes','Separated','Yes','Doctorate degree','Out of work but not currently looking for work'), -- End Row ('7CBA0620-9080-B08F-FEC2-D029DDA561D5','Daniel','Goodman','1942-03-06','695-53-5977','9957 Enim Street','Los Angeles','94228','CA','White','No','Female','Yes','Divorced','No','No schooling completed','A homemaker'), -- End Row ('1D6808D2-C5FD-9DEF-CC9D-A640E10BE87B','Jelani','Steele','2014-04-28','602-62-4602','P.O. Box 147, 5443 Purus, Street','Bear','16501','Delaware','','No','Male','Yes','Married','Yes','Some college credit, no degree','A student'), -- End Row ('99A02787-C4EE-CAC4-0441-D0415B5B380C','Kiara','Barber','1999-07-17','062-02-4228','P.O. Box 447, 6370 Morbi Street','Toledo','76860','Ohio','Asian, Black or African American, Native Hawaiian or Other Pacific Islander','No','Female','No','Single','Yes','Some college credit, no degree','Unable to work'), -- End Row ('A5C160EB-18C2-C373-E00B-61C3FDEB4BD1','Jennifer','Steele','1942-06-04','210-09-6507','Ap #628-8586 Ac Road','Kansas City','79862','Kansas','Middle Eastern or North African','Yes','Female','Yes','Single','No','Doctorate degree','Retired'), -- End Row ('404628FD-F950-8978-B1E7-83BBAB609AF4','Aubrey','Wiggins','1990-12-31','585-82-7834','Ap #833-2427 A Av.','Kailua','29882','Hawaii','Asian, White','Yes','Female','Yes','Married','Yes','Trade / technical / vocational training','A homemaker'), -- End Row ('4C092CEE-FAC1-2787-D562-69BB8A19545E','Vernon','Galloway','1989-03-05','316-94-5091','Ap #652-9251 Vestibulum. Rd.','College','99720','AK','Black or African American, Native Hawaiian or Other Pacific Islander, White','No','Female','No','Common-Law','Yes','Masterโ€™s degree','Military'), -- End Row ('DA957DEB-62D8-0102-5473-B77CD48A600F','Penelope','Morrison','1983-02-14','765-90-1480','3880 Donec St.','Fort Worth','47873','TX','Asian, American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Common-Law','Yes','Nursery school to 8th grade','A homemaker'), -- End Row ('5AF4D9CB-DBBA-5890-1EA4-28E7D05F5CBD','Mikayla','Quinn','1947-06-12','568-02-3017','Ap #265-6059 Diam Street','Essex','37637','Vermont','American Indian or Alaska Native','Yes','Male','Yes','Divorced','No','No schooling completed','Unable to work'), -- End Row ('747CD7EE-FFD2-7535-F1D4-02AEE520E027','Addison','Hopkins','1947-11-20','079-42-8691','432-7176 A, St.','Waterbury','85623','Connecticut','Middle Eastern or North African','Yes','Male','Yes','Divorced','No','No schooling completed','Self-employed'), -- End Row ('A5C659C7-B724-15C1-0BD9-3B93C76C0744','Salvador','Stone','1983-10-13','949-78-8069','Ap #759-8422 Donec Av.','Athens','39258','Georgia','Black or African American','Yes','Male','No','Divorced','No','Doctorate degree','A student'), -- End Row ('821B33F7-14C1-644D-4229-943115AB4462','Galvin','Morales','1955-09-14','067-30-5393','Ap #501-5288 Vitae Ave','Columbus','46153','GA','White, American Indian or Alaska Native, Asian','Yes','Female','No','Domestic Partnership','Yes','Doctorate degree','Retired'), -- End Row ('49A10184-D441-5AF1-1115-760A0CEF53D7','Pandora','Hansen','1948-09-10','715-57-0741','P.O. Box 947, 9552 Orci, Road','Colorado Springs','76323','Colorado','White, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Divorced','Yes','Professional degree','Self-employed'), -- End Row ('F2492400-1FE1-DB48-0A74-7F9A4E5CA193','Kiayada','Small','1963-05-08','767-25-0934','P.O. Box 574, 1347 Vivamus Road','Auburn','38405','Maine','Middle Eastern or North African','No','Male','Yes','Widowed','No','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('67C38E73-84BB-296D-A6F6-26E29F5ED796','Jin','Booth','1986-01-11','072-39-6525','8854 Cursus Rd.','Provo','79154','Utah','Middle Eastern or North African, Asian','Yes','Male','Yes','Domestic Partnership','Yes','Trade / technical / vocational training','Out of work but not currently looking for work'), -- End Row ('4236D7AF-A299-37E6-533C-AEBF04FEF9BC','Olga','Collier','1977-11-24','727-34-0184','P.O. Box 584, 7215 Mauris Av.','Austin','15991','Texas','','No','Female','Yes','Divorced','Yes','High school graduate, diploma or the equivalent','Employed'), -- End Row ('A24BAA6C-43BC-6233-AEE8-81A75B1EA136','Haviva','Dudley','1973-06-25','218-59-1646','5518 Enim. Avenue','Jackson','61860','MS','White, Black or African American','No','Female','No','Divorced','No','Masterโ€™s degree','Retired'), -- End Row ('38A64EF0-6E3E-6226-E3F2-B86304ECDB76','Honorato','Cline','1982-01-10','177-59-5980','451-6299 Nullam Street','Chicago','14224','Illinois','Asian, Black or African American','Yes','Female','Yes','Separated','No','Nursery school to 8th grade','Employed'), -- End Row ('D131B80E-7CB5-AD10-D5D3-2E0A899585BF','Slade','Burks','1990-05-17','439-34-4204','6285 Enim. Road','Great Falls','43875','Montana','','Yes','Male','No','Divorced','Yes','Doctorate degree','Retired'), -- End Row ('AB5D05EF-D101-8AC1-2AE0-471BCC60C8A4','Kirestin','Williams','2012-02-04','358-43-9166','P.O. Box 972, 7319 Sit Av.','Harrisburg','13208','Pennsylvania','','No','Male','No','Domestic Partnership','Yes','Nursery school to 8th grade','Employed'), -- End Row ('6DF2460F-4886-546A-9F9F-54132739A3D5','Fulton','Wooten','1949-05-11','306-61-9535','5293 Auctor St.','Little Rock','72627','AR','Middle Eastern or North African, White, American Indian or Alaska Native','Yes','Male','Yes','Single','No','Some high school, no diploma','Unable to work'), -- End Row ('C4441B4C-47D5-611E-38FA-1FA7A2297A94','Sigourney','Goff','1975-05-09','248-84-3083','P.O. Box 379, 8526 Cum Avenue','Birmingham','35633','AL','Middle Eastern or North African','No','Female','No','Domestic Partnership','No','Masterโ€™s degree','A student'), -- End Row ('F6FF926A-5D37-6493-6AA8-4D4435B10C40','Chase','Coleman','2000-02-13','902-33-2738','P.O. Box 611, 6440 Sagittis. Avenue','College','99685','AK','','No','Female','Yes','Widowed','No','Trade / technical / vocational training','A student'), -- End Row ('787A232B-CB1C-EA77-FD13-76A4D5C2CFE2','Minerva','Baker','1961-07-23','416-12-6822','P.O. Box 961, 1770 Turpis Street','Montpelier','16009','Vermont','American Indian or Alaska Native, White, Middle Eastern or North African','No','Male','Yes','Common-Law','No','No schooling completed','Self-employed'), -- End Row ('081C4ABC-4466-BE2D-396A-FF6E8AA79C77','Roary','Richard','1948-07-19','063-76-1898','768-8008 Nunc Avenue','Augusta','16861','Maine','','No','Male','No','Widowed','Yes','Professional degree','Out of work but not currently looking for work'), -- End Row ('31EFAD68-5264-A313-A038-16AB495719F4','Brett','Gonzales','1963-06-18','634-34-0857','481-7273 Ac Road','Tacoma','20523','Washington','','Yes','Male','Yes','Domestic Partnership','Yes','Doctorate degree','A student'), -- End Row ('0093A3FF-C057-1384-5DA7-33A7DDC9AF70','Brandon','Buchanan','1982-10-30','683-12-2378','455-4127 Semper Av.','Kaneohe','74607','Hawaii','','Yes','Male','Yes','Common-Law','No','High school graduate, diploma or the equivalent','A student'), -- End Row ('37971D19-DA2B-CFAB-A3FE-F4DEA602447A','Danielle','Cote','2005-08-20','087-66-3787','2913 Fringilla Street','Cheyenne','32141','Wyoming','Black or African American, Asian','Yes','Female','No','Widowed','No','Nursery school to 8th grade','A homemaker'), -- End Row ('66122349-1669-5675-CE17-2E2C554C458E','Duncan','Stewart','2007-06-04','171-95-1198','596-254 Adipiscing Ave','Springfield','80006','Massachusetts','Asian, White, American Indian or Alaska Native','No','Female','Yes','Separated','Yes','Some college credit, no degree','Unable to work'), -- End Row ('AA01D4DC-C5DC-B1B0-D26C-549CEE7B201E','Hedda','Hines','1993-03-07','484-96-9768','Ap #871-7276 Nisl. Street','Henderson','13035','Nevada','Native Hawaiian or Other Pacific Islander, White','No','Male','Yes','Widowed','No','Associate degree','Military'), -- End Row ('1AD14835-0981-EC8A-661C-00A0751375C0','Dahlia','Morris','1978-01-28','474-73-0564','Ap #966-3564 Metus. St.','Mesa','86972','Arizona','','No','Female','Yes','Single','Yes','Bachelorโ€™s degree','Retired'), -- End Row ('2144EA7B-82BB-4484-8A8F-A73FE39A0B0D','Ifeoma','Barton','1961-06-18','237-85-7389','6887 Consectetuer St.','Worcester','77344','Massachusetts','Asian, Black or African American','No','Male','No','Married','No','Trade / technical / vocational training','Unable to work'), -- End Row ('9204CBFF-95A3-4724-B97D-A90FE6EE184E','Leilani','Hardin','1940-09-27','063-09-9020','P.O. Box 282, 652 Lectus Avenue','Lowell','26565','MA','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native, White','No','Male','No','Single','No','Some high school, no diploma','Self-employed'), -- End Row ('F796F87A-1CC6-56B4-9B36-63F701DC1537','Courtney','Mcdonald','1962-07-08','527-44-5600','Ap #570-4897 Quisque Street','Norfolk','26675','Virginia','White, Asian','Yes','Female','Yes','Divorced','No','Some high school, no diploma','A homemaker'), -- End Row ('D8313DC5-352D-C11A-D246-130283088FF6','Malcolm','Flynn','1992-02-15','130-83-1556','1933 Sed Road','Fairbanks','99580','Alaska','','Yes','Female','No','Divorced','Yes','Masterโ€™s degree','Military'), -- End Row ('A7C0A0FF-1BFE-A53B-D735-07059FE2AE2D','Wynter','Rios','1968-08-09','425-17-8711','Ap #810-6238 Eget Rd.','Montpelier','26406','VT','Native Hawaiian or Other Pacific Islander, Asian, Black or African American','Yes','Male','No','Common-Law','No','Doctorate degree','Out of work but not currently looking for work'), -- End Row ('29200C2C-21EE-26C3-E0CE-A2AA7FBB596D','Quinn','Mccall','1986-04-02','337-32-0456','Ap #455-193 Sit Av.','Auburn','23407','Maine','White, Black or African American, Asian','Yes','Male','No','Separated','No','Nursery school to 8th grade','A homemaker'), -- End Row ('83F09DB5-88C3-7B6C-A49B-61DB0CE8D963','Nathan','Curtis','1992-12-03','927-54-5812','Ap #585-2841 Risus. Avenue','Nampa','26192','Idaho','American Indian or Alaska Native, Middle Eastern or North African','No','Female','Yes','Divorced','Yes','Some high school, no diploma','Out of work and looking for work'), -- End Row ('B8995901-6C86-F2FC-1369-91106DAC02AD','Laith','Roth','1977-02-20','460-38-6556','Ap #723-8841 A, Rd.','Flint','28087','Michigan','White, American Indian or Alaska Native, Middle Eastern or North African','Yes','Female','No','Widowed','No','Some high school, no diploma','Employed'), -- End Row ('D8E7A9DA-70F5-D1D5-6C84-FD97B435331E','Troy','Chandler','1948-05-21','513-91-8964','P.O. Box 513, 7262 Non St.','Lexington','99637','Kentucky','American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander','No','Female','No','Separated','Yes','Masterโ€™s degree','A student'), -- End Row ('246DB6E2-7F95-C792-8FA7-0A8C20E61442','Daria','Dale','1980-11-18','052-53-3474','337-9026 Nam St.','Tulsa','11723','OK','','Yes','Male','No','Widowed','No','No schooling completed','Out of work but not currently looking for work'), -- End Row ('DE427B60-59E8-DC21-125F-8230FB4F8DF2','Boris','Hamilton','1994-11-14','419-60-9070','Ap #312-8350 Iaculis Rd.','Montpelier','59092','VT','','No','Female','Yes','Widowed','No','Trade / technical / vocational training','Self-employed'), -- End Row ('83CE2A02-83E2-FC88-3630-84FB59453B5C','Alexis','Prince','1989-03-09','426-65-3241','P.O. Box 287, 4838 Amet, Rd.','Mobile','35419','AL','Middle Eastern or North African','No','Male','No','Domestic Partnership','No','Some college credit, no degree','Out of work but not currently looking for work'), -- End Row ('AC7EFA65-8C22-D16A-32FC-5343A0A45C5F','Kylan','Deleon','1983-04-29','652-63-6275','P.O. Box 760, 9373 Eu, Rd.','Dover','54304','Delaware','Middle Eastern or North African','No','Female','Yes','Common-Law','No','Trade / technical / vocational training','A homemaker'), -- End Row ('0F220FBD-3039-77D4-804E-BD50C528A4FA','Sylvester','Trujillo','1980-11-25','629-22-4534','P.O. Box 256, 195 Etiam Rd.','Norman','49828','Oklahoma','Middle Eastern or North African, Asian, White','No','Female','Yes','Common-Law','No','High school graduate, diploma or the equivalent','A student'), -- End Row ('1A05E6ED-D72D-4417-ABCF-24454D8014DE','Lev','Butler','1965-01-16','577-67-9303','P.O. Box 977, 7814 Bibendum Rd.','Waterbury','25209','Connecticut','Black or African American','Yes','Female','Yes','Separated','Yes','Trade / technical / vocational training','Military'), -- End Row ('9551C836-107D-BBB2-AC92-296F08C8B75F','Alec','Dickerson','2008-02-19','384-84-1952','Ap #338-1987 Rutrum. Ave','Norman','31368','OK','White, Black or African American, Middle Eastern or North African','No','Female','No','Single','No','Masterโ€™s degree','A student'), -- End Row ('58414B2D-036C-FB38-F6CA-71D31C50BFC2','Lana','Savage','1948-05-19','930-81-8842','Ap #903-2209 Et, Ave','Sioux City','36488','Iowa','Black or African American, Middle Eastern or North African, American Indian or Alaska Native','No','Male','Yes','Married','No','Trade / technical / vocational training','Out of work and looking for work'), -- End Row ('B6303BDE-DDE4-E763-633E-7178CAC13F19','Aspen','Kemp','1968-08-20','740-16-7186','460 Leo. Rd.','Sioux City','60595','IA','Middle Eastern or North African','No','Male','No','Divorced','Yes','Nursery school to 8th grade','Self-employed'), -- End Row ('1F737DFB-24CC-CC1F-E1C7-36F0DA1ED625','Jada','Graves','2005-08-27','566-00-9013','Ap #548-4470 Quis Street','Worcester','12367','MA','Middle Eastern or North African','No','Male','No','Widowed','No','No schooling completed','Out of work and looking for work'), -- End Row ('C6521CF1-04C7-8FD8-E381-211A3157D72B','Quamar','Ortega','1956-11-18','978-65-0516','Ap #458-9923 Quis Rd.','Kansas City','88283','MO','Native Hawaiian or Other Pacific Islander, Black or African American, White','No','Female','Yes','Separated','Yes','Some high school, no diploma','Out of work and looking for work'), -- End Row ('65F47C94-EAD3-AC7A-7F6E-8E43BF889128','Dale','Kaufman','1982-01-06','464-59-8981','P.O. Box 128, 5579 Euismod Ave','Fort Smith','71384','Arkansas','Asian, Black or African American','Yes','Female','Yes','Single','Yes','Trade / technical / vocational training','A homemaker'), -- End Row ('5FB8CFD0-C61D-060B-2911-6812A4CA39D3','Maia','Donovan','1959-11-29','723-71-4452','P.O. Box 573, 8324 Ipsum. St.','Evansville','69295','Indiana','Native Hawaiian or Other Pacific Islander, American Indian or Alaska Native','Yes','Female','Yes','Common-Law','No','Bachelorโ€™s degree','Unable to work'), -- End Row ('23BF10B7-EC2C-4EC4-A38C-972424C4D712','Armando','Conway','1972-11-01','942-83-7300','P.O. Box 106, 5481 Elit, Rd.','Chesapeake','79561','VA','Middle Eastern or North African','No','Female','Yes','Separated','No','Trade / technical / vocational training','Employed'), -- End Row ('50CB6726-8F92-1895-4F40-0A0E238B856A','Mona','Hill','1964-08-11','423-65-2545','P.O. Box 335, 1631 Nunc Ave','Saint Louis','18184','MO','Asian, Black or African American, Middle Eastern or North African','Yes','Male','No','Domestic Partnership','No','Associate degree','Military'), -- End Row ('A37F52A0-A849-A46C-6536-D9CE4822104F','Jaime','Walker','1966-04-24','715-84-1551','6148 Mauris Avenue','Springdale','72787','Arkansas','White, American Indian or Alaska Native, Black or African American','Yes','Female','Yes','Separated','No','Nursery school to 8th grade','A homemaker'), -- End Row ('89FEC4E9-7EE7-6E97-FBBC-5431075A1585','Rigel','Gilbert','1942-08-15','914-09-1815','569-544 Cursus, St.','Hattiesburg','86928','MS','Native Hawaiian or Other Pacific Islander, Asian','Yes','Male','Yes','Widowed','Yes','Masterโ€™s degree','Self-employed'), -- End Row ('820D36D8-3FF1-DE6F-CDD3-E8061A8A896A','Scarlet','Leach','2014-07-22','864-10-6247','2108 Etiam Road','Lexington','54781','KY','Native Hawaiian or Other Pacific Islander, Black or African American','Yes','Female','Yes','Common-Law','Yes','Nursery school to 8th grade','Out of work but not currently looking for work'), -- End Row ('0ECF221E-DD08-7D5B-35F2-E8C5C48B6961','Kaseem','Sharpe','1957-12-28','448-93-6781','Ap #392-8397 Molestie. St.','Fort Collins','24701','CO','Middle Eastern or North African, White','Yes','Female','No','Common-Law','Yes','High school graduate, diploma or the equivalent','Retired'), -- End Row ('56A15539-6342-5798-EF56-83B86DEFB6FF','Deacon','Nguyen','1948-03-27','682-67-1079','4962 Gravida St.','Little Rock','71098','AR','','No','Male','Yes','Single','Yes','Some high school, no diploma','Self-employed'), -- End Row ('7D063687-3A4C-711E-42CD-068A6A3637C8','Alden','Miles','1981-10-27','067-59-9561','604-626 Cursus St.','Grand Island','90277','NE','American Indian or Alaska Native, Black or African American','Yes','Female','Yes','Widowed','Yes','No schooling completed','Self-employed'), -- End Row ('33CF3854-2382-F69F-CDEF-C956BA15366F','Colton','Humphrey','1967-01-27','301-93-1091','793-3850 Phasellus Road','Boston','66731','Massachusetts','','No','Male','Yes','Separated','No','Doctorate degree','Out of work but not currently looking for work'), -- End Row ('A0E405AF-CCA0-08FA-6C7D-0399FAF54269','Venus','Church','1968-04-25','372-11-7887','414-8137 Nec Rd.','Olathe','17121','Kansas','Native Hawaiian or Other Pacific Islander','No','Male','Yes','Single','Yes','Trade / technical / vocational training','Retired'), -- End Row ('5C42DCD6-AED5-316D-8B29-896B7E2EBAA4','Elvis','Cannon','1975-10-15','551-37-1118','4999 Non, St.','Bozeman','61610','Montana','','Yes','Male','Yes','Single','No','Nursery school to 8th grade','Employed'), -- End Row ('973626B1-4911-5640-EFEB-47FE058BD9C6','Shana','Mccarthy','1946-03-01','248-67-2562','Ap #704-3903 Non Street','Fort Worth','28106','TX','American Indian or Alaska Native','No','Male','Yes','Widowed','Yes','Doctorate degree','A homemaker'), -- End Row ('32743121-9354-BB75-5581-9CB260F69801','Jarrod','Morales','1996-04-12','717-25-8109','905-7280 Nec Rd.','Evansville','24463','Indiana','Native Hawaiian or Other Pacific Islander, Asian','Yes','Male','No','Widowed','Yes','Doctorate degree','Retired'), -- End Row ('623F56FF-1611-656F-F75D-C279A3CC94B9','Joel','Reeves','1948-01-15','345-75-1093','P.O. Box 707, 4842 Malesuada Road','Fort Worth','57000','Texas','Middle Eastern or North African, Black or African American, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Divorced','No','Nursery school to 8th grade','Out of work but not currently looking for work'), -- End Row ('49D4B968-3D6F-FBFB-C2D4-1029260B15A8','Francesca','Daniel','1973-01-29','235-25-7873','416-1834 Cras Rd.','Hartford','46910','Connecticut','Middle Eastern or North African, Asian','Yes','Female','Yes','Common-Law','Yes','No schooling completed','A homemaker'), -- End Row ('832FAE0D-9799-09C2-C07B-9762EDB8476D','Imani','Mclean','1982-05-23','272-33-6146','P.O. Box 994, 9454 Amet Avenue','Chattanooga','28336','Tennessee','Native Hawaiian or Other Pacific Islander, Middle Eastern or North African, American Indian or Alaska Native','No','Female','No','Domestic Partnership','Yes','Professional degree','Retired'), -- End Row ('E542CC65-E8B6-0F48-2C90-E91E2A9A177D','Dillon','Alvarado','1978-01-20','201-46-6671','686-525 Ac Avenue','Athens','61166','GA','Middle Eastern or North African, Native Hawaiian or Other Pacific Islander, Black or African American','Yes','Male','Yes','Domestic Partnership','No','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('8821A3E1-4E63-D3A0-0030-CF8A24B5DEA3','Basia','Spencer','1994-08-04','864-94-3683','Ap #660-2962 Elementum St.','Olathe','46190','Kansas','','No','Female','No','Separated','Yes','No schooling completed','Military'), -- End Row ('F4566D36-0714-3ED7-00C9-FFAEB60173AE','Mohammad','Bell','1999-10-18','922-85-0197','Ap #751-7653 Amet, St.','Norfolk','22924','VA','','Yes','Female','No','Single','Yes','Trade / technical / vocational training','Self-employed'), -- End Row ('A52C5D7C-4E31-75B8-EE4E-8B2C3B683DDF','Wylie','Mcguire','1968-06-14','680-48-3574','373-5797 Lacus. Road','Cleveland','37406','OH','Middle Eastern or North African, Native Hawaiian or Other Pacific Islander, Black or African American','Yes','Male','Yes','Common-Law','No','Associate degree','Retired'), -- End Row ('C5BDFE50-FFA2-E0C5-4E11-BCA554F3C048','Alexander','Fulton','1999-03-01','247-57-5528','P.O. Box 109, 6269 Lacinia. Rd.','Denver','73579','CO','Middle Eastern or North African, American Indian or Alaska Native','Yes','Male','Yes','Divorced','No','Bachelorโ€™s degree','Military'), -- End Row ('4AA607C3-3846-E78F-7FCA-CF9F0E7887BA','Maite','Chan','1946-08-18','065-58-2361','486-6027 Orci, St.','Columbus','31980','OH','White','Yes','Female','Yes','Single','No','Masterโ€™s degree','Self-employed'), -- End Row ('FDD87DEF-1A1E-1FEF-1DE4-5A042B6EC897','Zachary','Gutierrez','1991-10-03','199-19-0757','680 Pretium Street','Paradise','92675','Nevada','Black or African American, American Indian or Alaska Native','Yes','Female','Yes','Single','Yes','Masterโ€™s degree','Out of work but not currently looking for work'), -- End Row ('0CFB0724-A091-1B9C-0240-DB0A6394D758','Cooper','Herring','1968-10-07','633-42-0250','Ap #414-4830 Aliquam Road','Des Moines','87396','Iowa','American Indian or Alaska Native','No','Male','No','Divorced','No','Trade / technical / vocational training','Out of work and looking for work'), -- End Row ('06BE13DC-89F2-849F-1233-9374909EB222','Blythe','Benton','1992-10-23','723-79-8629','P.O. Box 844, 9742 Est. St.','Bridgeport','81753','Connecticut','Black or African American, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Widowed','No','Trade / technical / vocational training','Out of work and looking for work'), -- End Row ('97B6DD0C-21E0-1D1F-8D1B-05C047577AEE','Ainsley','Cline','1965-07-12','505-63-0246','644-4219 Erat Road','Salt Lake City','18333','UT','','Yes','Male','No','Widowed','No','Doctorate degree','Retired'), -- End Row ('D04256B5-0AE4-26DD-4206-FABA5E17AF3C','Felicia','Navarro','1956-07-28','985-61-0648','Ap #784-1173 At Rd.','Frankfort','78344','KY','American Indian or Alaska Native, Middle Eastern or North African, Asian','No','Female','No','Separated','No','Some high school, no diploma','Retired'), -- End Row ('5DB984CE-00FA-6B4F-97FD-B550443699E0','Amy','Hammond','1987-10-07','711-33-2634','362-9350 Et St.','Chattanooga','83730','Tennessee','Asian, White, Native Hawaiian or Other Pacific Islander','Yes','Female','No','Married','No','No schooling completed','A homemaker'), -- End Row ('6D347143-0069-A36C-7AC5-C458B234FE20','Eric','Young','1978-04-03','361-09-1183','7465 Suspendisse St.','Kapolei','69400','Hawaii','American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander, Middle Eastern or North African','Yes','Male','No','Separated','No','High school graduate, diploma or the equivalent','A homemaker'), -- End Row ('D508D411-A9C8-85C4-196F-F893464A0B99','Mira','Avery','1987-04-18','236-26-1807','P.O. Box 960, 8303 Suspendisse Ave','Casper','94116','Wyoming','Asian, Middle Eastern or North African','Yes','Male','Yes','Common-Law','No','Some high school, no diploma','Self-employed'), -- End Row ('A2913D5B-4F24-B099-62BD-1A2A751CD3FC','Luke','Daniels','1964-02-06','652-05-7203','P.O. Box 979, 433 Sed Rd.','New Haven','55073','Connecticut','','Yes','Female','No','Married','No','Associate degree','Employed'), -- End Row ('2B677F20-FD96-637B-3107-A820EA001EFC','Juliet','Cooke','1982-03-26','372-61-9424','P.O. Box 513, 6518 Aenean Av.','Sioux City','56147','IA','American Indian or Alaska Native, Black or African American, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Separated','No','Associate degree','A homemaker'), -- End Row ('4A8299E7-3813-AB52-F414-15247A951608','Rachel','Norman','1995-08-05','743-82-6606','948-1367 Aliquam Rd.','Hilo','80938','HI','','Yes','Female','No','Domestic Partnership','No','Professional degree','A student'), -- End Row ('E46E59CD-1293-FC5A-7903-BAEC7FE5DC49','Reese','Cabrera','2011-09-09','868-83-6499','272-5133 Egestas Rd.','Hillsboro','77052','OR','','Yes','Male','No','Married','No','Doctorate degree','Out of work and looking for work'), -- End Row ('6AFA22D8-F52A-74FF-EEA7-92AA8A52398B','Nelle','Humphrey','1943-09-23','433-61-9644','Ap #932-555 Amet, Rd.','Lowell','71046','MA','Middle Eastern or North African, American Indian or Alaska Native, Native Hawaiian or Other Pacific Islander','Yes','Male','No','Widowed','No','Associate degree','Out of work and looking for work'); -- End Row
SET DEFINE OFF; ALTER TABLE AFW_36_TYPE_DON ADD ( CONSTRAINT AFW_36_TYPE_DON_PK PRIMARY KEY (SEQNC) ENABLE VALIDATE) /
-- MySQL dump 10.13 Distrib 5.7.23, for Linux (x86_64) -- -- Host: localhost Database: wordpress -- ------------------------------------------------------ -- Server version 5.7.23 /*!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 `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','<EMAIL>','https://wordpress.org/','','2018-09-13 06:19:07','2018-09-13 05:19:07','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); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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 '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost:8787','yes'),(2,'home','http://localhost:8787','yes'),(3,'blogname','wordpress-web','yes'),(4,'blogdescription','Just another WordPress site','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','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','jS F Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','jS F Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','','yes'),(29,'rewrite_rules','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','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','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','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','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','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:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','Europe/London','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','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','0','yes'),(93,'initial_db_version','38590','yes'),(94,'wp_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','1','yes'),(96,'WPLANG','en_GB','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'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'),(99,'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'),(100,'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'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:5:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','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,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'cron','a:3:{i:1536815949;a:4:{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;}}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;}}}i:1536815956;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;}}}s:7:\"version\";i:2;}','yes'),(113,'_transient_doing_cron','1536815956.0103690624237060546875','yes'),(114,'_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:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.9.8.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.9.8.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.8\";s:7:\"version\";s:5:\"4.9.8\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1536815957;s:15:\"version_checked\";s:5:\"4.9.8\";s:12:\"translations\";a:0:{}}','no'),(115,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1536815957;s:8:\"response\";a:0:{}s:12:\"translations\";a:2:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.0.8\";s:7:\"updated\";s:19:\"2018-07-12 19:24:08\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/akismet/4.0.8/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:19:\"2018-03-20 19:24:06\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.6/en_GB.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:2:{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.0.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.8.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: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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(116,'_site_transient_timeout_theme_roots','1536817759','no'),(117,'_site_transient_theme_roots','a:3:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(118,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1536815960;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:3:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentyfifteen\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:19:\"2017-11-16 13:45:26\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentyfifteen/2.0/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentyseventeen\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:19:\"2018-04-28 18:39:54\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/theme/twentyseventeen/1.7/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentysixteen\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:19:\"2017-01-29 00:58:00\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentysixteen/1.5/en_GB.zip\";s:10:\"autoupdate\";b:1;}}}','no'),(119,'_site_transient_timeout_browser_d69733fbb4e92f2d08a65e157dbdedf2','1537420761','no'),(120,'_site_transient_browser_d69733fbb4e92f2d08a65e157dbdedf2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"68.0.3440.106\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(121,'can_compress_scripts','0','no'),(122,'_site_transient_timeout_community-events-2eef883554c6a8b141bb80b5a73a1a02','1536859165','no'),(123,'_site_transient_community-events-2eef883554c6a8b141bb80b5a73a1a02','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.23.0.0\";}s:6:\"events\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:111:\"WordPress Meetup #22: ใ€Œ้ปž่ฎšๆˆ้‡‘ใ€- ๅฆ‚ไฝ•้ Like่ณบๅ–ๆ”ถๅ…ฅ & Banner ไฝ็ฝฎๅ„ชๅŒ– (Cantonese ๅปฃๆฑ่ฉฑ)\";s:3:\"url\";s:67:\"https://www.meetup.com/Hong-Kong-WordPress-Meetup/events/254113246/\";s:6:\"meetup\";s:26:\"Hong Kong WordPress Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/Hong-Kong-WordPress-Meetup/\";s:4:\"date\";s:19:\"2018-09-11 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Kowloon, Hong Kong\";s:7:\"country\";s:2:\"hk\";s:8:\"latitude\";d:22.309956;s:9:\"longitude\";d:114.221725;}}}}','no'),(124,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1536859166','no'),(125,'_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: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: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:34:\"\n Mon, 03 Sep 2018 11:00: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:\"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:40:\"https://wordpress.org/?v=5.0-alpha-43635\";s: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: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:35:\"The Month in WordPress: August 2018\";s: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:70:\"https://wordpress.org/news/2018/09/the-month-in-wordpress-august-2018/\";s: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, 03 Sep 2018 11:00: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=6191\";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:355:\"Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services, and documentation surrounding it. Read on to find out more about this ongoing project, as well as everything else that has been happening around the WordPress community in August. WordPress 4.9.8 is Released WordPress 4.9.8 was [&#8230;]\";s: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:5554:\"<p>Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services, and documentation surrounding it. Read on to find out more about this ongoing project, as well as everything else that has been happening around the WordPress community in August.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.8 is Released</h2>\n\n<p><a href=\"https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\">WordPress 4.9.8 was released</a> at the beginning of the month. While this was a maintenance release fixing 46 bugs, it was significant for Core development because it made a point of highlighting Gutenberg โ€” the new WordPress editor that is currently in development (more on that below).<br /></p>\n\n<p>This release also included some important updates to the privacy tools that were added to Core earlier this year.<br /></p>\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 the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>New WordPress Editor Development Continues</h2>\n\n<p>Active development continues on <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new editing experience for WordPress Core. <a href=\"https://make.wordpress.org/core/2018/08/31/whats-new-in-gutenberg-31st-august/\">The latest version</a> features a number of important user experience improvements, including a new unified toolbar and support for a more focussed writing mode.<br /></p>\n\n<p>Users can test Gutenberg right now by installing <a href=\"https://wordpress.org/plugins/gutenberg/\">the plugin</a>, which currently has nearly 300,000 active installs. Along with that, <a href=\"https://wordpress.org/gutenberg/handbook/reference/faq/\">the Gutenberg Handbook</a> has some very useful information about how to use and develop for the new editor.<br /></p>\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/tag/gutenberg/\">the #gutenberg tag on the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Planning Begins for the Next Global WordPress Translation Day</h2>\n\n<p>The Global WordPress Translation Day is a 24-hour event held online and all across the world. It is designed to bring communities together to translate WordPress into their local languages, and to help them connect with other communities doing the same thing.<br /></p>\n\n<p>There have been three Translation Days since April 2016, and <a href=\"https://make.wordpress.org/polyglots/2018/08/29/global-wordpress-translation-day-4-preliminary-planning/\">the fourth edition is in the planning stages now</a>. The Polyglots team, who organizes these events, is currently looking for input on the date, format, and content for the event and would love some feedback from the community.<br /></p>\n\n<p>Want to get involved in translating WordPress into your own language? Follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.<br /></p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul><li><a href=\"https://wordpress.org/support/upgrade-php/\">The Update PHP page on WordPress.org</a> has been revised and improved to make the reasons for upgrading more clear.</li><li>The Mobile team is looking for people to help test the latest versions of the <a href=\"https://make.wordpress.org/mobile/2018/08/29/call-for-testing-wordpress-for-android-10-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/08/28/call-for-testing-wordpress-for-ios-10-8/\">iOS</a> apps for WordPress.</li><li><a href=\"https://wordbits.io/\">WordBits</a> is a innovative new platform for publishing WordPress-based code snippets with the ability to download each snippet as a working plugin.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2018/08/27/wordcamp-incubator-2018-update-thread-august-edition/\">has some updates</a> about how things are going with this yearโ€™s WordCamp Incubator program.</li><li>The WordPress Support Forums <a href=\"https://make.wordpress.org/support/2018/08/august-16th-support-team-meeting-summary/\">now include a feature</a> allowing forum volunteers to easily report a post to the moderators for a follow-up.</li><li>WordCamp Kochi, India <a href=\"https://2018.kochi.wordcamp.org/wordcamp-kochi-2018-is-postponed-to-november-3rd-2018-saturday/\">has unfortunately had to postpone their event</a> due to floods in the region.</li><li><a href=\"http://www.wpglossary.net/\">WP Glossary</a> is a new site that offers helpful definitions of words that you could encounter when using WordPress.</li><li>A few WordPress community members <a href=\"https://make.wordpress.org/community/2018/08/13/in-the-words-of-the/\">have started a working group</a> to tackle the idea of building diverse WordPress ย communities all across the world.</li><li>A new <a href=\"https://editorblockswp.com/library/\">Gutenberg Block Library</a> is available, listing the details of the many blocks available for the new editor.</li></ul>\n\n<p><em>If you have a story we should consider including 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:\"6191\";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: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:35:\"WordPress 4.9.8 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/08/wordpress-4-9-8-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2018 21:25:41 +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: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=6165\";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:398:\"We are pleased to announce the immediate availability of WordPress 4.9.8.ย  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme. Following are the highlights of what is now available. โ€œTry Gutenbergโ€ callout Most users will now be presented with a notice in their WordPress dashboard. Thisย โ€œTry Gutenbergโ€ [&#8230;]\";s: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:10:\"<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:10398:\"<p>We are pleased to announce the immediate availability of WordPress 4.9.8.ย  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme.</p>\n<p><span style=\"font-weight: 400\">Following are the highlights of what is now available.</span></p>\n<h2>โ€œTry Gutenbergโ€ callout</h2>\n<p><span style=\"font-weight: 400\">Most users will now be presented with a notice in their WordPress dashboard. Thisย </span>โ€œTry Gutenbergโ€ is an opportunity for users to use the Gutenberg block editor before it is released in WordPress 5.0.</p>\n<p><img class=\"alignnone wp-image-6168 size-full\" src=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=632%2C392&#038;ssl=1\" alt=\"\" width=\"632\" height=\"392\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=2528&amp;ssl=1 2528w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=300%2C186&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=768%2C476&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=1024%2C634&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>In WordPress 4.9.8, the callout will be shown to the following users:</p>\n<ul>\n<li>If Gutenbergย <em>is not</em>ย installed or activated, the callout will be shown to Admin users on single sites, and Super Admin users on multisites.</li>\n<li>If Gutenbergย <em>is</em>ย installed and activated, the callout will be shown to Contributor users and above.</li>\n<li>If the Classic Editor plugin is installed and activated, the callout will be hidden for all users.</li>\n</ul>\n<p class=\"entry-title\"><span style=\"font-weight: 400\">You can learn more by readingย ย </span><a href=\"https://make.wordpress.org/core/2018/08/02/try-gutenberg-callout-in-wordpress-4-9-8/\">โ€œTry Gutenbergโ€ Callout in WordPress 4.9.8</a>.</p>\n<h2>Privacy fixes/enhancements</h2>\n<p>This release includes 18 Privacy fixes focused on ensuring consistency and flexibility in the new personal data tools <span style=\"font-weight: 400\">that wereย </span>added in 4.9.6, including:</p>\n<ul>\n<li>The type of request being confirmed is now included in the subject line for all privacy confirmation emails.</li>\n<li>Improved consistency with site name being used for privacy emails in multisite.</li>\n<li>Pagination for Privacy request admin screens can now be adjusted.</li>\n<li>Increased the test coverage for several core privacy functions.</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">This post has more information about all of the issues fixed in 4.9.8 if you&#8217;d like to learn more</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.8</a>ย or venture over to Dashboard โ†’ Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.8:</p>\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/allendav/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1/\"><NAME>aylor</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\"><NAME>ne</a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME>sson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\"><NAME>-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kraftbj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME>ati</a>, <a href=\"https://profiles.wordpress.org/chrislema/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danieltj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dd32/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\"><NAME> (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dontstealmyfish/\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fclaussen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\"><NAME>der</a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/soulseekah/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gm_alex/\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/idea15/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iandunn/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jpry/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME>.</a>, <a href=\"https://profiles.wordpress.org/matveb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/melchoyce/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/dimadin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xpertone/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nao/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\"><NAME>son</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pbiron/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\"><NAME>ha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/rafsuntaskin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/redcastor/\">redcastor</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pross/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/spyderbytes/\">spyderbytes</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karmatosed/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timbowesohft/\">timbowesohft</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tz-media/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/itowhid06/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/usmankhalid/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/earnjam/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6165\";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: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:33:\"The Month in WordPress: July 2018\";s: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/2018/08/the-month-in-wordpress-july-2018/\";s: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, 01 Aug 2018 09:11:02 +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=6158\";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:333:\"With WordPress 5.0 coming closer, thereโ€™s lots of work going on all across the project. Read on to learn about how we progressed in July. Release of WordPress 4.9.7 On July 5, WordPress 4.9.7 was released, ย fixing one security issue and 17 other bugs across the platform. While this is a minor release, incremental fixes [&#8230;]\";s: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:6411:\"<p>With WordPress 5.0 coming closer, thereโ€™s lots of work going on all across the project. Read on to learn about how we progressed in July.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Release of WordPress 4.9.7</h2>\n\n<p>On July 5, <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 was released</a>, ย fixing one security issue and 17 other bugs across the platform.<br /></p>\n\n<p>While this is a minor release, incremental fixes are essential to keep WordPress running smoothly. Everyone is encouraged to update as soon as possible and to make sure that automatic updates are switched on.<br /></p>\n\n<p>Would you like 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 the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The New WordPress Editor</h2>\n\n<p>In the upcoming minor release of WordPress, 4.9.8, a new section in the dashboard will feature Gutenberg, the upcoming content editor for WordPress.<br /></p>\n\n<p>While the official release of Gutenberg <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">is scheduled</a> for the coming months, you can already install it as <a href=\"https://wordpress.org/plugins/gutenberg/\">a plugin</a> to test it out right now. Additionally, <a href=\"https://wordpress.org/gutenberg/\">a brand new demo page</a> is now available โ€” play around with the many features the editor has to offer, without installing it on your own site.<br /></p>\n\n<p>Would you like to help build or test Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Page Design Updates on WordPress.org</h2>\n\n<p>Bit by bit weโ€™re refreshing the design of WordPress.org. The latest pages to get a new treatment have been <a href=\"https://wordpress.org/download/\">the Download page</a> and <a href=\"https://profiles.wordpress.org/matt/\">user profiles</a>.<br /></p>\n\n<p>The Meta and Design teams worked hard to make these new designs a reality, with notable contributions from <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/obenland/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>obenland</a>, <a href=\'https://profiles.wordpress.org/mapk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mapk</a>, and <a href=\'https://profiles.wordpress.org/kjellr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kjellr</a>. The new designs enhance the overall look of the site and provide more relevant information to those searching.<br /></p>\n\n<p>Would you like to get involved in the design refresh? Follow the <a href=\"https://make.wordpress.org/meta/\">Meta</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #meta and #design channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The First WP-CLI Hack Day</h2>\n\n<p>On Friday July 20, the WP-CLI team <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">held their first hack day</a> โ€” a global event encouraging people to contribute to the official command line tool for WordPress.<br /></p>\n\n<p>Run by <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a>, the event <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\">ย was a great success</a>. Twelve pull requests were ย merged and another 13 submitted. It also included a video chat to give all contributors a space to meet each other and connect directly.<br /></p>\n\n<p>Would ย you like to get involved in contributing to WP-CLI? Follow <a href=\"https://make.wordpress.org/cli/\">the team blog</a> and join the #cli channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul><li>The WordPress Foundation is <a href=\"https://wordpressfoundation.org/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">looking for local community organizers to run introductory open-source workshops</a> in 2018.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> compiled <a href=\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\">updates for the last quarter</a> from the contribution teams all across the WordPress project.</li><li>In a great move for internationalization, <a href=\"https://en.blog.wordpress.com/2018/03/29/the-wordpress-mobile-apps-now-support-right-to-left-languages/\">the WordPress Mobile Apps now support right-to-left languages</a>.</li><li><a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\">WordCamp events can now accept payment via Stripe</a> โ€” PayPal remains an alternative option.</li><li>The WP-CLI team will soonย <a href=\"https://make.wordpress.org/cli/2018/07/19/details-on-the-upcoming-major-release/\">release v2.0</a> of the official WordPress command line tool.</li><li>The Fields API project in WordPress Core <a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">is looking for a new lead</a> to drive it forward.</li><li>In WordPress 4.9.8, <a href=\"https://make.wordpress.org/core/2018/07/27/registering-metadata-in-4-9-8/\">it will ย be possible</a> for developers to fully register the meta fields used by their plugins and themes.</li><li>After many years of hard work, <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">v1.0.0 of the WordPress Coding Standards for PHP_CodeSniffer</a> has been released.</li><li>The Mobile team <a href=\"https://make.wordpress.org/mobile/2018/07/31/call-for-testing-wordpress-for-ios-10-6/\">is looking for people to help test</a> v10.6 of WordPress for iOS.</li></ul>\n\n<p><em>If you have a story we should consider including 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:\"6158\";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:27:\"Quarterly Updates | Q2 2018\";s: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:61:\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\";s: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, 16 Jul 2018 14:50: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:7:\"General\";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:7:\"Updates\";s: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=6140\";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:347:\"To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s listed representatives. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to [&#8230;]\";s: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:7:\"Josepha\";s: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:15622:\"<p><em>To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s <a href=\"https://make.wordpress.org/updates/team-reps/\">listed representatives</a>. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to each team&#8217;s site in the headings.๏ปฟ</em></p>\n\n<h2><a href=\"https://make.wordpress.org/accessibility/\">Accessibility</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/rianrietveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rianrietveld</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a>, <a href=\'https://profiles.wordpress.org/afercia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>afercia</a></li>\n <li><strong>Priority</strong>: Working to make sure that Gutenberg is reasonably accessible prior to merge. ETA is before 5.0</li>\n <li><strong>Struggle</strong>:ย Lack of developers and accessibility experts to help test and code the milestone issues.ย <em>The team is doing outreach to help solve this problem.</em></li>\n <li><strong>Big Win</strong>:ย Interest from companies like The Paciello Group and Tenon.io to help out with Gutenberg code review and testing tools.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/cli/\">CLI</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>:ย @danielbachhuber, <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a></li>\n <li><strong>Priority</strong>: Very first global <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">Hack Day</a> is coming up July 20. Version 2.0.0 is still in progress (newย <a href=\"https://github.com/wp-cli/wp-cli/issues/4752\">ETA</a> is end of July).</li>\n <li><strong>Struggle</strong>: The team continues to need new contributors. The current team is tiny but tough.</li>\n <li><strong>Big Win</strong>: WP-CLI is currently one of the project&#8217;s four main focuses, as mentioned in the Summer Update at WordCamp Europe.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/community/\">Community</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/francina/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>francina</a>, <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a></li>\n <li><strong>Priority</strong>:ย Focusing on smoothing out the processes in our community management by building up our team of volunteers and establishing what tools we need to keep things running well. ETA is ongoing.</li>\n <li><strong>Struggle</strong>:ย Our two biggest struggles at the moment are tracking what we need to get done, and making final decisions on things. <em>There is current work on the tools available to assist with tracking progress.๏ปฟ</em></li>\n <li><strong>Big Win</strong>:ย After making a concerted effort to get more contributors on the Community Team, we now have a much larger group of volunteers working as deputies and WordCamp mentors</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/core/\">Core</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></li>\n <li><strong>Priority</strong>: Following the <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">WordCamp Europe summer update</a>ย ๏ปฟ(and the companion post <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">here</a>), the team is getting Gutenberg (the new WordPress editing experience) into a strong state for the 5.0 release. Potential ETA as soon as August.</li>\n <li><strong>Struggle</strong>: Coordinating momentum and direction as we start seeing more contributors offering their time. Still working our way through open issues.ย <em>๏ปฟThe team is starting multiple bug scrubs each week to work through these more quickly and transparently.</em></li>\n <li><strong>Big Win</strong>: Had a <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">sizable release in 4.9.6</a> which featured major updates around privacy tools and functionality in Core.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/design/\">Design</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/karmatosed/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>karmatosed</a>, <a href=\'https://profiles.wordpress.org/boemedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boemedia</a>, <a href=\'https://profiles.wordpress.org/joshuawold/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joshuawold</a>, <a href=\'https://profiles.wordpress.org/mizejewski/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mizejewski</a></li>\n <li><strong>Priority</strong>: Better on-boarding of new contributors, especially creating better documentation. ETA is end of July.</li>\n <li><strong>Struggle</strong>:ย It&#8217;s hard to identify reasonably small tasks for first-time contributors.</li>\n <li><strong>Big Win</strong>:ย The team is much more organized now which has helped clear out the design backlog, bring in new contributors, and also keep current contributors coming back. <em>Bonus: <NAME> will co-lead the upcoming release.</em></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/docs/\">Documentation</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/kenshino/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kenshino</a><br /></li>\n <li><strong>Priority</strong>: Opening up the work on <a href=\"https://make.wordpress.org/docs/2018/02/26/state-of-helphub-february-2018/\">HelpHub</a>ย to new contributors and easing the onboarding process. No ETA.<br /></li>\n <li><strong>Struggle</strong>: Some blockers with making sure the code and database can be ready to launch onย https://wordpress.org/support/<br /></li>\n <li><strong>Big Win</strong>: The <a href=\"https://wp-helphub.com/\">first phase of HelpHub</a> creation is complete, which means content updates (current info, more readable, easier discovery), internal search, design improvements, and REST API endpoints.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/hosting/\">Hosting</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/mikeschroder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mikeschroder</a>, <a href=\'https://profiles.wordpress.org/jadonn/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jadonn</a></li>\n <li><strong>Priority</strong>:ย Preparing hosts for supporting Gutenberg, especially support questions they&#8217;re likely to see when the &#8220;Try Gutenberg&#8221; callout is released. ETA July 31st, then before WordPress 5.0<br /><strong></strong></li>\n <li><strong>Struggle</strong>:ย Most contributions are still made a by a small team of volunteers. Seeing a few more people join, but progress is slow.<br /><strong></strong></li>\n <li><strong>๏ปฟBig Win</strong>:ย New team members and hosting companies have joined the #hosting-community team and have started contributing.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/marketing/\">Marketing</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bridgetwillard/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bridgetwillard</a></li>\n <li><strong>Priority</strong>:ย Continuing to write and publish case studies from the community. ETA is ongoing.</li>\n <li><strong>Struggle</strong>:ย No current team struggles.</li>\n <li><strong>Big Win</strong>:ย Wrote and designed a short <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">Contributor Day onboarding card</a>. It was used at Contributor Day at WCEU and onboarding time went down to 1 hour instead of 3 hours.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/meta/\">Meta</a> (WordPress.org Site)</h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/tellyworth/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tellyworth</a>, <a href=\'https://profiles.wordpress.org/coffee2code/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>coffee2code</a></li>\n <li><strong>Priority</strong>:ย Reducing manual work around the contributor space (theme review, GDPR/privacy, plugin review). ETA for small wins is end of quarter, larger efforts after that.</li>\n <li><strong>Struggle</strong>:ย Maintaining momentum on tickets.ย <em>There are also some discussions about updating the ticket management process across teams that use the Meta trac system.</em></li>\n <li><strong>Big Win</strong>:ย The new About page launched and has been translated across most locale sites.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/mobile/\">Mobile</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/elibud/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>elibud</a></li>\n <li><strong>Priority</strong>:ย Getting Gutenberg in the mobile applications. ETA is late December.</li>\n <li><strong>Struggle</strong>:ย Consuming the Gutenberg source in the ReactNative app directly. <em>More info can be found here:ย https://make.wordpress.org/mobile/2018/07/09/next-steps-for-gutenberg-mobile/</em></li>\n <li><strong>Big Win</strong>:ย The WordPress mobile applications now fully support right-to-left languages and are compliant with the latest standards for accessibility.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/plugins/\">Plugins</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/ipstenu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ipstenu</a></li>\n <li><strong>Priority</strong>: Clearing ~8,000 unused plugins from the queues. Likely ETA is September.<br /></li>\n <li><strong>Struggles</strong>: Had to triage a lot of false claims around plugins offering GDPR compliance.</li>\n <li><strong>Big Win</strong>: Released 4.9.6 and <a href=\"https://make.wordpress.org/plugins/2018/05/17/wp-4-9-6-privacy-hooks-and-you/\">updated expectations</a> with plugin authors. Huge thanks to the Core Privacy team for their hard work on this.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/polyglots/\">Polyglots</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/petya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>petya</a>, <a href=\'https://profiles.wordpress.org/ocean90/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ocean90</a>, <a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a>, <a href=\'https://profiles.wordpress.org/chantalc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chantalc</a>, <a href=\'https://profiles.wordpress.org/deconf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deconf</a>, <a href=\'https://profiles.wordpress.org/casiepa/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>casiepa</a></li>\n <li><strong>Priority</strong>: Keep WordPress releases translated to 100% and then concentrate on the top 100 plugins and themes. ETA is ongoing.<br /><strong></strong></li>\n <li><strong>๏ปฟStruggle</strong>: Getting new PTEs fast enough, and complex tools/systems. Overall, the volume of strings awaiting approval.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/support/\">Support</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/clorith/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>clorith</a></li>\n <li><strong>Priority:</strong>ย Getting ready for the Gutenberg callout (it got pushed last quarter). Needing a better presence on the official support forums, and outreach for that is underway, ETA end of July.ย <br /></li>\n <li><strong>Struggle</strong>: Keeping contributors participating post-contributor days/drives.ย <em>๏ปฟConsidering the creation of a dedicated post-contributor day survey to get some insight here.</em></li>\n <li><strong>Big Win</strong>:ย The increase in international liaisons joining for weekly meetings, helping bring the wider support community together.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/themes/\">Theme Review</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/acosmin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>acosmin</a>, <a href=\'https://profiles.wordpress.org/rabmalin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rabmalin</a>, <a href=\'https://profiles.wordpress.org/thinkupthemes/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thinkupthemes</a>, <a href=\'https://profiles.wordpress.org/williampatton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>williampatton</a></li>\n <li><strong>Priority</strong>:ย Building a better Theme Check/Sniffer in order to automate most of the checks done right now by reviewers. ETA late 2018, early 2019.</li>\n <li><strong>Struggle</strong>:ย Bringing in new contributors to the team.</li>\n <li><strong>Big Win</strong>:ย <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">Trusted Authors program๏ปฟ</a></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/tide/\">Tide</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/valendesigns/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>valendesigns</a> (but usually <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>)</li>\n <li><strong>Priority</strong>: Storing PHPCompatibilty results inside the WordPress.org API and building a UI to display those results, an endpoint to request an audit is required for this work to continue.</li>\n <li><strong>Struggle</strong>: Development has dramatically slowed down while team members are on leave or pulled into internal client work.</li>\n <li><strong>Big Win</strong>:ย Migration to Google Cloud Platform (GCP) from Amazon Web Services (AWS) is complete and the audit servers have all been rewritten in Go. (This allows us to be faster with greater capacity and less cost.)</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/training/\">Training</a></h2>\n\n<ul>\n <li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bethsoderberg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bethsoderberg</a>, <a href=\'https://profiles.wordpress.org/juliek/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>juliek</a></li>\n <li><strong>Priority:</strong>ย Lesson plan production. ETA is ongoing.</li>\n <li><strong>Struggle:</strong>ย The workflow is a little complex, so recruiting and training enough contributors to keep the process moving is a struggle.</li>\n <li><strong>Big Win</strong>:ย WordCamp Europe&#8217;s Contributor Day was very productive. New tools/workflow are in place and two team representatives were there to lead and help.</li>\n</ul>\n\n<p><em>Interested in updates from the first quarter of this year? You can find those here: <a href=\"https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/\"><em>https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/</em></a>\n </em>\n</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:\"6140\";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: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:19:\"Update on Gutenberg\";s: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://wordpress.org/news/2018/07/update-on-gutenberg/\";s: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, 06 Jul 2018 19:23:23 +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:5:\"Focus\";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:\"Gutenberg\";s: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=6118\";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:328:\"Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. [&#8230;]\";s: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:\"Tammie Lister\";s: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:2261:\"<p>Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. As the work on phase one moves into its final stretch, here is what you can expect.<br /></p>\n\n<h4>In Progress</h4>\n\n<ul>\n <li>Freeze new features in Gutenberg (the feature list can be found <a href=\"https://github.com/WordPress/gutenberg/issues/4894\">here</a>).</li>\n <li>Hosts, agencies, teachers invited to opt-in sites they have influence over.</li>\n <li>WordPress.com has opt-in for wp-admin users. The number of sites and posts will be tracked.</li>\n <li>Mobile app support for Gutenberg will be across iOS and Android.</li>\n</ul>\n\n<h4>July</h4>\n\n<ul>\n <li>4.9.x release with an invitation to install either Gutenberg or Classic Editor plugin.</li>\n <li>WordPress.com will move to opt-out. There will be tracking to see who opts out and why.</li>\n <li>Triage increases and bug gardening escalates to get blockers in Gutenberg down to zero.</li>\n <li>Gutenberg phase two, Customization exploration begins by moving beyond the post.</li>\n</ul>\n\n<h4>August and beyond</h4>\n\n<ul>\n <li>All critical issues within Gutenberg are resolved.</li>\n <li>There is full integration with Calypso and there is opt-in for users there.</li>\n <li>A goal will be 100k+ sites having made 250k+ posts using Gutenberg.</li>\n <li>Core merge of Gutenberg begins the 5.0 release cycle.</li>\n <li>5.0 moves into beta releases and translations are completed.</li>\n <li>There will be a mobile version of Gutenberg by the end of the year.</li>\n</ul>\n\n<p>WordPress 5.0 could be as soon as August with hundreds of thousands of sites using Gutenberg before release. Learn more about Gutenberg <a href=\"https://wordpress.org/gutenberg/\">here</a>, take it for a <a href=\"https://testgutenberg.com/\">test drive</a>, <a href=\"https://wordpress.org/plugins/gutenberg/\">install</a> on your site, follow along on <a href=\"https://github.com/WordPress/gutenberg\">GitHub</a> and give your <a href=\"https://wordpressdotorg.polldaddy.com/s/gutenberg-support\">feedback</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:\"6118\";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:48:\"WordPress 4.9.7 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/07/wordpress-4-9-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Jul 2018 17:00: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: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=6091\";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:\"WordPress 4.9.7 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads [&#8230;]\";s: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:17:\"<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:3984:\"<p>WordPress 4.9.7 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads directory.</p>\n\n<p>Thank you to <a href=\"https://hackerone.com/slavco\">Slavco</a> for reporting the original issue and <a href=\"https://www.wordfence.com/\"><NAME></a> for reporting related issues.</p>\n\n<p>Seventeen other bugs were fixed in WordPress 4.9.7. Particularly of note were:</p>\n\n<ul>\n <li>Taxonomy: Improve cache handling for term queries.</li>\n <li>Posts, Post Types: Clear post password cookie when logging out.</li>\n <li>Widgets: Allow basic HTML tags in sidebar descriptions on Widgets admin screen.</li>\n <li>Community Events Dashboard: Always show the nearest WordCamp if one is coming up, even if there are multiple Meetups happening first.</li>\n <li>Privacy: Make sure default privacy policy content does not cause a fatal error when flushing rewrite rules outside of the admin context.</li>\n</ul>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.7</a> or venture over to Dashboard โ†’ Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>The previously scheduled 4.9.7 is now referred to as 4.9.8, and will follow the <a href=\"https://make.wordpress.org/core/2018/07/04/dev-chat-summary-july-4th-4-9-7-week-7/\">release schedule posted yesterday</a>.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.7:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME> (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kraftbj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</a>, <a href=\"https://profiles.wordpress.org/iandunn/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6091\";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: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:33:\"The Month in WordPress: June 2018\";s: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/2018/07/the-month-in-wordpress-june-2018/\";s: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, 02 Jul 2018 09:28:08 +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=6087\";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:\"With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, thereโ€™s no shortage of news. Learn more about what happened in the WordPress community in June. Another Successful WordCamp Europe On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. [&#8230;]\";s: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:4627:\"<p>With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, thereโ€™s no shortage of news. Learn more about what happened in the WordPress community in June.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Another Successful WordCamp Europe</h2>\n\n<p>On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. Over 2,000 people attended in person, with hundreds more watching live streams of the sessions.</p>\n\n<p>The WordCamp was a great success with plenty of first-time attendees and new WordPress contributors getting involved in the project and community. Recorded sessions from the 65 speakers at the event will be available on WordPress.tv in the coming weeks. In the meantime, check out the <a href=\"https://www.flickr.com/photos/wceu/albums\">photos from the event</a>.</p>\n\n<p><a href=\"https://2018.europe.wordcamp.org/2018/06/16/wordcamp-europe-2019/\">The next WordCamp Europe</a> takes place on June 20-22 2019 in Berlin, Germany. If youโ€™re based in Europe and would like to serve on the organizing team, <a href=\"https://2019.europe.wordcamp.org/2018/06/16/call-wordcamp-europe-2019-organizers/\">fill in the application form</a>.</p>\n\n<h2>Updated Roadmap for the New WordPress Content Editor</h2>\n\n<p>During his keynote session at WordCamp Europe, <NAME> presented <a href=\"https://gutenbergtimes.com/mullenweg-on-gutenberg-roll-out-plan/\">an updated roadmap</a> for <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new content editor coming in WordPress 5.0.</p>\n\n<p>While the editor is in rapid development, <a href=\"https://make.wordpress.org/core/2018/06/21/whats-new-in-gutenberg-21st-june/\">with v3.1 being released this past month</a>, the team is aiming to ship Gutenberg with WordPress Core in August, 2018. This is not set in stone โ€” the release date may shift as development progresses โ€” but this gives the first realistic idea of when we can expect the editor to be released.</p>\n\n<p>If you would like to contribute to Gutenberg, read <a href=\"https://wordpress.org/gutenberg/handbook/\">the handbook</a>, follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>WordCamp Incubator Cities Announced</h2>\n\n<p>The WordCamp Incubator program helps spread WordPress to underserved communities by providing organizing support for their first WordCamp. The first iteration of this program ran successfully in 2016 and empowered three cities to start their own WordPress communities.</p>\n\n<p>This year, the Community Team is running the Incubator program again. After receiving applications from 104 communities, <a href=\"https://make.wordpress.org/community/2018/06/26/wordcamp-incubator-program-2018-locations-announcement/\">they have selected</a> Montevideo, Uruguay and Kota Kinabalu, Malaysia to participate in the program. Both cities will receive direct help from experienced WordCamp organizers to run their first-ever WordCamp as a way to help their WordPress community get started.</p>\n\n<p>To find out more about the Incubator program follow the <a href=\"https://make.wordpress.org/community/\">Community team blog</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>The WordPress community of Spain recently <a href=\"https://twitter.com/wp_es/status/1004681694660603904\">received an award</a> for being the best open-source community in the country.</li>\n <li>This month, WordPress reached <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">the milestone of powering 31% of websites</a>.</li>\n <li><a href=\"https://wprig.io/introducing-wprig-wordpress/\">WP Rig</a> is a brand new tool to help WordPress developers build better themes.</li>\n <li><a href=\"https://richtabor.com/gutenberg-block-unit-test/\">Block Unit Test</a> is a new plugin to help theme developers prepare for Gutenberg.</li>\n <li>Near the end of the month, <NAME> hosted <a href=\"https://javascriptforwp.com/conference/\">an online conference</a> focused on JavaScript development in WordPress &#8211; the session videos will be available on YouTube soon.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next โ€œMonth in WordPressโ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:\"6087\";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:32:\"The Month in WordPress: May 2018\";s: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/2018/06/the-month-in-wordpress-may-2018/\";s: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, 01 Jun 2018 09:09: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: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=6065\";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:\"This month saw two significant milestones in the WordPress community โ€” the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May. Local Communities Celebrate the 15th Anniversary of WordPress Last Sunday, May [&#8230;]\";s: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:4537:\"<p>This month saw two significant milestones in the WordPress community โ€” the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Local Communities Celebrate the 15th Anniversary of WordPress</h2>\n\n<p>Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, <a href=\"https://wp15.wordpress.net/\">WordPress communities across the world gathered</a> for parties and meetups in honor of the milestone.</p>\n\n<p>Altogether, there were 224 events globally, with <a href=\"https://wp15.wordpress.net/about/\">a few more of those still scheduled</a> to take place in some communities โ€” attend one in your area if you can.</p>\n\n<p>If your city doesnโ€™t have a WordPress meetup group, this is a great opportunity to start one! Learn how with <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the Meetup Organizer Handbook</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Privacy Tools added to WordPress core</h2>\n\n<p>In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">in the v4.9.6 release</a>, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant โ€” this is still a site ownerโ€™s responsibility.</p>\n\n<p>The new privacy tools include a number of features focused on providing privacy and personal data management to all site users โ€” asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce.</p>\n\n<p>To find out more about these features and the other updates, read the <a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">4.9.6 update guide</a>. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n<h2>Updates to the WordPress.org Privacy Policy</h2>\n\n<p>In a similar vein, WordPress.org itself has received <a href=\"https://wordpress.org/about/privacy/\">an updated Privacy Policy</a> to make clear what is being tracked and how your data is handled. Along with that, a <a href=\"https://wordpress.org/about/privacy/cookies/\">Cookie Policy</a> has also been added to explain just what is collected and stored in your browser when using the site.</p>\n\n<p>These policies cover all sites on the WordPress.org network โ€” including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. Itโ€™s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>WordCamp US 2018 has <a href=\"https://2018.us.wordcamp.org/2018/05/29/speak-at-wordcamp-us/\">opened up speaker submissions</a> for the December event.</li>\n <li><a href=\"https://2018.europe.wordcamp.org/2018/05/15/wceu-live-stream-tickets/\">Live stream tickets are now available for WordCamp Europe</a>, happening on June 14-16.</li>\n <li>Gutenberg, the new editor for WordPress Core, is getting ever closer to the final stages with <a href=\"https://make.wordpress.org/core/2018/05/18/whats-new-in-gutenberg-18th-may/\">a major update</a> this month.</li>\n <li>In preparation for Gutenberg, <a href=\"https://core.trac.wordpress.org/changeset/43309\">significant work has been done</a> to improve WordPress Coreโ€™s build process.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next โ€œMonth in WordPressโ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:\"6065\";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:36:\"WordPress.org Privacy Policy Updates\";s: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:72:\"https://wordpress.org/news/2018/05/wordpress-org-privacy-policy-updates/\";s: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, 25 May 2018 08:06: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";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:7:\"privacy\";s: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=6047\";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:325:\"The WordPress.org privacy policy has been updated, hurray! While we weren&#8217;t able to remove all the long sentences, we hope you find the revisions make it easier to understand: how we collect and use data, how long the data we collect is retained, and how you can request a copy of the data you&#8217;ve shared [&#8230;]\";s: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:657:\"<p>The <a href=\"https://wordpress.org/about/privacy/\">WordPress.org privacy policy</a> has been updated, hurray! While we weren&#8217;t able to remove <strong>all</strong> the long sentences, we hope you find the revisions make it easier to understand:</p>\n<ul>\n<li>how we collect and use data,</li>\n<li>how long the data we collect is retained, and</li>\n<li>how you can request a copy of the data you&#8217;ve shared with us.</li>\n</ul>\n<p>There hasn&#8217;t been any change to the data that WordPress.org collects or how that data is used; the privacy policy just provides more detail now. Happy reading, and thanks for using WordPress!</p>\n<p>&nbsp;</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:\"6047\";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: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:47:\"WordPress 4.9.6 Privacy 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 May 2018 19:21:22 +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: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=5920\";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:358:\"WordPress 4.9.6 is now available. This is a privacy and maintenance release. We encourage you to update your sites to take advantage of the new privacy features. Privacy The European Union&#8217;s General Data Protection Regulation (GDPR) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, [&#8230;]\";s: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:11:\"<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:13399:\"<p>WordPress 4.9.6 is now available. This is a <strong>privacy and maintenance release</strong>. We encourage you to update your sites to take advantage of the new privacy features.</p>\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=632&#038;ssl=1\" alt=\"A decorative header featuring the text &quot;GDPR&quot; and a lock inside of a blue shield, on multicolor green background.\" class=\"wp-image-5988\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=1024%2C512&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<h2 style=\"text-align:left\">Privacy</h2>\n\n<p>The European Union&#8217;s General Data Protection Regulation (<strong>GDPR</strong>) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, use, and share personal data. It also gives individuals more access and choice when it comes to how their own personal data is collected, used, and shared.<br /></p>\n\n<p>Itโ€™s important to understand that while the GDPR is a European regulation, its requirements apply to all sites and online businesses that collect, store, and process personal data about EU residents no matter where the business is located.<br /></p>\n\n<p>You can learn more about the GDPR from the European Commission&#8217;s <a href=\"http://ec.europa.eu/justice/smedataprotect/index_en.htm\">Data Protection page</a>.<br /></p>\n\n<p>We&#8217;re committed to supporting site owners around the world in their work to comply with this important law. As part of that effort, weโ€™ve added a number of new privacy features in this release.</p>\n\n<h2 style=\"text-align:left\">Comments</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=632&#038;ssl=1\" alt=\"A screenshot of a comment form, where the new &quot;Save my name, email, and website in this browser for the next time I comment&quot; checkbox is featured.\" class=\"wp-image-5986\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=300%2C291&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=768%2C744&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=1024%2C992&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Logged-out commenters will be given a choice on whether their name, email address, and website are saved in a cookie on their browser.</p>\n\n<h2 style=\"text-align:left\">Privacy Policy Page</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Privacy Settings page.\" class=\"wp-image-5995\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1898&amp;ssl=1 1898w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=768%2C453&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=1024%2C604&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Site owners can now designate a privacy policy page. This page will be shown on your login and registration pages. You should manually add a link to your policy to every page on your website. If you have a footer menu, thatโ€™s a great place to include your privacy policy.<br /></p>\n\n<p>In addition, weโ€™ve created a guide that includes insights from WordPress and participating plugins on how they handle personal data. These insights can be copied and pasted into your site&#8217;s privacy policy to help you get started.<br /></p>\n\n<p>If you maintain a plugin that collects data, we recommend including that information in WordPressโ€™ privacy policy guide. <a href=\"https://developer.wordpress.org/plugins/privacy/\">Learn more in our Privacy section of the Plugin Handbook</a>.</p>\n\n<h2 style=\"text-align:left\">Data Handling</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Export Personal Data tools page. Several export requests are listed on the page, to demonstrate how the new feature will work.\" class=\"wp-image-5999\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=2372&amp;ssl=1 2372w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=300%2C221&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=768%2C565&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=1024%2C753&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<div class=\"wp-block-columns has-2-columns\">\n <h3 class=\"layout-column-1\">Data Export</h3>\n \n <p class=\"layout-column-1\">Site owners can export a ZIP file containing a user&#8217;s personal data, using data gathered by WordPress and participating plugins.</p>\n \n <h3 class=\"layout-column-2\">Data Erasure</h3>\n \n <p class=\"layout-column-2\">Site owners can erase a user&#8217;s personal data, including data collected by participating plugins.</p>\n </div>\n\n<blockquote class=\"wp-block-quote\">\n <p>Howdy,</p>\n <p>A request has been made to perform the following action on your account:<br /> </p>\n <p><strong>Export Personal Data</strong><br /> </p>\n <p>To confirm this, please click on the following link:<br /><a href=\"#\">http://.wordpress.org/wp-login.php?action=confirmaction&#8230;</a><br /> </p>\n <p>You can safely ignore and delete this email if you do not want to<br /> take this action.<br /> </p>\n <p>This email has been sent to <a href=\"#\"><EMAIL></a>.<br /> </p>\n <p>Regards,<br /><em>Your friends at WordPress</em><br /><a href=\"http://wordpress.org\"><em> http://wordpress.org</em></a></p>\n</blockquote>\n\n<p>Site owners have a new email-based method that they can use to confirm personal data requests. This request confirmation tool works for both export and erasure requests, and for both registered users and commenters.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2 style=\"text-align:left\">Maintenance</h2>\n\n<p>95 updates were made in WordPress 4.9.6. In addition to the above, particularly of note were:<br /></p>\n\n<ul>\n <li>&#8220;Mine&#8221; has been added as a filter in the media library.</li>\n <li>When viewing a plugin in the admin, it will now tell you the minimum PHP version required.</li>\n <li>We&#8217;ve added new PHP polyfills for forwards-compatibility and proper variable validation.</li>\n <li>TinyMCE was updated to the latest version (4.7.11).<br /></li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">This post has more information about all of the issues fixed in 4.9.6 if you&#8217;d like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.6</a> or venture over to Dashboard โ†’ Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates will start updating soon.<br /></p>\n\n<p class=\"has-background has-very-light-gray-background-color\">Please note that if youโ€™re currently on WordPress 4.9.3, you should manually update your site immediately.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>Thank you to everyone who contributed to WordPress 4.9.6:<br /><a href=\"https://profiles.wordpress.org/aaroncampbell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/schlessera/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/allendav/\">allendav</a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME> (birgire)</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes/\">Burlington Bytes</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/claudiu/\">claudiu</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\"><NAME> (ocean90)</a>, <a href=\"https://profiles.wordpress.org/iseulde/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ericdaams/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fclaussen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/idea15/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/helen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jesperher/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/dejliglama/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME>.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mnelson4/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikejolley/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/casiepa/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pbarthmaier/\">pbrocks</a>, <a href=\"https://profiles.wordpress.org/postphotos/\">postphotos</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/satollo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/stephdau/\"><NAME> (stephdau)</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/teddytime/\">teddytime</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">thomasplevy</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tz-media/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tjnowell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/itowhid06/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/voneff/\">voneff</a>, <a href=\"https://profiles.wordpress.org/earnjam/\"><NAME></a>, and <a href=\"https://profiles.wordpress.org/xkon/\">Xenos (xkon) Konstantinos</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:\"5920\";s: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:\"Thu, 13 Sep 2018 05:19:25 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:\"Mon, 03 Sep 2018 11:00:43 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 2\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(126,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1536859166','no'),(127,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1536815966','no'),(128,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1536859168','no'),(129,'_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:37:\"Post Status: WordPress and Blockchain\";s: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:31:\"https://poststatus.com/?p=47409\";s: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:48:\"https://poststatus.com/wordpress-and-blockchain/\";s: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:5236:\"<p>WordPress is one of the driving forces and great success stories of the open web to date. As an open source platform, it&#8217;s become a dominant CMS used by 30% of the web to publish content &#8212; on websites large and small.</p>\n<p>WordPress has grown up in an era of evolving challenges: ushering in web standards, adapting for publishing and viewing on all device sizes; building for accessibility by all; establishing its place in the era of expansive and centralized social media platforms; and more.</p>\n<p>Today, weโ€™re faced with a new generation of technologies coming down the pipe, ready to disrupt the current ecosystem. These technologies include blockchain, artificial intelligence, augmented reality, the internet of things, and more I&#8217;m sure. Itโ€™s the first of these that is the focus of this post and the following conversation.</p>\n<p>I was approached by <NAME> of <a href=\"https://pragmatic.agency/\">Pragmatic</a> to discuss how WordPress and blockchain technology may fit together, and how they may not. David and I have both been interested in the cryptocurrency and blockchain space over the past couple of years, and have over time encountered a lot of projects that aim to disrupt or enhance various elements of the web: from DNS to CMS.</p>\n<p>David gathered a group of people for an initial online, open, honest conversation about how WordPress could be impacted, disrupted or take advantage of distributed ledger and blockchain technologies.</p>\n<p>Examples include:</p>\n<ul>\n<li>Blockchain platforms impacting peopleโ€™s choice to use WordPress e.g. <a href=\"https://steemit.com/\">Steemit</a></li>\n<li>Blockchain projects impacting people already using WordPress e.g. <a href=\"https://www.basicattentiontoken.org/\">Basic Attention Token</a> or <a href=\"https://www.po.et/\">Po.et</a>, <a href=\"https://vip.wordpress.com/2018/07/11/client-spotlight-civil/\">Civil</a></li>\n<li>Cryptocurrenciesโ€™ impact on eCommerce and the wider ecosystem, e.g. the Coinbase Commerce merchant gateway</li>\n<li>What we can learn from blockchain projectsโ€™ governance systems and lessons learned</li>\n<li>Ideas for improving security, integrations, etc</li>\n<li>Various identity-based projects</li>\n<li>New environments which may be used to run WordPress, such as decentralized web technologies e.g. <a href=\"https://substratum.net/\">Substratumย </a>ย orย <a href=\"https://www.maidsafe.net/\">MaidSafe</a>.</li>\n<li>Impact on the talent pool for WordPress professionals</li>\n<li>General <a href=\"https://speakerdeck.com/dcent/wordpress-and-blockchain-threats-and-opportunities\">threats and opportunities</a></li>\n<li>Discussion of anything new, interesting and relevant in the blockchain/cryptocurrency space</li>\n<li>All of the above as it relates to open source and the web generally, outside of WordPress</li>\n</ul>\n<p>Our aim for the initial conversation, as well as future conversations <strong>is not</strong> to advocate specifically for any existing project or to necessarily endorse blockchain as appropriate for WordPress to somehow integrate in any way. It&#8217;s to explore what&#8217;s out there now, how it could impact WordPress today and in the future, and down the road perhaps how WordPress take advantage of potential opportunities. We are approaching this like a discovery phase &#8212; not to get overly excited, but to be informed. And we welcome participants in this conversation.</p>\n<p>This first conversation included the following participants:</p>\n<ul>\n<li><NAME>, <a href=\"https://pragmatic.agency/\">Pragmatic</a></li>\n<li><NAME>, Post Status</li>\n<li><NAME>, <a href=\"https://alley.co/\">Alley Interactive</a></li>\n<li><NAME>, <a href=\"https://zacgordon.com/\">Deeply</a></li>\n<li><NAME>, <a href=\"https://calderalabs.org/\">Caldera Labs</a></li>\n<li><NAME>, <a href=\"https://calderalabs.org/\">Caldera Labs</a></li>\n<li><NAME>, <a href=\"https://webdevstudios.com/\">WebDevStudios</a></li>\n</ul>\n<p>I attempted to reiterate in the call, but I believe it&#8217;s important to address this topic with a skeptic&#8217;s hat on. By no means do any of us think that it&#8217;s a great idea to just go head first in trying to integrate blockchain technology to WordPress. The jury is still very much out in terms of where, how, and even if blockchain brings significant advantages to web applications.</p>\n<p></p>\n<p>If you are interested in future discussions, we welcome you! There is currently a channel (#blockchain) in Post Status Slack where people can discuss, and we&#8217;ll also announce future video-conference discussions. We may make a more independent place to discuss, blog, etc, in the future depending on how these early conversations go.</p>\n<p>We don&#8217;t know exactly where this conversation will go. It may fizzle out, or could evolve into a much broader community effort. The first thing to do, if you are interested to continue this conversation, is just follow along with future conversations, which will be posted here. If you would like to be on the next video call, please <a href=\"https://pragmatic.agency/contact/\">contact David</a>ย or <a href=\"https://poststatus.com/contact\">myself</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, 12 Sep 2018 22:58: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: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: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:65:\"WPTavern: WordCamp Wilmington Cancelled Due to Hurricane Florence\";s: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=83851\";s: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/wordcamp-wilmington-cancelled-due-to-hurricane-florence\";s: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:2572:\"<p>Hurricane Florence <a href=\"https://www.nhc.noaa.gov/graphics_at1.shtml?cone#contents\">is forecast</a> to make landfall as a major hurricane near Wilmington, North Carolina bringing potentially catastrophic flooding and strong winds to the region. </p>\n\n<img />Hurricane Florence Forecast Track From the National Hurricane Center\n\n<p>Because of the hurricane, <a href=\"https://2018.wilmington.wordcamp.org\">WordCamp Wilmington</a> which was scheduled to take place September 22nd and 23rd <a href=\"https://2018.wilmington.wordcamp.org/2018/09/11/canceled-2018-wordcamp-wilmington/\">has been cancelled</a>. </p>\n\n<p>&#8220;We wish all of our WordCamp Wilmington enthusiasts a minimum of impact from Hurricane Florence,&#8221; <NAME>, one of the event&#8217;s organizers said. <br /></p>\n\n<p>&#8220;On behalfย of my fellow Organizers for 2018 WordCamp Wilmington, we are looking forward to seeing everyone in 2019!&#8221;</p>\n\n<h2>Safety of Attendees, Speakers, and Sponsors Takes Priority<br /></h2>\n\n<p><NAME>, one of the event&#8217;s lead organizers, says the decision to cancel the event has been mentally taxing to him and the team.</p>\n\n<p>&#8220;From the beginning, the decision making was really hard,&#8221; he said. &#8220;How we made the decision about this was very fluid. The entire team has been texting back and forth every several hours on various decisions over many days.</p>\n\n<p>&#8220;We ended up having to set thresholds in advance for canceling. Then on Monday morning, we started to get inquiries and cancellations of attendees, vendors and speakers so we had to make a call.&#8221; </p>\n\n<p>Although a lot hours were spent by volunteers to organize the event, speaker, attendee, and sponsor safety took priority. <br /></p>\n\n<p>&#8220;The organizing team is totally bummed about canceling the event considering the amount of effort we put into organizing it,&#8221; <NAME> said. &#8220;However, weโ€™re more concerned about the safety and security of our family and friends. Especially those who chose to stay.&#8221;</p>\n\n<p>Those who purchased tickets are eligible for a refund. But due to evacuations and the length of time the storm is expected wreak havoc in the area, organizers will not be able to fulfill refund requests until after the storm has passed. <br /></p>\n\n<p>This is the second time a tropical weather system has postponed or cancelled a WordCamp in the US. In 2016, <a href=\"https://wptavern.com/wordcamp-orlando-cancelled-due-to-hurricane\">WordCamp Orlando was postponed</a> due to Hurricane Matthew. </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, 12 Sep 2018 22:05:22 +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: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:70:\"WPTavern: MetaSlider Plugin Adds Gutenberg Block for Inserting Sliders\";s: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=83865\";s: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/metaslider-plugin-adds-gutenberg-block-for-inserting-sliders\";s: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:4203:\"<p>If you <a href=\"https://wordpress.org/plugins/search/slider/\" rel=\"noopener noreferrer\" target=\"_blank\">search for &#8220;slider&#8221;</a> in the WordPress plugins directory, <a href=\"https://wordpress.org/plugins/ml-slider/\" rel=\"noopener noreferrer\" target=\"_blank\">MetaSlider</a> is the first result that comes up. The plugin, created by the team at <a href=\"https://updraftplus.com\" rel=\"noopener noreferrer\" target=\"_blank\">UpdraftPlus</a>, is active on more than 900,000 sites, more than any other free slider plugin, and averages a 4.7-star review. It includes four different types of sliders: Flex 2, Nivo Slider, Responsive Slides, and Coin Slider.</p>\n<p>An update released today introduces Gutenberg support with a block for inserting sliders. Users can access their sliders via the block insertion tool.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/metaslider-gutenberg-block.png?ssl=1\"><img /></a></p>\n<p>Clicking on the MetaSlider block allows users to select from among the sliders that they have already created in the admin.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-12-at-12.46.10-PM.png?ssl=1\"><img /></a></p>\n<p>After the user selects a slider, a preview will appear instantly in the Gutenberg editor.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/09/metaslider-in-gutenberg.jpg?ssl=1\"><img /></a></p>\n<p>Previously, the process of inserting a slider into content involved copying and pasting a shortcode. <NAME>, director of Business Strategy at UpdraftPlus, said the team sees the Gutenberg editor as a major improvement especially for those who are new to WordPress.</p>\n<p>&#8220;I think Gutenberg makes it much easier for novices to web design to make changes and insert sliders,&#8221; Miles said. &#8220;I know people who&#8217;d be comfortable using a Gutenberg block but not comfortable using a shortcode as it looks scary.&#8221;</p>\n<p>Miles said the company is currently working on adding the ability for users to create and edit sliders within Gutenberg and hope to include it in the plugin before WordPress 5.0 lands. The UpdraftPlus team includes 13 developers who are devoted to the company&#8217;s WP-Optimize and MetaSlider products. Miles said adapting to Gutenberg was fairly simple relative to some of the other projects the team is working on.</p>\n<p>UpdraftPlus plans to continue to maintain and improve the shortcode-based slider insertion method, as demonstrated in the changelog. Users who opt to stick with the Classic Editor will still be able to keep their same workflow. Meanwhile, the product&#8217;s development team will be working on integrating all of the pro version&#8217;s front-end features with Gutenberg.</p>\n<p>In addition to Gutenberg support, the team is also going to be <a href=\"https://updraftplus.com/metasliders-bringing-out-new-slider-themes-and-theyre-completely-free/\" rel=\"noopener noreferrer\" target=\"_blank\">adding the concept of themes to sliders</a> so users can build a slider and change its theme in a couple of clicks. They plan to release free and commercial themes and all will be built to be compatible with Gutenberg.</p>\n<p><a href=\"https://wordpress.org/plugins/smart-slider-3/\" rel=\"noopener noreferrer\" target=\"_blank\">Smart Slider 3</a>, MetaSlider&#8217;s next closest competitor with 300,000 installs, is <a href=\"https://smartslider3.com/blog/gutenberg-and-smart-slider-3-how-to-add-sliders-to-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">also compatible with Gutenberg</a> with a similar workflow for inserting sliders. Both slider plugins are not yet capable of providing the slider creation and editing process inside the Gutenberg interface but the capabilities should evolve as WordPress gets closer to the 5.0 release.</p>\n<p>&#8220;I personally love the idea of Gutenberg since <NAME> announced it at WordCamp EU 2017,&#8221; Miles said. &#8220;I understand why experienced developers don&#8217;t want the change, but too many people are going for inferior website solutions like WIX because they&#8217;re used to WYSIWYG. So adapting MetaSlider was a no-brainer.&#8221;</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, 12 Sep 2018 20:59: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: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:89:\"WPTavern: <NAME> is Walking 700km to WordCamp Europe to Raise Funds for DonateWC\";s: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=83797\";s: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:100:\"https://wptavern.com/marcel-bootsman-is-walking-700km-to-wordcamp-europe-to-raise-funds-for-donatewc\";s: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:3272:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-11-at-3.37.12-PM.png?ssl=1\"><img /></a></p>\n<p>In May 2019, <a href=\"https://twitter.com/mbootsman\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> will be lacing up a pair of hiking boots and walking 700km (435 miles) from his home in Rotterdam to WordCamp Europe in Berlin. Bootsman, a WordPress consultant and WordCamp organizer, is walking to raise funds and awareness for the <a href=\"https://donatewc.org/\" rel=\"noopener noreferrer\" target=\"_blank\">DonateWC</a> organization.</p>\n<p>The DonateWC initiative provides a global fund for helping people in need of financial assistance to attend a big WordCamp. Donations go towards individually-tailored sponsorships that help selected attendees purchase a WordCamp ticket, door-to-door transportation, food and drink, and internet access.</p>\n<p>&#8220;Imagine for a moment that you are not backed by a company that will pay for you to go to a community event,&#8221; DonateWC founder <NAME> said. &#8220;You work hard at being a valuable community member but are never able to actually meet the others in your team. This means you are less likely to get a job, less likely to get recognized as a worthwhile member, youโ€™re unlikely to be at the front-end of changes that impact your work significantly.&#8221;</p>\n<p>DonateWC aims to keep the larger WordCamps from being unintentionally exclusive of those with lesser financial means. Bootsman said he believes in the organization because it is community-driven and enables the greater WordPress community to do something for their fellow community members.</p>\n<p>So far, Bootsman&#8217;s walking journey has raised โ‚ฌ116.57. He set up a <a href=\"https://walktowc.eu\" rel=\"noopener noreferrer\" target=\"_blank\">walktowc.eu</a> website to track his progress and the <a href=\"https://walktowc.eu/donate/\" rel=\"noopener noreferrer\" target=\"_blank\">donation page</a> displays a live update of donated funds. Contributors have the option to designate their donations for DonateWC or for Bootsman&#8217;s personal needs on the trek. He plans to deliver all of the funds raised for the organization when he arrives in Berlin. In the coming weeks he will also open up sponsor packages to better motivate companies to donate.</p>\n<p>Bootsman does not plan to work during his trek. He will be on the road for approximately 30 days and plans to walk 30km per day. He is traveling light with just a backpack and is looking for places where he can sleep along the way. Bootsman will update the <a href=\"https://walktowc.eu/route/\" rel=\"noopener noreferrer\" target=\"_blank\">Route page</a> on his website with the places where people volunteer a bed for him to spend the night.</p>\n<p>If you want to keep track of his progress, follow the hashtag <a href=\"https://twitter.com/hashtag/walktowceu?src=hash\" rel=\"noopener noreferrer\" target=\"_blank\">#walktwceu</a> on Twitter. Bootsman has published his first vlog about his training sessions (see video below) where you can hear in his own words why his making the long journey on foot. When I asked him if he&#8217;ll be walking home after WordCamp Europe, he said, &#8220;You&#8217;re kidding, right?&#8221;</p>\n<p></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, 11 Sep 2018 22:25: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: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: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:26:\"Matt: WP Dev on Chromebook\";s: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=48342\";s: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:43:\"https://ma.tt/2018/09/wp-dev-on-chromebook/\";s: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:256:\"<p><NAME> has an interesting <a href=\"https://developer.wordpress.com/2018/09/11/developing-wordpress-jetpack-and-calypso-on-chromeos/\">walkthrough on getting set up for WordPress and Calypso development on the new Linux mode on a Chromebook</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, 11 Sep 2018 18:29:48 +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: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:48:\"WPTavern: Hemingway Theme Adds Gutenberg Support\";s: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=83790\";s: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:59:\"https://wptavern.com/hemingway-theme-adds-gutenberg-support\";s: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:4178:\"<p><NAME> has <a href=\"http://www.andersnoren.se/hemingway-meet-gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">added Gutenberg support</a> to his popular <a href=\"https://wordpress.org/themes/hemingway/\" rel=\"noopener noreferrer\" target=\"_blank\">Hemingway</a> theme in the latest update, version 1.66. The theme has a simple, timeless design that appeals to both bloggers and business owners alike. It is active on more than 30,000 websites and some of those site administrators are using Gutenberg.</p>\n<p>What does Gutenberg support look like for Hemingway? Norรฉn styled the editor to match the front-end design, with the same colors and fonts. He also added support for specific Gutenberg blocks, such as cover images, full-width elements, and pull quotes.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/09/hemingway-gutenberg-e1536683158337.jpg?ssl=1\"><img /></a>image credit: <NAME>\n<p>Norรฉn said he knew since Gutenberg was announced that he would need to add support to all 17 of his themes in a substantial update at some point but had put it off because developing for the new editor felt &#8220;like aiming for a moving target.&#8221;</p>\n<p>&#8220;I donโ€™t think it was any single thing that made me realize that I needed to get going with Gutenberg, but rather that the Gutenberg volume knob in the community has been turned up at a steady pace,&#8221; Norรฉn said. &#8220;After the &#8216;Try Gutenberg&#8217; prompt in 4.9.8, I also started to receive a lot more support requests regarding Gutenberg. When regular WordPress users โ€“ not developers โ€“ started to ask when they can expect Gutenberg support in my themes, I knew that I couldnโ€™t push it ahead of me much further.&#8221;</p>\n<p>Hemingway is the first of his themes to support the new editor and Norรฉn is aiming to have his entire collection Gutenberg-ready by the time WordPress 5.0 is released. (This does not include the <a href=\"https://wordpress.com/theme/hemingway-rewritten\" rel=\"noopener noreferrer\" target=\"_blank\">Hemingway Rewritten</a> version, which was created by Automattic and is available on WordPress.com.)</p>\n<p>Norรฉn sees the new editor as a significant improvement over the current editor and said he thinks it is the right way forward for WordPress.</p>\n<p>&#8220;Itโ€™s always easy to speculate about the road not travelled, but the Visual Editor needs replacement, and Gutenberg will be a good replacement for it,&#8221; he said. &#8220;Itโ€™s better at everything the old editor can do (except editing raw HTML, perhaps), and it also brings with it new possibilities for WordPress developers and users. There are a lot of issues in Gutenberg still to be worked out, but when they are, I think Gutenberg will be a big step forward for the WordPress community.&#8221;</p>\n<p>Norรฉn said his chief concern is not about the editor itself but about how WordPress will handle the transition period for users, especially for those who would benefit from continuing on with the Classic Editor.</p>\n<p>&#8220;I hope that the upgrade notice for 5.0 will be accompanied by clear messaging around the changes included in 5.0, along with the option to install the Classic Editor in Gutenberg&#8217;s stead,&#8221; Norรฉn said. &#8220;Similar to the &#8216;Try Gutenberg&#8217; prompt, but presented more clearly as an either-or option before the user actually updates to 5.0. It was encouraging to see <NAME> say that the Classic Editor will be maintained for many years to come.&#8221;</p>\n<p>Norรฉn&#8217;s 17 free WordPress.org-hosted themes have an estimated 100,000 active installs. Those using his products can be confident that the author behind the themes has Gutenberg-support among his immediate priorities for updates. Users who opt to move forward using the Classic Editor should not notice a difference in how the themes work.</p>\n<p>&#8220;I hope that Gutenberg is received with excitement and widespread support when 5.0 is finally released,&#8221; Noren said. &#8220;I also hope that the WordPress team does whatever it can to make sure that end-users donโ€™t feel ambushed by the new editing experience.&#8221;</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, 11 Sep 2018 18:04:17 +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: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:81:\"WPTavern: Meetup Group Organizers Can Now Earn A WordPress.org User Profile Badge\";s: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=83806\";s: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:92:\"https://wptavern.com/meetup-group-organizers-can-now-earn-a-wordpress-org-user-profile-badge\";s: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:2241:\"<p>The WordPress Community team <a href=\"https://make.wordpress.org/community/2018/09/10/new-tool-for-community-deputies-meetup-tracker/\">has unveiled</a> a new tool called Meetup Tracker. This tool replaces the Meetup Status Document and will enable Global Community Team members to more easily track all Meetup.com groups.</p>\n\n<p>There&#8217;s also a <a href=\"https://central.wordcamp.org/meetup-organizer-application/\">new application form</a> available for organizers looking to join the <a href=\"https://make.wordpress.org/community/handbook/community-deputy/meetup-program-basics/\">WordPress Meetup Chapter Program</a>. Groups that are part of the program have their Meetup.com fees paid for by WordPress Community Support PBC.<br /></p>\n\n<p>Thanks to the new system that is hosted on the backend of <a href=\"https://central.wordcamp.org/\">WordCamp Central</a>, the community team is able to award badges to meetup organizers which will be displayed on their WordPress.org user profiles.</p>\n\n<div class=\"wp-block-image\"><img />Example of Contribution Badges Displayed on WordPress.org User Profiles</div>\n\n<p>In order to receive a badge and to fill the new system with updated information, organizers with meetups that are part of the chapter program are required to add the following information to this <a href=\"https://docs.google.com/spreadsheets/d/1LYnNDDpBQC7przZyufG4W5mdO67BcTTy_yz8eHY24lc/edit#gid=0\">Google Document</a>.</p>\n\n<ul><li> <strong>WordPress.org username for main contact</strong> <br /></li><li><strong>WordPress.org usernames of all organizers</strong> <br /></li><li><strong>Whether or not the contactโ€™s WordPress.org email address is still valid</strong> <br /></li></ul>\n\n<p>Badges were added to WordPress.org <a href=\"https://wptavern.com/wordpress-org-profile-redesign-is-live\">user profiles as part of a redesign in 2014</a> and are a quick way to gauge a person&#8217;s activity and or interests across the WordPress project. </p>\n\n<p>The meetup organizer&#8217;s badge design has yet to be determined. For more information or if you have questions, please leave a comment on the <a href=\"https://make.wordpress.org/community/2018/09/10/calling-all-meetup-group-orgnisers/\">announcement post</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, 11 Sep 2018 02:52:41 +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:51:\"WPTavern: WordPress Coding Standards 1.1.0 Released\";s: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=83804\";s: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/wordpress-coding-standards-1-1-0-released\";s: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:688:\"<p>The WordPress Coding Standards version 1.1.0 has <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.1.0\">been released</a> on GitHub. This release includes more stringent function call formatting checks which are <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#multiline-function-calls\">explained</a> in the handbook. There&#8217;s also stricter checks for overrides of WordPress global variables. </p>\n\n<p>To see a full list of what was changed, fixed, and added, check out the <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.1.0\">changelog</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, 11 Sep 2018 01:16: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: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:36:\"Matt: <NAME> on Customer Service\";s: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=48340\";s: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:53:\"https://ma.tt/2018/09/seth-godin-on-customer-service/\";s: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:236:\"<p>This morning <a href=\"https://seths.blog/2015/03/what-is-customer-service-for/\">I&#8217;m enjoying <NAME>&#8217;s classic on Customer Service</a>. <cite>Hat tip: <a href=\"https://andrewspittle.com/\"><NAME></a>.</cite></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, 10 Sep 2018 16:39:42 +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: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:34:\"Matt: Responsibility of Technology\";s: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=48337\";s: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:51:\"https://ma.tt/2018/09/responsibility-of-technology/\";s: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:834:\"<p>There&#8217;s <a href=\"https://www.buzzfeednews.com/article/daveyalba/facebook-philippines-dutertes-drug-war\">fascinating and terrifying feature article about Facebook, Duterte, and the drug war in the Philippines</a>, written <a href=\"https://twitter.com/daveyalba/status/1036917302061608960\">by <NAME></a>. My first trip there was actually to Davao, and having been to the country several times and met so many bloggers there it&#8217;s hard to imagine what&#8217;s described. There are definitely echoes of <a href=\"https://www.wired.com/story/how-facebooks-rise-fueled-chaos-and-confusion-in-myanmar/\">the Wired feature on Facebook and ethnic cleansing in Myanmar</a>. Both are good reminders that as technologists the tools we create can be used and leveraged in ways we wouldn&#8217;t imagine in our worst nightmares.</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:\"Sun, 09 Sep 2018 17:46:02 +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: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:76:\"WPTavern: Biratnagar, Nepal to Host Its First WordCamp โ€“ December 22, 2018\";s: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=83719\";s: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/biratnagar-nepal-to-host-its-first-wordcamp-december-22-2018\";s: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:2614:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/09/wordcamp-biratnagar.png?ssl=1\"><img /></a></p>\n<p>Biratnagar, one of the oldest cities in Nepal, is gearing up to <a href=\"https://2018.biratnagar.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">host its first WordCamp</a> on December 22, 2018. The local community organized its first meetup in 2011 with 40 participants. Since that time the community has grown and recently hosted 250 members for <a href=\"http://wp.tecnepal.com/\" rel=\"noopener noreferrer\" target=\"_blank\">a two-day meetup</a> in January 2018.</p>\n<p>&#8220;WordPress Biratnagar has a remarkably large number of enthusiastic participants in local WordPress meetups, more than any other meetups in Nepal,&#8221; lead organizer <NAME> said. Kafle is a developer and WordPress.org theme reviewer. He said his local community is full of energetic youth who are excited to make the WordCamp happen.</p>\n<p>&#8220;From an 8th grade student in a government school to a 56-year-old passionate retired army soldier, all are members of the WordPress Biratnagar community. This community is diverse, open, and has the ability to have fun together. They help each other out a lot, sharing tips and tricks, and solve problems together.&#8221;</p>\n<p>Kafle said the topics of most interest to the local community include WordPress SEO, blogging, and WordPress theme development, as the majority of community members are students, developers, freelancers, and designers. He expects the WordCamp will attract attendees from different cities inside Nepal and from nearby countries, including India, Bangladesh, Pakistan, and other South Asian countries. Sessions will be conducted in both English and Nepali.</p>\n<p>WordCamp Biratnagar will be the seventh WordCamp held in Nepal, following WordCamp Pokhara which is scheduled one month earlier on November 24. Pokhara is 11 hours away by car so the two WordPress communities are quite a distance away from each other. WordCamp Biratnagar is the last camp on the global WordCamp calendar for 2018.</p>\n<p>Kafle said he hopes the event will bring the Biratnagar WordPress community opportunities that will lead to more entrepreneurship and contribution to the greater tech community in the region. The event has <a href=\"https://2018.biratnagar.wordcamp.org/wordcamp-biratnagar-tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">200 tickets available</a> and the capacity to expand if there is a greater demand. Early Bird Tickets are now on sale at Rs 1000. Once those are sold, Regular Tickets will be available for Rs 1500.</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, 08 Sep 2018 01:40: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: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:72:\"WPTavern: Dark Mode is Possibly Coming to a WordPress Dashboard Near You\";s: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=83660\";s: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://wptavern.com/dark-mode-is-possibly-coming-to-a-wordpress-dashboard-near-you\";s: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:4514:\"<p>For the past year, <a href=\"https://profiles.wordpress.org/danieltj\"><NAME></a> has been developing the <a href=\"https://wordpress.org/plugins/dark-mode/\">Dark Mode</a> plugin for WordPress. The plugin is actively installed on more than 1K sites. Dark Mode replaces the white and grey colors in the backend with darker colors that are easier on the eyes.</p>\n\n<div class=\"wp-block-image\"><img />Dark Mode for WordPress</div>\n\n<p>James has published <a href=\"https://make.wordpress.org/core/2018/08/30/merge-proposal-dark-mode/\">a proposal</a> to merge the plugin into core. There are three things to know about Dark Mode up front. It does not have a high contrast mode to meet accessibility needs, is not a new admin color scheme for the backend, and is not a tool that helps people with vision issues. </p>\n\n<p>By default, WordPress ships with eight admin color schemes. However, color schemes are only applied to the WordPress sidebar and Admin toolbar. Dark Mode is applied to the main content area of the dashboard. This gives users the ability to use Dark Mode and an Admin Color Scheme in tandem.ย </p>\n\n<img />Admin Color Schemes\n\n<p>Dark Mode is not compatible with Gutenberg but is compatible with TinyMCE. Because of the speed at which Gutenberg is being developed as a plugin, James decided that a merge proposal without Gutenberg support is the best way forward. Compatibility with Gutenberg will likely arrive once it is merged into core.</p>\n\n<p>Because Dark Mode affects the content area of the WordPress Dashboard, if it&#8217;s merged into core, plugins will need to support two different color schemes. </p>\n\n<p>There is no easy way for Dark Mode to support every plugin, especially when many of them use custom user interface elements. <a href=\"https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide\">This guide</a> on the <a href=\"https://github.com/danieltj27/Dark-Mode\">plugin&#8217;s GitHub page</a> explains how developers can add support for Dark Mode.</p>\n\n<h2>Proposal Hits a Snag</h2>\n\n<p>Within the comments on the proposal, members of the core and accessibility teams weighed in. <NAME>, a WordPress core developer, <a href=\"https://make.wordpress.org/core/2018/08/30/merge-proposal-dark-mode/#comment-33913\">outlined</a> a list of requirements from the <a href=\"https://make.wordpress.org/core/handbook/about/release-cycle/features-as-plugins/#feature-plugin-merge-criteria\">Core Handbook</a> that the plugin has yet to achieve. </p>\n\n<p>James <a href=\"https://make.wordpress.org/core/2018/08/30/merge-proposal-dark-mode/#comment-33928\">responded</a> by explaining the process of merging a feature plugin into core as outlined in the Core Handbook does not lend itself to all projects. </p>\n\n<p>&#8220;For example, weekly meetings, or kick-off posts etc,&#8221; James said. &#8220;I understand that Gutenberg is probably a top priority right now but itโ€™d be great if I could have some help on what to do to push this forward. I think an introduction of Gutenberg <strong>and</strong> Dark Mode would be a great addition to shout about in 5.0.&#8221;</p>\n\n<h2>Some of the Benefits of Dark Mode</h2>\n\n<p>One of the obvious benefits is that Dark Mode is aesthetically pleasing, especially after sunset. Depending on the <a href=\"https://www.quora.com/Does-a-white-background-use-more-energy-on-an-LCD-than-if-it-was-set-to-black\">screen technology</a>, darker colors are more energy efficient. It&#8217;s also a mode that&#8217;s gaining in popularity. For example, earlier this year, <a href=\"https://developer.apple.com/videos/play/wwdc2018/210/\">Apple announced</a> Dark Mode will be available in macOS Mojave.<br /></p>\n\n<p>I find myself using Dark Mode on Reddit, the Twitter app on my iPhone, and now WordPress. I like to browse the web on my phone while laying in bed and my partner enjoys not seeing a bright screen shining in her direction.<br /></p>\n\n<p>Based on <a href=\"https://make.wordpress.org/core/2018/08/30/merge-proposal-dark-mode/#comment-33929\">comments made</a> to the proposal and on <a href=\"https://twitter.com/mikelikethebike/status/1035513986836570112\">social media</a>, there is a definitive interest in having a Dark Mode option in WordPress. Is Dark Mode something you&#8217;d like to see be part of core? Also, I&#8217;m curious as to which Admin Color scheme you use. Please vote in the poll below. </p>\n\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.\";s: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, 08 Sep 2018 00:14: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: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: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:57:\"WPTavern: The State of JavaScript 2018 Survey 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=83749\";s: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/the-state-of-javascript-2018-survey-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:3004:\"<p>The annual <a href=\"https://stateofjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">State of JavaScript 2018 Survey</a> is in its third year running and is now open for participants. <a href=\"http://sachagreif.com/\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a>, an Osaka-based web designer and developer, said he created the survey to get more data about recent trends after hearing all the online discussion about โ€œJavaScript fatigue.โ€</p>\n<p>Last year&#8217;s survey had more than 20,000 participants, a 115% increase over the previous year&#8217;s 9,300 responses. In the popular front-end frameworks category, React won out again as the framework with the greatest number of respondents indicating that they had used it and would use it again.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.35.08-PM.png?ssl=1\"><img /></a></p>\n<p>The 2017 survey participants were asked to rate their happiness with the current state of front-end tools on a scale of 1-5. The results averaged a 3.8, so there is room in the front-end tools category for things to shift quite a bit over a year.</p>\n<p>The salary ranges data is particularly useful for job seekers or those new to JavaScript who are trying to decide what libraries to learn. Backbone and Ember commanded the highest salaries for participants, with Vue and Angular 2 coming in at the lower end.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.53.47-PM.png?ssl=1\"><img /></a></p>\n<p>Check out the full <a href=\"https://2017.stateofjs.com/2017/introduction/\" rel=\"noopener noreferrer\" target=\"_blank\">2017 results</a> for more data on participants&#8217; opinions on state management tools, back-end frameworks, build tools, and more.</p>\n<p>&#8220;The main change this year is that we added some extra logic to the survey: if you mention having used a given library, weโ€™ll ask a follow-up question to find out what you like (or disliked) about it,&#8221; Greif said in announcing the 2018 survey. &#8220;Weโ€™re hoping that this helps us get more granular data about why some technologies are popular.&#8221;</p>\n<p>The 2018 survey has also dropped the CSS libraries category this year, in favor of keeping it from getting too long. Greif hinted that CSS may get its own survey one day, but that section will no longer by included in the JavaScript survey.</p>\n<p>Greif is aiming to publish the results by mid-November and will also give a preview at the <a href=\"https://www.dotjs.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Dot JS</a> conference in Paris on November 9th. Your participation in the 2018 survey will help it to more accurately present the trends in the JavaScript ecosystem and help other developers see which tools have the highest satisfaction ratings and best salaries. Visit <a href=\"https://stateofjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">stateofjs.com</a> to take the survey now.</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, 07 Sep 2018 19:07: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: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: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:80:\"WPTavern: Pootlepress Previews Upcoming Storefront Blocks Plugin for WooCommerce\";s: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=83538\";s: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:91:\"https://wptavern.com/pootlepress-previews-upcoming-storefront-blocks-plugin-for-woocommerce\";s: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:6098:\"<p>At the end of 2017, WooCommerce <a href=\"https://wptavern.com/woocommerce-explores-the-possibilities-and-challenges-for-e-commerce-in-the-gutenberg-era\">published some of their &#8220;Wootenberg experiments&#8221;</a>, one of the first previews of what e-commerce might look like in the Gutenberg era. Gutenberg&#8217;s handling of meta boxes has greatly evolved since that time and the <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce Gutenberg Products Block</a> feature plugin is now active on more than 20,000 sites. The plugin provides a basic custom products area for featuring products.</p>\n<p>Pootlepress has expanded on this idea of offering a configurable product display and is currently previewing its upcoming <a href=\"https://www.pootlepress.com/storefront-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Storefront Blocks</a> plugin, created specifically for use with the WooCommerce <a href=\"https://wordpress.org/themes/storefront/\" rel=\"noopener noreferrer\" target=\"_blank\">Storefront theme</a>. The plugin allows users to easily customize more advanced layouts for various product displays that can be used anywhere in their content.</p>\n<div class=\"embed-vimeo\"></div>\n<p>Storefront Blocks includes the following custom blocks:</p>\n<ul>\n<li>Product Masonry Grid block</li>\n<li>Category Masonry block</li>\n<li>Square Product Grid block</li>\n<li>Slider block</li>\n<li>WooCommerce default product</li>\n<li>Carousel block</li>\n</ul>\n<p>Storefront Blocks lets store owners easily customize font, colors, label positioning and alignment, grid gap, product grid rows, and columns. The blocks can be expanded to be full-width. They can also be transformed and reused. One example shown in the video above demonstrates converting a product grid into a slider.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-09-05-at-4.04.37-PM.png?ssl=1\"><img /></a></p>\n<p>Check out the live frontend demo at <a href=\"https://storefrontblocks.com/\" rel=\"noopener noreferrer\" target=\"_blank\">storefrontblocks.com</a>.</p>\n<p>The team at Pootlepress was aiming to release the plugin in first week of September but have pushed it back to the week of the September 17th, due to issues caused by Gutenberg 3.7.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Gutenberg 3.7 dropped today and broke some stuff. Trying to develop in prep for <a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a> is like shooting at a fast moving target atm. Makes me agree more and more with <a href=\"https://twitter.com/mor10?ref_src=twsrc%5Etfw\">@mor10</a> that we need a 6 month freeze once the code base is stable to prepare properly.</p>\n<p>&mdash; pootlepress (@pootlepress) <a href=\"https://twitter.com/pootlepress/status/1035574622840938496?ref_src=twsrc%5Etfw\">August 31, 2018</a></p></blockquote>\n<p></p>\n<p>Pootlepress founder <NAME> said they plan to sell Storefront Blocks at several price points: $75 (single site license), $125 for 5 sites, $149 for 25 sites, and $199 for an unlimited license. The product is a natural extension of their current offerings, which include a page builder plugin used on more than 10,000 websites and a Storefront Pro plugin used on 5,000+ stores.</p>\n<p>Marsland said he was previously a skeptic about Gutenberg but is convinced that a unified interface is going to be the chief benefit of Gutenberg in the long term.</p>\n<p>&#8220;My skepticism was really based on how it was being rolled out to the WP community, rather than the technical approach of Gutenberg,&#8221; Marsland said. &#8220;I still feel that way actually. But from a end user point of view Iโ€™m convinced users are going to love it. 50% of our business is focused on running WordPress training courses for beginners, so we see first hand the issues that WordPress users have with the existing editor. The layout limitations of the current editor is the number complaint that users have with WordPress (from our experience of having trained thousands of end users over the past 7 years).&#8221;</p>\n<p>Marsland&#8217;s team at Pootlepress has gone all-in on developing for Gutenberg. So far their greatest challenge in extending the new editor has been keeping pace with its rapid development.</p>\n<p>&#8220;It feels a bit like developing for a moving target at times,&#8221; Marsland said. &#8220;The Gutenberg documentation is getting better but there are still gaps in it. The Slack channel has been really helpful though and the team have been great and responding to specific questions we have.&#8221;</p>\n<p>Marsland doesn&#8217;t see Gutenberg impacting Pootlepress&#8217; WooCommerce page builder product, at least not until Gutenberg evolves further on its journey into site customization capabilities.</p>\n<p>&#8220;At the moment Gutenberg is quite limited in whatโ€™s possible from a layout and design perspective,&#8221; Marsland said. &#8220;For example, our WooCommerce page builder plugin lets users change the design and layout of individual WooCommerce products. This isnโ€™t possible with Gutenberg and may not be for quite some time. It feels like Gutenberg will stay more of a content editor than become a true page builder, especially given the current feedback from the community. That said, the ease of adding blocks within a unified interface like Gutenberg is perfect for a block approach like we are building for Storefront Blocks.&#8221;</p>\n<p>If you&#8217;ve been wondering what Gutenberg will look like in a WooCommerce context, Pootlepress&#8217; upcoming Storefront Blocks plugin gives you an idea of the customization possibilities the new editor will bring. The plugin makes it easy for non-technical store owners to showcase their products in a compelling way and enables them to create and customize product layouts. Storefront Blocks is an impressive example of how Gutenberg-powered products can replace clunky shortcodes with a more user-friendly interface for building store pages.</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, 05 Sep 2018 21:27:02 +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:58:\"HeroPress: The Deaf World May Await, But Itโ€™s Not Silent\";s: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=2616\";s: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:160:\"https://heropress.com/essays/the-deaf-world-may-await-but-its-not-silent/#utm_source=rss&utm_medium=rss&utm_campaign=the-deaf-world-may-await-but-its-not-silent\";s: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:15627:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/09/090518-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The handicap of deafness is no in the ear, it is in the mind. -- <NAME>\" /><p>Have you ever wondered what it would be like if the world you lived in completely changed, turning your life upside down?</p>\n<p>And for those who have gone through an experience like this, can you remember how it felt to wake up in a world you were not used to?</p>\n<p>Even though life can throw many curve balls your way, the way you tackle them can redefine you as a person.</p>\n<h3>From One World to Another</h3>\n<p>I was just a toddler when I was diagnosed with a hearing impairment. My parents noticed my speaking skills lagged behind other toddlers of a similar age. I was diagnosed with a hearing loss at the age of 2 or 3.</p>\n<p>Even though itโ€™s something Iโ€™ve lived with my entire life, it has been (and still is) a long and confusing journey for me as I try to figure out how best to live with it.</p>\n<p>You see, Iโ€™m not profoundly deaf. I can hear relatively well for now (Iโ€™ll get to that part in a minute), which means that I was brought up in a mainstream hearing environment.</p>\n<p>This didnโ€™t come without its challenges though as I experience inaccessibility issues regularly. For example, noisy environments such as bars and restaurants, bad audio at conferences and mumbling voices when listening to podcasts.</p>\n<p>As a young child who didnโ€™t know any better and acted naive about life, I just accepted it. But then as I got older and learned more about the world around me, well, thatโ€™s when things started to change.</p>\n<p>Because I am part of the hearing world but also have one โ€œearโ€ in the non-hearing world, it has been a confusing position to be in. I already know what itโ€™s โ€œsupposed toโ€ be like if I had normal hearing. But thatโ€™s the thing, I donโ€™t have normal hearing and Iโ€™m not profoundly deaf either.</p>\n<p>So where do I stand?</p>\n<p>Well there was always the possibility that my hearing would get worse, which was something my audiologist told me as a teenager. I figured maybe that will give me a better idea of where I stand.</p>\n<blockquote><p>But come on, as a teenager, I acted like a teenager โ€“ I was in denial about my situation and just wanted to fit in, like we all do as human beings.</p></blockquote>\n<p>Nothing was going to stop me from playing football, playing the guitar, socialising with friends, going to restaurants (plenty of head nodding happens there) and going to the cinema (even if I had to pretend to enjoy the latter and act as if I could hear everything, which was awkward when everyone talks about it afterwards).</p>\n<p>Over time, I learned to develop tricks to help me get by, living in both worlds. For example, when playing the guitar, Iโ€™m not able to fine-tune my music without the help of technology or someone else who can assist me. Or when I go to the cinema, I only focus on action movies so I donโ€™t REALLY have to talk about the story line, so I talk about the graphics, car chases and explosions instead.</p>\n<p>On top of that I was learning English, which is my second language (but now my main language), and I was having speech therapy sessions and attended countless audiology appointments.</p>\n<p>But you keep going, right? You donโ€™t let anything stop you. I made it through two universities, a number of jobs and navigated life in general throughout my twenties relatively unscathed.</p>\n<p>Then one day, a few years ago, I realised my hearing had declined even further. Unexpectedly, I found myself in a much quieter world than the one I was used to.</p>\n<p>Remember that warning from the audiologist? Well things got very real, very fast.</p>\n<p>I realised there was no turning back. And so began a whole new unfamiliar journey over what to do next.</p>\n<h3>Silent with a Loud Voice</h3>\n<p>Itโ€™s quite common to see online creators documenting their lives using whatever platform is available, such as social media and personal websites. The same applies for those who are going through certain struggles and share them with the world. And I used to find that strange. For something so personal, why would you share this with strangers?</p>\n<p>Many years ago, itโ€™s not something that I would have thought of doing. And there was definitely no intention of writing about being partially deaf. Like I said, I was trying to fit in, so I told myself to keep going to the cinema and pretend that I enjoyed it.</p>\n<p>But there comes a time where you have to stop pretending and start being real, like I did by creating a video to publicly declare my intention to do so (and Iโ€™ll talk more about that later).</p>\n<p>Iโ€™m lucky to have a job that revolves around the internet. As someone who works in the digital marketing industry, it was natural for me to <a href=\"https://iamahmedkhalifa.com\" target=\"_blank\" rel=\"noopener\">have my own website</a>. I remember there were a lot of experimenting and trying to work out how to start one, as well as trying to figure out what it should be about.</p>\n<p>Having your own website sounds like a cool thing to have, but it wasnโ€™t something I made a lot of use of in the early days. My priority was always on my clientsโ€™ or employersโ€™ websites.</p>\n<p>But over the past few years, Iโ€™ve grown more and more involved with WordPress and have a deeper appreciation for those who use the platform to find their voice.</p>\n<p>And that made me curious.</p>\n<blockquote><p>It wasnโ€™t until I started my own business in 2016 that I took WordPress more seriously, both for me personally and for my clients.</p></blockquote>\n<p>That is when I started to get more involved with the WordPress community. Because of my continued desire to contribute to the community and also how much I enjoyed helping others to make the most out of their WordPress sites. This inevitably led me to being one of the co-organisers of the WordPress meet-up group in Edinburgh as well as the current lead organiser for WordCamp Edinburgh.</p>\n<p>My main WordPress site is my business site. Itโ€™s where I predominantly focus on the subjects of SEO, Google Analytics, WordPress (of course), online business, etc. You know, anything to help others use their WordPress site to grow their online visibility, engagement and conversion.</p>\n<p>There is another side to being part of WordPress, and that is the community โ€“ it means youโ€™re involved with a wide variety of people, mixing with different personalities and opening your mind to more experiences. It is where you can share valuable insights that can impact not just your life but the lives of those around you who are using WordPress in some shape or form.</p>\n<p>And that includes the subjects of inclusivity and accessibility, two areas which have a direct effect on me. But with regards to accessibility, I do depend on subtitles/closed captions in certain situations. Iโ€™m thankful that TV is getting better at it, but outside the house, itโ€™s not that simple.</p>\n<blockquote><p>Having been to manyย meet-ups and WordCamps, the code of conduct is clear โ€“ itโ€™s about making the environment welcoming and comfortable for everyone.</p></blockquote>\n<p>The subject of online accessibility is becoming more important.ย Even though we are still behind in terms of understanding accessibility and making it a standard approach on websites, Iโ€™m starting to see people taking it more seriously,ย and rightly so.</p>\n<p>So I should feel comfortable about the online world, right? Well, not exactly. Accessibility is still trying to catch up online and offline for everyone, not just for deaf people. For example, there are still campaigns going on to have subtitled screenings at cinemas as they tend to be limited and are often used during impossible hours like Monday mornings.</p>\n<p>Because apparently, deaf people donโ€™t have day jobs.</p>\n<p>The combined effect of a lack of accessibility and various challenges means there is a nagging feeling that being deaf means my abilities are limited in an online world.</p>\n<p>Itโ€™s a stupid thing, right? But imposter syndrome is a powerful thing. If you donโ€™t have a firm hold on it, it can be beat the hell out of you.</p>\n<p>Until one day&#8230;</p>\n<p>โ€œEnough! Iโ€™ve had enough.โ€</p>\n<p>There came a point where I decided to let go of the very thing (my hearing impairment) that I felt was holding me back in life and to use that as the catalyst to move forward. I was reading a book called โ€œLet Goโ€ by <NAME> of Smart Passive Income. He is someone Iโ€™ve admired from afar and I have learnt a lot from him, even before reading that book.</p>\n<p>But that book was the first โ€œsoftโ€ trigger for me in accepting the present and the future. Little did I realise how doing this would pave the way for a whole new world of possibilities and opportunities. And thatโ€™s when the second trigger happened. I had the opportunity of spending a day with Pat in San Diego โ€“ it was an experience Iโ€™ll never forget.</p>\n<p>But just as importantly and for the final trigger, it allowed me remove those chains that shackled me and gave me the freedom to move forward and to take advantage of whatever life had to offer me, even if it meant things were โ€œlimitedโ€ because of my gradual hearing loss.</p>\n<p>Itโ€™s amazing what can happen when you share your vulnerabilities and experiences with others. We can always learn from each other and sharing this experience has ended up helping many others. I have received private messages from strangers thanking me for creating videos that help spread awareness.</p>\n<p>And Iโ€™m not stopping there either.</p>\n<h3>The World Got Quieter</h3>\n<p>If I am going deeper into the deaf world, it doesnโ€™t mean itโ€™s going to be silent, at least not in an online sense. I have created a dedicated website called <a href=\"https://hearmeoutcc.com\" target=\"_blank\" rel=\"noopener\">Hear Me Out! [CC]</a> to document my hearing journey. Itโ€™s a place to share other peopleโ€™s stories and to provide advice on managing in the deaf world โ€“ whether you are deaf or not.</p>\n<p>See, thatโ€™s the great thing about putting websites together. Itโ€™s about giving you the platform you never had before. Itโ€™s also the ethos of WordPress &#8220;to democratise publishing through Open Source, GPL Softwareโ€.</p>\n<p>Itโ€™s a funny thing when you start documenting and talking about your life online. Many people use social media as a platform to help with that and to create a voice, but I prefer to use my WordPress site for that voice. And then I use social media to help elevate it.</p>\n<h3>Your Voice Can Influence Others</h3>\n<p>Since Iโ€™ve been using WordPress and been involved in digital marketing for almost 10 years, it made sense to use that experience to my advantage. Iโ€™m lucky that my business allows me to use my expertise to help other people with their sites.</p>\n<p>But sometimes you have to be a little selfish and think about your own journey too, not just those of your clients or customers (as well as your friends and family).</p>\n<p>Not only are you allowed to do that, but you should do that. Because if you donโ€™t help yourself first, you canโ€™t help anyone else around you.</p>\n<p>Several years ago, I wouldnโ€™t have thought of doing that. I mean, who the hell would want to listen to me? But I truly believe in the motto โ€œyour vibe attracts your tribeโ€ โ€“ it doesnโ€™t matter who you are, youโ€™ve got something worth sharing online that your tribe, whoever they are, would love.</p>\n<p>And itโ€™s never too late to start.</p>\n<hr />\n<p>There is a quote I really like by American actress,ย <NAME>:</p>\n<blockquote><p>โ€œThe handicap of deafness is not in the ear; it is in the mind.โ€</p></blockquote>\n<p>That quote applies to me perfectly, but you can also apply it to your own circumstances if deafness doesnโ€™t apply to you.</p>\n<p>Itโ€™s like that old saying we all heard as children: โ€œYou can do anything if you put your mind to it.โ€</p>\n<p>It is kind of true in a way, but it has taken me a long time to realise it. Even though I wish I had started earlier, itโ€™s about starting today rather than thinking about yesterday.</p>\n<p>And I think that can apply to any situation.</p>\n<p>Iโ€™m not just talking about creating a website. Itโ€™s also about finding the right time for you to let go of whatever is holding you back, and for you to understand what your next steps are.</p>\n<p>That was my challenge. I had to redefine myself if I wanted to move forward. I see no reason why you canโ€™t do that too.</p>\n<p>So here is my message to you: if you have something that is holding you back, I urge you to write down what you are going to do about it. You need to stick it somewhere where you can see it all the time.</p>\n<p>And if you are feeling REALLY brave, you can let me know in the comment section below what is holding you back in your life โ€“ and what you are doing to let it go.</p>\n<p>My way of doing that was to create another WordPress site to share my stories and document my journey.</p>\n<p>Because take it from me, once you do that, the world awaits youโ€ฆ online and offline.</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: The Deaf World May Await, But It&#8217;s Not Silent\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Deaf%20World%20May%20Await%2C%20But%20It%27s%20Not%20Silent&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fthe-deaf-world-may-await-but-its-not-silent%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Deaf World May Await, But It&#8217;s Not Silent\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fthe-deaf-world-may-await-but-its-not-silent%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%2Fthe-deaf-world-may-await-but-its-not-silent%2F&title=The+Deaf+World+May+Await%2C+But+It%26%238217%3Bs+Not+Silent\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Deaf World May Await, But It&#8217;s Not Silent\"></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/the-deaf-world-may-await-but-its-not-silent/&media=https://heropress.com/wp-content/uploads/2019/09/090518-min-150x150.jpg&description=The Deaf World May Await, But It\'s Not Silent\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Deaf World May Await, But It&#8217;s Not Silent\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/the-deaf-world-may-await-but-its-not-silent/\" title=\"The Deaf World May Await, But It&#8217;s Not Silent\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/the-deaf-world-may-await-but-its-not-silent/\">The Deaf World May Await, But It&#8217;s Not Silent</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, 05 Sep 2018 08:00:31 +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: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:108:\"WPTavern: AMP for WordPress Plugin to Introduce User-Friendly Theme Support Settings in Upcoming 1.0 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:29:\"https://wptavern.com/?p=83671\";s: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:119:\"https://wptavern.com/amp-for-wordpress-plugin-to-introduce-user-friendly-theme-support-settings-in-upcoming-1-0-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:14488:\"<p>In October, Google&#8217;s open source <a href=\"https://www.ampproject.org/\" rel=\"noopener noreferrer\" target=\"_blank\">AMP project</a> (Accelerated Mobile Pages) will be heading into its third year. The initiative aims to improve performance on the mobile web and currently boasts usage on 25 million domains across publishing, advertising, e-commerce, and business websites.</p>\n<p>WordPress had a rocky beginning with its <a href=\"https://wordpress.org/plugins/amp/\" rel=\"noopener noreferrer\" target=\"_blank\">official AMP plugin</a>, which was originally developed by Automattic, one of the earliest publishing partners on the project. The first versions of the plugin were not easy to use, especially for heavily customized installations. It required site owners to invest considerable effort into optimizing AMP pages and fine tuning them for their needs. AMP for WordPress <a href=\"https://wptavern.com/amp-project-turns-2-automattic-partners-with-google-to-improve-wordpress-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">went without updates for 10 months in 2017</a>, was fraught with errors, and incompatible with many other plugins.</p>\n<p>XWP began leading development of the plugin last year in partnership with Google, beginning with the 0.6 release. <NAME> is the tech lead with several XWP engineers contributing to development, design, and testing. <NAME>, Developer Advocate at Google, and his team have been leading the product management and outreach efforts.</p>\n<p>&#8220;Around May last year, my team at Google started a long-term effort with a bigger scope than just AMP, which included significantly investing engineering resources on the development of the plugin,&#8221; Medina said. &#8220;We started investing development resources, and then teamed up with XWP to expand the engineering scope. During this phase of the project Google and XWP have driven all the execution of the project and the development efforts.&#8221;</p>\n<p>Ruter said his team went through six months of the plugin&#8217;s support topics on WordPress.org and categorized them to figure out what issues users were struggling with most. They used that information to guide the focus for their first release and have been keeping a pulse on the support forum ever since.</p>\n<p>The plugin has incorporated many changes since XWP began spearheading its development, putting AMP&#8217;s newer features to use within the context of WordPress. Earlier versions of the plugin only allowed posts to be served as AMP but the 0.6 release added pages to its capabilities. Version 0.7 introduced the ability for all URLS on a site to served as AMP (โ€œNative AMPโ€) but lacked the ability for users to customize which types of content should be excluded from this format. The upcoming 1.0 release will allow users to have a native AMP site that excludes certain templates, such as a shopping cart or a category archive, from being served as AMP.</p>\n<p>&#8220;AMP initially was limited in functionality,&#8221; Ruter said. &#8220;The AMP plugin was created when AMP was young. In the beginning it was focused on Accelerated <em>Mobile</em> Pages and it wasn&#8217;t able to recreate full responsive experiences that site owners expect. This has changed and AMP is able to do a lot. So that is what we have been focused on with the AMP plugin, is to bring it up to speed with the AMP project itself so that WordPress sites can take advantage of all the features and functionality that are now available.&#8221;</p>\n<p>The team at XWP is aiming to release version 1.0 of AMP for WordPress in mid-September. The <a href=\"https://make.xwp.co/2018/06/09/amp-plugin-release-v1-0-alpha1/\" rel=\"noopener noreferrer\" target=\"_blank\">1.0 alpha release</a> introduced extended AMP theme support with a more user-oriented approach to the settings. Previous versions of the plugin were more developer-centric, requiring edits to a theme or child theme to configure template support. Users can now enable Native AMP or Paired mode on the AMP settings screen and the <a href=\"https://make.xwp.co/2018/07/06/amp-plugin-release-v1-0-beta1/\" rel=\"noopener noreferrer\" target=\"_blank\">beta release</a> adds granular controls for selecting supported templates.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/amp-1-0-beta.png?ssl=1\"><img /></a>image credit: <a href=\"https://make.xwp.co/2018/07/06/amp-plugin-release-v1-0-beta1/\">XWP</a>\n<p>Other notable updates in the alpha and beta releases include:</p>\n<ul>\n<li>Enhanced UI for handling AMP validation errors</li>\n<li>Expanded Gutenberg support to surface AMP validation errors at a block level</li>\n<li>Addition of AMP-specific functionality to core blocks</li>\n<li>Redirection to non-AMP URL when unaccepted validation errors present</li>\n<li>Beta brings back WP Admin Bar AMP menu with AMP error highlighting</li>\n</ul>\n<p>AMP for WordPress <a href=\"https://make.xwp.co/2018/08/06/amp-plugin-release-v1-0-beta2/\" rel=\"noopener noreferrer\" target=\"_blank\">v1.0-beta2</a> was released in August and is not yet ready for production use. The good news for those who want to use AMP is that the plugin is becoming more of a plug-and-play solution as development progresses.</p>\n<p>&#8220;There is only one setting that the user needs to change to take advantage of the new theme support: switching from legacy to paired or native,&#8221; Ruter said. &#8220;Everything else is optional and just customizes the behavior. There will be a new admin pointer in 1.0 that will call out this updated admin screen.&#8221;</p>\n<p>Ruter also said his team is considering implementing a wizard-type experience to minimize the number of tweaks users need to make. They are discussing automating the compatibility check of the various templates prior to enabling theme support so users can get a high level view of the areas of the site that would be best-suited for AMP.</p>\n<h3>AMP Remains a Controversial Solution to Web Page Performance</h3>\n<p>Many users encountered insurmountable difficulties in their first attempts at using the AMP plugin with highly customized sites, relegating AMP usage to sites with dedicated engineering teams. Early versions of the AMP project did not have the flexibility that many publishers required.</p>\n<p><NAME>, VP of Product and People at Spirited Media, home of The Incline, <NAME>enn, and Denverite publications, gave a presentation at WordCamp for Publishers titled &#8220;<a href=\"https://wordpress.tv/2018/08/22/brian-boyer-why-we-ditched-amp-and-other-ux-choices-we-made-for-launching-membership/\" rel=\"noopener noreferrer\" target=\"_blank\">Why we ditched AMP, and other UX choices we made for launching membership</a>.&#8221;</p>\n<p>&#8220;We need more control over our user experience than AMP allows &#8211; to build an unshitty, persuasive, native feeling, highly effective membership experience, I need a little more JavaScript,&#8221; Boyer said. &#8220;I need a little bit more control over the page and to be fair, we could probably make some of this stuff but we cannot afford to design, build, and most crucially, test multiple versions of our website.&#8221;</p>\n<p>Boyer cited the expense of of building and testing multiple codebases as one of the primary reasons his team ditched AMP. The complication of maintaining a second user experience was &#8220;far too much to ask&#8221; for his development team, who had already produced a fast, lightweight WordPress setup with proper caching.</p>\n<p>&#8220;An AMP page might load a little faster but our other needs far outweigh that minor performance improvement,&#8221; Boyer said. &#8220;We got over our FOMP (Fear of Missing Pageviews). If I can be better at making conversions, I&#8217;ll take the hit with pageviews.&#8221;</p>\n<p>Recent <a href=\"https://xwp.co/an-introduction-to-native-amp/\" rel=\"noopener noreferrer\" target=\"_blank\">Enhancements to the AMP project and the plugin</a>, including the addition of components allowing for the creation of rich interactive experiences, continue to narrow the gap between the custom JavaScript many websites require and AMP&#8217;s limitations. This may be encouraging for those who have chosen to embrace AMP, but ultimately will not make a difference for those who fundamentally oppose the initiative as an affront to the open web.</p>\n<p>Beyond the technical investment in fine-tuning an AMP setup to meet the needs of his publications, Boyer concluded the presentation by outlining his broader objections to the AMP project:</p>\n<blockquote><p>By policing slow websites, Google has turned the big publishers&#8217; problem into my problem, but that fix comes at a high cost to me, a small publisher,&#8221; Boyer said. &#8220;AMP is not the Open Web &#8211; it&#8217;s a short term fix for bad choices. If you build a slow and terrible website that supports a creepy business model, like tracking the shit out of your users, then yes, AMP is one path to a better user experience. It is an escape hatch from your legacy code and the bad choices of your predecessors. I understand why that would be tempting, but it is also a deal with the devil. AMP and its cousin Instant Articles put even more control in the hands of companies that already have too much control, and I for one cannot abide by that. I just ask you, do the work, fix your websites, make them fast, friendly, and respectful.</p></blockquote>\n<p>Other vocal critics are not comfortable with how Google is positioning AMP as a long-term solution, instead of addressing the root issues of web page performance. <NAME> articulated this stance in his article titled &#8220;<a href=\"https://adactio.com/journal/13964\" rel=\"noopener noreferrer\" target=\"_blank\">AMPstinction</a>.&#8221;</p>\n<p>&#8220;If the AMP project existed in order to create a web where AMP was no longer needed, I think I could get behind it,&#8221; Keith said. &#8220;But the more itโ€™s positioned as the only viable solution to solving performance, the more uncomfortable I am with it.</p>\n<p>&#8220;Which, by the way, brings me to one of the most pernicious ideas around Google AMPโ€”positioning anyone opposed to it as not caring about web performance. Nothing could be further from the truth. Itโ€™s precisely because performance on the web is so important that it deserves a long-term solution, co-created by all of us: not some commandants delivered to us from on-high by one organization, enforced by preferential treatment by that organizationโ€™s monopoly in search.&#8221;</p>\n<p>However, decoupling AMP from Google&#8217;s influence would also mean separating the project from the leadership and resources that have so far driven its adoption across millions of websites. There may be other approaches to addressing performance but <NAME> and his team see AMP as serving a practical purpose for users and developers who wouldn&#8217;t otherwise be capable of optimizing their sites to the same degree. What he described is in a sense &#8220;democratizing performance.&#8221;</p>\n<p>&#8220;The root causes of web performance problems are well known and there are tools, techniques, and web APIs, that allow developers to achieve awesome UX close to what AMP provides,&#8221; Medina said. &#8220;However, the reality is that doing so is very hard for most developers. Usually achieving it requires having solid engineering teams and enough financial resources. That is not fair for most developers and organizations that do not have the resources.&#8221;</p>\n<p>Medina sees AMP as an answer to what he describes as the <a href=\"https://medinathoughts.com/2018/05/17/progressive-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">Capability/Usage gap</a>: the difference between what can be achieved in the web and what is actually done in the web.</p>\n<p>&#8220;The problem is that as the power and complexity of the web increases, that gap has increased as well,&#8221; Medina said. &#8220;The problem is that as long as that gap exists, achieving the best UX is not possible. So, the goal is to close that gap. There are two options: developers do the right thing all the time, or we provide tooling/libraries that enable them to do the right thing in an easy and effective way. AMP served the latter purpose.&#8221;</p>\n<p>Medina also emphasized that AMP is fully built on open web technologies. &#8220;Basically, it provides what developers could do by themselves but it is hard to do,&#8221; he said.</p>\n<p>In a recent <a href=\"https://art19.com/shows/recode-decode/episodes/3d56208e-a4b9-4c74-861e-8fec105a4ee8\" rel=\"noopener noreferrer\" target=\"_blank\">Recode Decode podcast interview</a> with <NAME>, <NAME> also weighed in on the AMP project.</p>\n<p>&#8220;It gets a bad rap because Google kind of botched the rollout a little bit,&#8221; Mullenweg said. &#8220;The underlying tech is open source and it&#8217;s actually quite good. Because for you as an independent publisher to have a future, we need you to load just as fast as something that&#8217;s embedded in an app. Facebook has done the bait and switch so many times that we need an independent alternative and I think AMP can be that.&#8221;</p>\n<p>Google&#8217;s investment in the AMP plugin through its partnership with Automattic and XWP has made AMP more approachable for the average user, especially with the updates coming in version 1.0. Medina said Google chose to collaborate with WordPress because they share a similar goal of providing a better user experience for the platform.</p>\n<p>&#8220;AMP is not an end goal in itself; the real objective is enabling all WordPress developers and site owners to provide awesome user experiences powered by WordPress,&#8221; Medina said. &#8220;AMP is just a component in that overall story, together with PWA capabilities, coding and performance best practices, Tide, etc.&#8221; In architecting the latest version of the plugin, Medina said the team is aiming to &#8220;enable native AMP experiences in WordPress without compromising content fidelity or surrendering the flexibility of the WordPress platform.&#8221;</p>\n<p>Whatever your opinion of the AMP project, the user-friendly theme support options and better validation error handling are game changing improvements for the WordPress plugin. It is currently active on more than 300,000 sites. Updates coming in the 1.0 release will enable thousands of WordPress users to have a more successful experience with AMP.</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, 04 Sep 2018 21:28:48 +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:45:\"Dev Blog: The Month in WordPress: August 2018\";s: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=6191\";s: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:70:\"https://wordpress.org/news/2018/09/the-month-in-wordpress-august-2018/\";s: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:5553:\"<p>Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services, and documentation surrounding it. Read on to find out more about this ongoing project, as well as everything else that has been happening around the WordPress community in August.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.8 is Released</h2>\n\n<p><a href=\"https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\">WordPress 4.9.8 was released</a> at the beginning of the month. While this was a maintenance release fixing 46 bugs, it was significant for Core development because it made a point of highlighting Gutenberg โ€” the new WordPress editor that is currently in development (more on that below).<br /></p>\n\n<p>This release also included some important updates to the privacy tools that were added to Core earlier this year.<br /></p>\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 the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>New WordPress Editor Development Continues</h2>\n\n<p>Active development continues on <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new editing experience for WordPress Core. <a href=\"https://make.wordpress.org/core/2018/08/31/whats-new-in-gutenberg-31st-august/\">The latest version</a> features a number of important user experience improvements, including a new unified toolbar and support for a more focussed writing mode.<br /></p>\n\n<p>Users can test Gutenberg right now by installing <a href=\"https://wordpress.org/plugins/gutenberg/\">the plugin</a>, which currently has nearly 300,000 active installs. Along with that, <a href=\"https://wordpress.org/gutenberg/handbook/reference/faq/\">the Gutenberg Handbook</a> has some very useful information about how to use and develop for the new editor.<br /></p>\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/tag/gutenberg/\">the #gutenberg tag on the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Planning Begins for the Next Global WordPress Translation Day</h2>\n\n<p>The Global WordPress Translation Day is a 24-hour event held online and all across the world. It is designed to bring communities together to translate WordPress into their local languages, and to help them connect with other communities doing the same thing.<br /></p>\n\n<p>There have been three Translation Days since April 2016, and <a href=\"https://make.wordpress.org/polyglots/2018/08/29/global-wordpress-translation-day-4-preliminary-planning/\">the fourth edition is in the planning stages now</a>. The Polyglots team, who organizes these events, is currently looking for input on the date, format, and content for the event and would love some feedback from the community.<br /></p>\n\n<p>Want to get involved in translating WordPress into your own language? Follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.<br /></p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul><li><a href=\"https://wordpress.org/support/upgrade-php/\">The Update PHP page on WordPress.org</a> has been revised and improved to make the reasons for upgrading more clear.</li><li>The Mobile team is looking for people to help test the latest versions of the <a href=\"https://make.wordpress.org/mobile/2018/08/29/call-for-testing-wordpress-for-android-10-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/08/28/call-for-testing-wordpress-for-ios-10-8/\">iOS</a> apps for WordPress.</li><li><a href=\"https://wordbits.io/\">WordBits</a> is a innovative new platform for publishing WordPress-based code snippets with the ability to download each snippet as a working plugin.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2018/08/27/wordcamp-incubator-2018-update-thread-august-edition/\">has some updates</a> about how things are going with this yearโ€™s WordCamp Incubator program.</li><li>The WordPress Support Forums <a href=\"https://make.wordpress.org/support/2018/08/august-16th-support-team-meeting-summary/\">now include a feature</a> allowing forum volunteers to easily report a post to the moderators for a follow-up.</li><li>WordCamp Kochi, India <a href=\"https://2018.kochi.wordcamp.org/wordcamp-kochi-2018-is-postponed-to-november-3rd-2018-saturday/\">has unfortunately had to postpone their event</a> due to floods in the region.</li><li><a href=\"http://www.wpglossary.net/\">WP Glossary</a> is a new site that offers helpful definitions of words that you could encounter when using WordPress.</li><li>A few WordPress community members <a href=\"https://make.wordpress.org/community/2018/08/13/in-the-words-of-the/\">have started a working group</a> to tackle the idea of building diverse WordPress ย communities all across the world.</li><li>A new <a href=\"https://editorblockswp.com/library/\">Gutenberg Block Library</a> is available, listing the details of the many blocks available for the new editor.</li></ul>\n\n<p><em>If you have a story we should consider including 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:\"Mon, 03 Sep 2018 11:00: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: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:59:\"WPTavern: Gutenberg 3.7 Released, Introduces Spotlight Mode\";s: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=83662\";s: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:69:\"https://wptavern.com/gutenberg-3-7-released-introduces-spotlight-mode\";s: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:1786:\"<p>Gutenberg 3.7 <a href=\"https://wordpress.org/plugins/gutenberg/\">is available</a> for download and contains a number of changes. The Fixed Toolbar has been renamed Unified Toolbar. This is an optional mode that fixes all of the toolbar icons to the top of the editor, similar to the Classic editor.</p>\n\n<p>The team discovered that experienced users who don&#8217;t mind the disconnect between blocks and the toolbar preferred this layout. <br /></p>\n\n<div class=\"wp-block-image\"><img />Unified Toolbar</div>\n\n<p>There&#8217;s now an animation and icon specifically tailored for the Block Converter action. Hovering the cursor over a block&#8217;s icon will display two arrows that represent the ability to change block types. <br /></p>\n\n<div class=\"wp-block-image\"><img />Change Bock Types Icon</div>\n\n<p>For those who want to focus on one block of content at a time, there&#8217;s a new mode called Spotlight. When enabled, the blocks that are not being edited partially fade away and the block outlines disappear. This is an experimental attempt at introducing a <a href=\"https://wptavern.com/gutenberg-contributors-considering-a-focus-mode-for-writing\">Distraction Free Writing mode</a>. </p>\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/pull/9152\">icons have been updated</a> for Paragraph, Heading, and Subheading blocks to add clarity. Previous to 3.7, the Paragraph block icon looked like an alignment option causing confusion. </p>\n\n<div class=\"wp-block-image\"><img />Updated Icons for Paragraph, Heading, and Subheading blocks</div>\n\n<p>You can find a complete list of changes and links to corresponding issues on GitHub by visiting the <a href=\"https://make.wordpress.org/core/2018/08/31/whats-new-in-gutenberg-31st-august/\">Gutenberg 3.7 release post</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:\"Fri, 31 Aug 2018 21:34:08 +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:85:\"WPTavern: WPWeekly Episode 329 โ€“ Gutenberg, Forks, and WordPress Development Cycles\";s: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:58:\"https://wptavern.com?p=83650&preview=true&preview_id=83650\";s: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/wpweekly-episode-329-gutenberg-forks-and-wordpress-development-cycles\";s: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:3189:\"<p>In this episode, <a href=\"http://jjj.me\"><NAME></a> and I discuss the news of the week. We have a candid conversation about what it would be like if Gutenberg were merged into WordPress trunk earlier versus developed as a plugin. We also talk about Classic Editor install numbers, praising forks of WordPress, and some new tools that are available to search Gutenberg blocks. This might be the first episode since Jacoby took over as co-host that we ended the show in under an hour.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\">Gutenberg Block Library Provides a Searchable Index of Individual Blocks</a></p>\n<p><a href=\"https://wptavern.com/gutenberg-and-classic-editor-plugins-pass-200000-active-installations-wordpress-4-9-9-planning-underway\">Gutenberg and Classic Editor Plugins Pass 200,000 Active Installations, WordPress 4.9.9 Planning Underway</a></p>\n<p><a href=\"https://wptavern.com/wordpress-to-support-classic-editor-for-many-years-to-come-plugin-and-theme-markets-expected-to-drive-gutenberg-adoption\">WordPress to Support Classic Editor for โ€œMany Years to Come,โ€ Plugin and Theme Markets Expected to Drive Gutenberg Adoption</a></p>\n<p><a href=\"https://wptavern.com/gary-pendergast-praises-classicpress-extends-invitation-for-collaboration\">Gary Pendergast Praises ClassicPress, Extends Invitation for Collaboration</a></p>\n<p><a href=\"https://wptavern.com/wordcamp-for-publishers-2018-videos-now-available-on-wordpress-tv\">WordCamp for Publishers 2018 Videos Now Available on WordPress.tv</a></p>\n<p><a href=\"https://wptavern.com/wpcampus-2018-videos-are-now-available-to-watch\">WPCampus 2018 Videos Are Now Available to Watch</a></p>\n<p><a href=\"https://wptavern.com/new-network-media-library-plugin-creates-a-shared-library-on-a-multisite-network\">New Network Media Library Plugin Creates a Shared Library on a Multisite Network</a></p>\n<p><a href=\"https://wptavern.com/new-wp-glossary-site-translates-wordpress-techspeak-into-plain-english\">New WP Glossary Site Translates WordPress Techspeak into Plain English</a></p>\n<h2>Picks of the Week:</h2>\n<p>Jeff &#8211; <a href=\"https://www.youtube.com/channel/UCuhqf3xFlQcopapi4xHiTfA\">WP Minute</a> by <NAME> over at <a href=\"https://www.presstitan.com/\">PressTitan</a> &#8211; A new video series by a longtime friend and former co-host, <NAME> that provides quick updates on stories making the rounds in the WordPress ecosystem.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday,September 5th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribeย to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribeย to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribeย to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #329:</strong><br />\n</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, 30 Aug 2018 09:11:31 +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: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:75:\"WPTavern: Distributor Plugin Now Publicly Available, Adds Gutenberg Support\";s: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=83634\";s: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/distributor-plugin-now-publicly-available-adds-gutenberg-support\";s: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:2468:\"<p>10up&#8217;s Distributor plugin has exited beta and is <a href=\"https://10up.com/blog/2018/distributor-wordpress-syndication-reuse/\" rel=\"noopener noreferrer\" target=\"_blank\">now publicly available</a>. The free plugin syndicates content across WordPress multisite networks and the web. It <a href=\"https://wptavern.com/distributor-plugin-now-in-beta-a-new-wordpress-content-syndication-solution-from-10up\" rel=\"noopener noreferrer\" target=\"_blank\">went into beta</a> last year and 10up reports that more than 100 organizations and developers participated in the beta program.</p>\n<p>&#8220;Weโ€™ve already integrated many improvements contributed by beta testers, including 10up clients,&#8221; 10up President <NAME> said. &#8220;Distributor has been approved for use on WordPress.com VIP and is ready for enterprise implementations. We have a roadmap of planned enhancements, with ambitious plans including more advanced media distribution and sophisticated &#8216;take down&#8217; features for the forced removal of distributed content.&#8221;</p>\n<p>The public release of Distributor also introduces support for Gutenberg for the settings that are available in the edit screen. Users should be aware that this new feature is still in beta, as Gutenberg is still in active development and not has not yet been merged into WordPress core.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/distributor-gutenberg.png?ssl=1\"><img /></a>image credit: <a href=\"https://10up.com/blog/2018/distributor-wordpress-syndication-reuse/\">10up</a>\n<p>&#8220;Weโ€™ve even considered interoperability between the classic editor and Gutenberg, and instances where custom blocks are not registered on remote sites,&#8221; Goldman said. &#8220;All aspects of the user interface have been carried over to ensure a coherent and cohesive experience.&#8221;</p>\n<p>10up has also launched an Enterprise support package that offers faster response for issues, support for custom integrations, and white-labeling. Support packages fund ongoing development and customers have the opportunity to help shape the roadmap of the plugin.</p>\n<p>Distributor is available at <a href=\"http://distributorplugin.com\" rel=\"noopener noreferrer\" target=\"_blank\">distributorplugin.com</a> where users can register to get a free license key. The plugin is also <a href=\"https://github.com/10up/distributor\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</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, 29 Aug 2018 21:48: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: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: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:75:\"WPTavern: Gutenberg Contributors Considering a โ€œFocus Modeโ€ for Writing\";s: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=83525\";s: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/gutenberg-contributors-considering-a-focus-mode-for-writing\";s: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:4462:\"<p>After overwhelming <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" rel=\"noopener noreferrer\" target=\"_blank\">feedback from testers</a> indicating that Gutenberg is not well suited for simply writing posts, the project&#8217;s contributors are considering a few options for improving the writing flow. These proposals are spread across several tickets on GitHub.</p>\n<p>Two weeks ago, Gutenberg technical lead <NAME> submitted a PR exploring the possibility of <a href=\"https://github.com/WordPress/gutenberg/pull/8920\" rel=\"noopener noreferrer\" target=\"_blank\">introducing a &#8220;Focus Mode&#8221; to the editor</a>. This mode would highlight the current selected block with all other blocks faded while the &#8220;fix toolbar to header&#8221; option is enabled. The video below shows an example of what that might look like:</p>\n<p></p>\n<p>&#8220;The aim is to provide a writing experience that can satisfy those that would prefer an environment with the least amount of distractions at the expense of tool clarity,&#8221; Ventura said. &#8220;I&#8217;ve been testing this and personally find it a very enjoyable mode to toggle when I just want to write for a bit. Paired with a robust set of keyboard shortcuts it could be quite nice to use. In this sense, it&#8217;d be important to provide an easy keyboard shortcut to toggle the mode on and off.&#8221;</p>\n<p>Automattic designer <NAME> opened another <a href=\"https://github.com/WordPress/gutenberg/issues/9334\" rel=\"noopener noreferrer\" target=\"_blank\">ticket</a> that proposes transforming the &#8220;Fix Toolbar to Top&#8221; setting into a &#8220;Focus Mode.&#8221;</p>\n<p>&#8220;A key feedback point we hear is that Gutenbergโ€™s interface can be a little overwhelming,&#8221; Reigstad said. &#8220;This often comes from users who more commonly focus on &#8216;writing&#8217; versus &#8216;building&#8217; their posts. They find the contextual block controls and block hover states to be distracting: When they&#8217;re focused on writing, they don&#8217;t necessarily want to think about blocks โ€” they just want to write.&#8221;</p>\n<p>Reigstad said this same subset of users also misses having the formatting toolbar at the top of the page, as it is in other applications like Google Docs, MS Word, and WordPress&#8217; classic editor. He proposed a solution that addresses these concerns by combining the &#8220;Fix Toolbar to Top&#8221; option with the following UI changes that would provide a more complete &#8220;Focus Mode:&#8221;</p>\n<ul>\n<li>The block toolbar would be pinned to the top of the screen.</li>\n<li>The editor would be full screen.</li>\n<li>Block outlines would be removed for both hover and selected states.</li>\n<li>The block label would appear on a delay, and be toned down visually.</li>\n<li>Block mover + block options would also appear on a delay.</li>\n</ul>\n<p>Reigstad also created a video demo of this concept:</p>\n<p></p>\n<p>This new &#8220;focus Mode&#8221; concept is also compatible with Ventura&#8217;s proposal for highlighting the current selected block and fading out the others. It could either be present in both modes or available as an add-on feature.</p>\n<p>A couple of well-written reviews on the Gutenberg plugin <a href=\"https://wordpress.org/support/topic/not-everyone-needs-everything-to-be-blocks-gutenberg-must-focus-on-writers/\" rel=\"noopener noreferrer\" target=\"_blank\">describe how the concept of blocks complicates the writing experience</a> and how Gutenberg&#8217;s current writing environment is <a href=\"https://wordpress.org/support/topic/gutenberg-gets-wordpress-wrong-and-is-a-terrible-writing-environment/\" rel=\"noopener noreferrer\" target=\"_blank\">visually distracting and disruptive</a>. This has been a major concern since the plugin was first released for testing, as there are many users who depend on WordPress for its writing features more than the page building aspects.</p>\n<p>The Gutenberg team&#8217;s new ideas go a long way towards decluttering the interface for writers. This is especially important for those who want to do their long-form writing inside WordPress, instead of beginning their work in an application that is dedicated to providing a distraction-free writing experience. Introducing a &#8220;focus mode&#8221; or &#8220;writing mode&#8221; will solve one of the most critical issues with the new editor and we&#8217;re looking forward to seeing how this develops.</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, 29 Aug 2018 18:32:08 +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:21;a:6:{s:4:\"data\";s:11:\"\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:31:\"HeroPress: WordPress Is For You\";s: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://heropress.com/?p=2610\";s: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://heropress.com/wordpress-is-for-you/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-is-for-you\";s: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:3215:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/08/OpenUpDoors-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: This one simple attitude adjustment, changing โ€œnoโ€ to โ€œlet me look into thatโ€, opened up more doors and possibilities than I ever thought possible.\" /><p>When HeroPress started, a stated intention was to be a voice for people on the fringe of the Western WordPress culture. In my head I thought this geographical, and involved places like Africa and Asia. I quickly came to realize that everyone is on the fringe of something.</p>\n<p>This month&#8217;s HeroPress replay is titled &#8220;<a href=\"https://heropress.com/essays/doing-what-i-want/\">Doing What I Want</a>&#8221;ย  by <NAME>. Becky&#8217;s an American, but she doesn&#8217;t fit the American IT worker mold of young white male. In fact, her gender and age were regular friction points in her attempts to get jobs. She&#8217;s not old by any means, but she&#8217;s not 19 either.</p>\n<p>WordPress became a place for her where things like age and gender don&#8217;t matter nearly as much as other jobs. Check out Becky&#8217;s essay and perhaps drop her a comment.</p>\n<p>&nbsp;</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/doing-what-i-want/\">Doing What I Want</a></p></blockquote>\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: WordPress Is For You\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Is%20For%20You&via=heropress&url=https%3A%2F%2Fheropress.com%2Fwordpress-is-for-you%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Is For You\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fwordpress-is-for-you%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%2Fwordpress-is-for-you%2F&title=WordPress+Is+For+You\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Is For You\"></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/wordpress-is-for-you/&media=https://heropress.com/wp-content/uploads/2015/08/OpenUpDoors-150x150.jpg&description=WordPress Is For You\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Is For You\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/wordpress-is-for-you/\" title=\"WordPress Is For You\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/wordpress-is-for-you/\">WordPress Is For You</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, 29 Aug 2018 12:17: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:\"\";}}}}}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:84:\"WPTavern: <NAME> Praises ClassicPress, Extends Invitation for Collaboration\";s: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=83608\";s: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:94:\"https://wptavern.com/gary-pendergast-praises-classicpress-extends-invitation-for-collaboration\";s: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:2529:\"<p>Gutenberg and WordPress core contributor <NAME> has <a href=\"https://pento.net/2018/08/26/forking-is-a-feature/\">weighed in</a> with this thoughts on <a href=\"https://wptavern.com/classicpress-gutenberg-not-included\">ClassicPress</a>, a fork of WordPress created by <NAME>. Pendergast praises the fork and extended an open invitation to Bowler to collaborate in the future. </p>\n\n<blockquote class=\"wp-block-quote\"><p>As a member of the WordPress core team, I certainly hold no ill-feelings towards them, and I hope theyโ€™ll be open to working with us in the future. I hope weโ€™ll be able to learn from their work, to improve WordPress for everyone.</p><p>Ultimately, we all share the same goal: creating a free and open web, \nfor everyone to enjoy. While ClassicPress has styled itself as a protest\n against Gutenberg for now, I hope theyโ€™ll find their voice <em>for</em> something, instead of just <em>against</em> something.</p><cite>Gary Pendergast</cite></blockquote>\n\n<p>In the comments of the article, Pendergast <a href=\"https://pento.net/2018/08/26/forking-is-a-feature/#comment-37409\">received harsh criticism</a> for writing blog posts instead of working on Gutenberg&#8217;s 1K plus issuesย on GitHub. In an example of <a href=\"https://chrislema.com/grace/\">showing grace</a>, Pendergast <a href=\"https://pento.net/2018/08/26/forking-is-a-feature/#comment-37412\">responds</a> to the person&#8217;s question of whether or not Gutenberg&#8217;s development team is correctly prioritizing their time.</p>\n\n<p>&#8220;Personally, I believe weโ€™re doing a reasonable job, though we could probably lean a little <em>more</em> towards blogging than we are now,&#8221; he said. &#8220;Thereโ€™s been valid criticism that the Gutenberg team has been less communicative than it could be, which weโ€™re working to address.&#8221;</p>\n\n<p>Additionally, Pendergast compared the number of open issues in other projects and dismissed it as a measurement of software quality or readiness. </p>\n\n<p>Personally, I miss reading blog posts about WordPress from core developers. Many of the people on the <a href=\"https://planet.wordpress.org/\">Planet WordPress feed</a> no longer work on the project or write about WordPress. </p>\n\n<p>I always enjoyed when they shared their deep knowledge of the software or explained why they decided to lead the project in a certain direction. Pendergast&#8217;s post is a breath of fresh air and something I&#8217;d like to see more often from other core contributors.<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:\"Wed, 29 Aug 2018 04:58: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: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:80:\"WPTavern: New WP Glossary Site Translates WordPress Techspeak into Plain English\";s: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=83522\";s: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:91:\"https://wptavern.com/new-wp-glossary-site-translates-wordpress-techspeak-into-plain-english\";s: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:3701:\"<p><a href=\"http://www.andersnoren.se/\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> has launched a new website called <a href=\"https://www.wpglossary.net/\" rel=\"noopener noreferrer\" target=\"_blank\">WP Glossary</a> that contains definitions for terms that people encounter when using WordPress. The resource was born out of a need to provide documentation for client projects.</p>\n<p>&#8220;The last time I updated the glossary for a new client documentation, in the middle of May this year, it hit me that there must be a website for this,&#8221; Norรฉn said. &#8220;A list of WordPress definitions written not for WordPress developers, but for those who manage WordPress websites either as part of their work or in their spare time.&#8221;</p>\n<p>Norรฉn said he found resources written for developers but nothing satisfactory for regular WordPress users. Inspired to fill this gap, he bought a domain name and built the site over the next couple weeks. WP Glossary contains definitions for nearly a hundred WordPress-specific and industry-related terms, with more than 25,000 total words.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/wp-glossary.jpg?ssl=1\"><img /></a>image credit: <NAME>\n<p>Norรฉn, who has recently jumped into client work with a new agency, is better known for his popular minimalist <a href=\"https://wordpress.org/themes/author/anlino/\" rel=\"noopener noreferrer\" target=\"_blank\">themes on WordPress.org</a>. His 17 themes have a cumulative rating of 4.97 out of 5 stars and <a href=\"http://wptally.com/?wpusername=anlino\" rel=\"noopener noreferrer\" target=\"_blank\">more than 2.1 million downloads</a>. He designed the WP Glossary site, wrote all the definitions, and credits <a href=\"https://twitter.com/tdh\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> for feedback on the design and editorial assistance.</p>\n<p>Each glossary term includes a plain English definition and common use cases with a bit of WordPress history sprinkled in. The terms also link to related documentation and some also have related WordPress.tv links. The <a href=\"https://www.wpglossary.net/word/default-themes/\" rel=\"noopener noreferrer\" target=\"_blank\">Default Themes</a> term is the longest article on the site with 1,744 words. Each term has a &#8220;Send Corrections&#8221; link that visitors can use if they see a term that could be improved.</p>\n<p>WP Glossary was enthusiastically received when Norรฉn <a href=\"https://twitter.com/andersnoren/status/1033636227994533888/photo/1\" rel=\"noopener noreferrer\" target=\"_blank\">announced it on Twitter</a>. Many commented that the site will be useful for meetups with members who are new to WordPress and need a quick way to look up some of the jargon they encounter.</p>\n<p>Norรฉn&#8217;s glossary project overlaps with a glossary the WordPress Marketing team <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\" rel=\"noopener noreferrer\" target=\"_blank\">published</a> earlier this year. WP Glossary is more in-depth and contains less techspeak than the marketing team&#8217;s copy. It is also targeted at people who use WordPress as part of their job or as a hobby.</p>\n<p>The sheer volume of terms on this site reveals how much insider language one encounters while managing a WordPress site. If you&#8217;re working in the WordPress world every day, it&#8217;s easy to forget how unfamiliar these terms are to new users. WP Glossary is released under the Creative Commons Attribution 4.0 International license (CC BY 4.0) so freelancers and agencies that want to duplicate, modify, and share the material have permission to do so with attribution.</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, 28 Aug 2018 20:25:50 +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: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:84:\"WPTavern: A Proposal for Improving the Change Block Type User Interface in Gutenberg\";s: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=83570\";s: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:95:\"https://wptavern.com/a-proposal-for-improving-the-change-block-type-user-interface-in-gutenberg\";s: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:3549:\"<p>In Gutenberg 3.6.2, the development team moved the Convert Block option to the left most icon in the toolbar. As long as the toolbar is visible, so is the option to change block types. However, there are a few user experience issues with this approach.<br /></p>\n\n<img />Convert Block Option\n\n<p>The first is obvious. The paragraph block icon looks like an alignment option. The second issue is that the icon represents the current block being edited, sort of like a block label. Unless a user hovers their cursor over the icon, it&#8217;s difficult to realize that it&#8217;s for changing block types. </p>\n\n<p><a href=\"https://twitter.com/kevinwhoffman\" rel=\"noreferrer noopener\" target=\"_blank\"><NAME></a>,ย a WordPress developer and core contributor, <a href=\"https://github.com/WordPress/gutenberg/issues/9127#issuecomment-416058227\">has proposed</a> a new user interface suggestion that aims to solve the issues mentioned above. </p>\n\n<img />Suggested Changes by <NAME>\n\n<p>Hoffman suggests changing the icon to a drop-down menu, similar to the one in the Classic Editor. The menu would make the ability to change block types more discoverable. It removes confusion associated with icons and is a workflow that&#8217;s already established. </p>\n\n<p>Gutenberg developer <NAME> <a href=\"https://github.com/WordPress/gutenberg/issues/9127#issuecomment-416166190\">thanked Hoffman</a> for the feedback and listed a number of things to consider with his approach. These include the editor&#8217;s <a href=\"https://github.com/WordPress/gutenberg/issues/7479#issuecomment-410988762\">need to be responsive</a>, <a href=\"https://github.com/WordPress/gutenberg/issues/9075\">scale to editors</a> with thin columns, accessibility, and accommodating long block names. </p>\n\n<p>Gutenberg technical lead <NAME> <a href=\"https://github.com/WordPress/gutenberg/issues/9127#issuecomment-416206202\">also commented</a> on the proposal.</p>\n\n<blockquote class=\"wp-block-quote\"><p>Just wanted to say thanks for all the constructive voices here and willingness to find better solutions. If there&#8217;s anything that is fairly clear is that the current &#8216;block switching&#8217; interaction is not as obvious as it could be.</p><p>I think using the paragraph icon instead of the one that is easily confused as alignment, <a href=\"https://github.com/jasmussen\">@jasmussen</a>&#8216;s update in <a href=\"https://github.com/WordPress/gutenberg/pull/9310\">#9310</a>, plus the addition of the drop-down arrow are a good baseline to check on the next release and see if we need something more involved. <a href=\"https://github.com/kevinwhoffman\">@kevinwhoffman</a> it&#8217;d be great to expand on your proposal and see how it might look across more blocks and nested contexts.</p><cite><NAME></cite></blockquote>\n\n<p>Depending on your workflow, changing block types will be a common action. For example, I often press enter at the end of a paragraph block which creates a new paragraph block automatically. Being able to easily identify and use the change block type option will improve my writing experience.<br /></p>\n\n<p>Those with feedback on Hoffman&#8217;s proposal are encouraged to <a href=\"https://github.com/WordPress/gutenberg/issues/9127\">respond to the issue</a> on GitHub. It&#8217;s also worth noting that the team is <a href=\"https://github.com/WordPress/gutenberg/pull/9310#issuecomment-416210915\">experimenting with using an icon</a> that&#8217;s designated specifically for changing block types. <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, 28 Aug 2018 08:24:52 +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: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:137:\"WPTavern: WordPress to Support Classic Editor for โ€œMany Years to Come,โ€ Plugin and Theme Markets Expected to Drive Gutenberg Adoption\";s: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=83528\";s: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:141:\"https://wptavern.com/wordpress-to-support-classic-editor-for-many-years-to-come-plugin-and-theme-markets-expected-to-drive-gutenberg-adoption\";s: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:7283:\"<p>During the <a href=\"https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/\" rel=\"noopener noreferrer\" target=\"_blank\">2017 State of the Word</a> address, <NAME> announced the availability of the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> plugin for site owners who are not ready to adopt Gutenberg when it makes its debut in WordPress 5.0. Since its release, the community has speculated about what the plugin&#8217;s active installation numbers mean and how long it will be supported.</p>\n<p><NAME> has confirmed that support for the Classic Editor will be available for &#8220;many years to come,&#8221; which should come as a relief to those who feared that WordPress would drop support for the old editor after a year or two.</p>\n<p>&#8220;I love that people are using the Classic Editor plugin!&#8221; Mullenweg said in <a href=\"https://wptavern.com/gutenberg-and-classic-editor-plugins-pass-200000-active-installations-wordpress-4-9-9-planning-underway#comment-257369\" rel=\"noopener noreferrer\" target=\"_blank\">comment</a> on a recent post. &#8220;There is an infinite number of ways that WP can be used and not all will be ready for Gutenberg when 5.0 is released, Classic allows people to still be able to update core and stay current with releases, and with the click of a button try out Gutenberg again in the future if they want to. Itโ€™s also trivial to maintain because Gutenberg also uses TinyMCE, so Classic Editor users will still get improvements and updates to TinyMCE โ€” I wonโ€™t say &#8216;forever&#8217; but I donโ€™t see any reason why we canโ€™t maintain classic for the edit screen for many years to come.&#8221;</p>\n<p>These assurances about the continued availability of the classic editor mean that WordPress product developers will need to decide if they want to provide support for both editing experiences or go full steam ahead with Gutenberg, limiting support to WordPress 5.0+. We don&#8217;t yet know how many users will be installing the Classic Editor after WordPress 5.0 is released but that may inform more product decisions in the future.</p>\n<h3>The Market Will Drive Gutenberg Adoption</h3>\n<p>During the Q&amp;A following the State of the Word in 2017, WordPress developer <a href=\"https://twitter.com/kevinwhoffman\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> asked a question about the prospect of developers having to support two different editing interfaces:</p>\n<blockquote><p>Hearing you suggest the Classic Editor plugin and different ways to undeclare support for Gutenberg leads me to this idea that we are headed towards a split admin interface with no finality to the transition, meaning that I don&#8217;t see a time in the future where everyone will be on Gutenberg. We will always have these people in classic mode. As plugin and theme developers, we will always have to support two different types of users. How do we reach that point where we are past the transition, however long it might take, where we can not have this box of chocolates effect where you click &#8220;edit post type&#8221; and you never know what you&#8217;re going to get?</p></blockquote>\n<p>Mullenweg said his hope and expectation, based on how this has worked out with new interfaces in the past, is that over time product developers would adopt the latest interface. He cited the Customizer as one example where one is now very hard-pressed to find a theme developer who is rolling their own options panel after the Customizer was introduced as the new standard. It was just three years ago in 2015 when <a href=\"https://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org began requiring theme options to be built using the Customizer</a> and now it is used everywhere.</p>\n<p>&#8220;The truth is, if you are a plugin or theme developer, people are going to expect things in Gutenberg, so you really need to develop for Gutenberg,&#8221; Mullenweg said. &#8220;And then, at some point, I&#8217;m totally ok if you drop support for the Classic [Editor]. There will be themes and plugins that will say you need to have Gutenberg, [WP] 5.0 or newer if you want to use this.</p>\n<p>&#8220;We already have that existing now. Plugins only support so far back in PHP in WordPress. There will be plugins that don&#8217;t support under WordPress 5.0. It&#8217;s not going to be that much different from supporting different WordPress versions where people choose sometimes to go way way way back, sometimes a year or several years, and support WordPress 3.8 and 3.9. And some don&#8217;t bother anymore. There&#8217;s lots of APIs and other things that changed during that time. At some point you just have to make a cost benefit analysis and do things like maybe Yoast is doing for upgrading PHP, and say, &#8216;Hey, if you really want the best of this, check out this new thing.\'&#8221;</p>\n<p>As Gutenberg blocks become the standard way of extending WordPress&#8217; editing and customization capabilities, the market will drive its adoption. This is already happening with new blocks and block collections being released every day. The new <a href=\"https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg Block Library</a> offers a glimpse of that and there are many more blocks on GitHub that are not yet commercially marketed.</p>\n<p>During that December 2017 Q&amp;A, developers seemed to be excited about the Gutenberg demos they had just seen but their uneasiness was palpable in their questions. Now, eight months later, the current proliferation of Gutenberg themes and plugins demonstrates that WordPress developers are ready to embrace the new editor and build the creative extensions that Gutenberg&#8217;s creators&#8217; had always anticipated.</p>\n<p>&#8220;Iโ€™m really looking forward to seeing what the design and developer community can build with it and where their imaginations can take us from there,&#8221; Gutenberg technical lead <NAME> said when I <a href=\"https://wptavern.com/interview-with-matias-ventura-on-building-the-vision-for-gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">interviewed</a> him in June. &#8220;Core is going to supply the infrastructure and the main building blocks but itโ€™s everything that can be built around it thatโ€™s going to be exciting, as always with WordPress.โ€</p>\n<p>The extension ecosystem that made WordPress a success in the first place is going to be a key influence in driving adoption for the new editor. Major players in the product market are not waiting to see how users react to the new editor before building their Gutenberg-compatible interfaces. Users may not be compelled by the writing experience, but Gutenberg&#8217;s block model will provide a better framework for site customization and a core standard for page builders that interface with WordPress. If the blocks pouring into the ecosystem right now are any indication, the plugin market surrounding Gutenberg is going to offer an exciting variety of tools for site building.</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, 28 Aug 2018 04:28:28 +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:82:\"WPTavern: Gutenberg Block Library Provides a Searchable Index of Individual 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=83507\";s: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/gutenberg-block-library-provides-a-searchable-index-of-individual-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:4439:\"<p>An avalanche of blocks is pouring into the WordPress ecosystem ahead of Gutenberg&#8217;s inclusion in core. A few block collections, such as Atomic Blocks, Stackable, and CoBlocks, can be found on <a href=\"https://wordpress.org/plugins/search/gutenberg+block/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org</a>, but it&#8217;s not easy to search the individual blocks they contain. Other collections and standalone blocks are spread across the web. WordPress theme developer <a href=\"https://twitter.com/dannycooper147\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a> has built a centralized <a href=\"https://editorblockswp.com/library\" rel=\"noopener noreferrer\" target=\"_blank\">library of Gutenberg blocks</a> that are currently available to extend the new editor.</p>\n<p>The library loads blocks into a grid with infinite scroll. It is searchable, so visitors can easily find individual blocks that are part of a collection. Blocks are also tagged, which makes it possible to compare a group of similar blocks. Individual listings display screenshots of the block in action and its settings panel, as well as a link to the author and a link to download.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/screely-1535383280324.png?ssl=1\"><img /></a></p>\n<p>The Gutenberg Block Library currently has more than four dozen blocks. Visitors and block creators can <a href=\"https://editorblockswp.com/submit-block/\" rel=\"noopener noreferrer\" target=\"_blank\">submit a block</a> that is missing from the library.</p>\n<p>Cooper is the owner of <a href=\"https://olympusthemes.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Olympus Themes</a>, a small collection of free and commercial niche-focused WordPress themes. He has also created his own blocks collection called <a href=\"https://editorblockswp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Editor Blocks</a>, which focuses on blocks for business sites. His corresponding <a href=\"https://wordpress.org/themes/editor-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Editor Blocks theme</a> is available for free on WordPress.org with support for all the business blocks.</p>\n<p>&#8220;As a theme developer I&#8217;d been waiting for a way to build themes in a way where what you see on the backend matches what you will see on the frontend,&#8221; Cooper said. &#8220;That can be achieved to some extent using the Customizer, but it&#8217;s hard to craft more than one complex page using that method.&#8221;</p>\n<p>Cooper comes from a PHP/jQuery background and said he didn&#8217;t have a strong enough understanding of ES6, Webpack, Babel, React to create Gutenberg blocks right away. The learning curve was a little steep but after getting a handle on the basics he is now able to make small contributions to the Gutenberg project.</p>\n<p>&#8220;It felt like I was hitting a brick wall every five minutes when I started,&#8221; he said. &#8220;<a href=\"https://gutenberg.courses/development/\" rel=\"noopener noreferrer\" target=\"_blank\">Zac Gordon&#8217;s course</a> helped me get past that stage. The #core-editor slack channel was a big help too. Other than that I just studied the code of the core blocks and used Google. As my knowledge increased I&#8217;ve tried to reach out by submitting bug reports to other Block Libraries and making minor contributions to the Gutenberg project on Github.&#8221;</p>\n<p>WordPress.org may be able to benefit from a centralized block library in the future, as people will be frequently searching for blocks after Gutenberg lands in core. Cooper said if WordPress.org had a library like this it might even be possible to find and install blocks from inside Gutenberg.</p>\n<p>&#8220;I could build a block that searches my library but it wouldn&#8217;t be able to install them as most are part of a &#8216;collection,\'&#8221; Cooper said. &#8220;I&#8217;m not sure if in the future the &#8216;collections&#8217; will continue to grow or people will move towards releasing individual blocks.&#8221;</p>\n<p>In the meantime, the Gutenberg Block Library provides a helpful resource for early adopters. Browsing through the listings, it&#8217;s exciting to see the variety of block functionality that the community is creating. Users who fully embrace Gutenberg in WordPress 5.0 will find dozens of blocks (and perhaps hundreds by that time) available for the new editor, if they know where to look.</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, 27 Aug 2018 16:45: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: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:57:\"WPTavern: WPCampus 2018 Videos Are Now Available to Watch\";s: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=83466\";s: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/wpcampus-2018-videos-are-now-available-to-watch\";s: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:1710:\"<p>WPCampus 2018 was held July 12-14, 2018, at <a href=\"https://wustl.edu/\">Washington University</a> in St. Louis, Missouri. Educators, staff, and those in higher-education gathered to learn how WordPress can be and is used in higher-education environments. </p>\n\n<p>If you couldn&#8217;t attend in person or watch the live stream, you can now watch all of the sessions for free. Visit the event&#8217;s <a href=\"https://2018.wpcampus.org/schedule/\">schedule page</a> and click the Watch Session button. Alternatively, you can click on a session&#8217;s title to read a brief description and then watch the embedded video.</p>\n\n<p>Videos are hosted on YouTube which makes it easy to share and embed them. There are also links to view the presenter&#8217;s slides.</p>\n\n<p>If you have time, I recommend watching <a href=\"https://2018.wpcampus.org/schedule/gutenready-for-the-gutenpocalypse/\">GutenReady for the Gutenpocalypse</a> by <NAME> and <NAME> who work at North Carolina State University in the Information and Technology Department. </p>\n\n<p>In this presentation, the duo explain what they&#8217;re doing to get staff, students, and campus sites prepared for Gutenberg. <br /></p>\n\n\n\n\n\n<p>In addition to the presentation above, I also recommend listening to <a href=\"https://wptavern.com/wpweekly-episode-324-getting-nc-state-gutenready\">episode 324</a> of WordPress Weekly where McFarland describes their experience so far in transitioning sites to Gutenberg, building custom blocks, and discussing what the future of themes might be like once the project is merged into WordPress. </p>\n\n<p>WPCampus organizers are in the beginning stages of planning next year&#8217;s event. </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, 24 Aug 2018 19:10: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:115:\"WPTavern: Gutenberg and Classic Editor Plugins Pass 200,000 Active Installations, WordPress 4.9.9 Planning Underway\";s: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=83475\";s: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:124:\"https://wptavern.com/gutenberg-and-classic-editor-plugins-pass-200000-active-installations-wordpress-4-9-9-planning-underway\";s: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:6122:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/printing-letters.jpg?ssl=1\"><img /></a>photo credit: reingestalter <a href=\"http://www.flickr.com/photos/44668468@N00/115805043\">numeral types</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>It has been three weeks since the &#8220;Try Gutenberg&#8221; prompt was sent out in WordPress 4.9.8 and the <a href=\"https://wordpress.org/plugins/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">plugin</a> has now passed 200,000 active installations. The callout has increased the visibility of the Gutenberg project and brought necessary feedback to the development and design of the new editor.</p>\n<p>Prior to WordPress 4.9.8, Gutenberg reviews held a 2.7-star average on WordPress.org. Negative reviews continue to pour in and the average rating has slipped to 2.3 stars. Users are reporting that the new editor is too complicated, cumbersome, and that it offers an inferior writing experience. A few positive reviews are sprinkled in between, calling the editor a &#8220;necessary step forward,&#8221; and those reviewers seem hopeful that others will feel the same once they get past the learning curve. The vast majority of reviews, both positive and negative, report that Gutenberg&#8217;s interface is not yet intuitive to use.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-24-at-10.32.49-AM.png?ssl=1\"><img /></a></p>\n<p>The Gutenberg team&#8217;s responses to reviews have improved to be less &#8220;canned&#8221; since the <a href=\"https://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\" rel=\"noopener noreferrer\" target=\"_blank\">initial reactions</a> a few days after the Gutenprompt went out. However, the team still appears to be combing the feedback for bugs with the existing interface. Overall, the team&#8217;s responses are unified in a general unwillingness to admit that there are critical flaws preventing the interface from being more well-received.</p>\n<p>Active installations of the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> plugin, the official antidote for those do not wish to adopt Gutenberg when it ships in WordPress 5.0, have climbed to more than 200,000. This number is about equal to the number of sites that have Gutenberg active. The Gutenberg team does not view Classic Editor installs as an important metric for understanding Gutenberg adoption or rejection but rather see these installs as a healthy intermediary step for sites keeping the same workflow while preparing for Gutenberg.</p>\n<p>In response to recent discussion surrounding the <a href=\"https://wptavern.com/classicpress-gutenberg-not-included\" rel=\"noopener noreferrer\" target=\"_blank\">ClassicPress fork of WordPress</a>, <NAME> <a href=\"https://wptavern.com/classicpress-gutenberg-not-included#comment-256813\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>, &#8220;No plans to ever have direct vote determine strategic direction in WP, but we are having a bit of a referendum in the adoption of the Gutenberg and Classic Editor plugins, people are voting with their usage. The people are deciding.&#8221;</p>\n<p>This is essentially true in that users can decide if they want to adopt Gutenberg or not, for as long as the Classic Editor is supported. The Classic Editor plugin is an option people demanded but now the reality of two different admin experiences is nearer than before. The notion of a fork, though perhaps not a serious threat to the project, makes it painfully clear what some users are willing to do in order to avoid Gutenberg.</p>\n<p>With the number of Classic Editor plugin installations on the rise, WordPress is headed towards a fractured admin experience. For some it may be a healthy transition option, but in the end, the number of Classic Editor installations indicates how many sites will be running an alternative editing experience because site owners are either not ready or not willing to adopt Gutenberg.</p>\n<p>At some point in the future, WordPress will need to unite the editing experience, either by winning these users over to Gutenberg or by discontinuing support for the Classic Editor. In the meantime, WordPress product developers will need to provide support for both editing experiences or go all in on one or the other. It has the potential to erode WordPress&#8217; momentum for a few years, especially if Gutenberg doesn&#8217;t become more intuitive.</p>\n<h3>WordPress 4.9.9 Is Expected to be a 6-8 Week Maintenance Cycle</h3>\n<p>WordPress contributors met this week to <a href=\"https://make.wordpress.org/core/2018/08/24/dev-chat-summary-august-22-2018-4-9-9-weeks-1-2/\" rel=\"noopener noreferrer\" target=\"_blank\">discuss WordPress 4.9.9</a>.</p>\n<p>&#8220;As of now thereโ€™s no specific timeline for 4.9.9,&#8221; <NAME> said. &#8220;That will get set once release leads are in place. However, Iโ€™d like to try and finalize leads in next weekโ€™s meeting or shortly thereafter so that we can begin 4.9.9 planning and coordination as we get into September.&#8221; Paul requested contributor submit nominations for release leads, for themselves or others, ahead of next week&#8217;s meeting.</p>\n<p>&#8220;Until we have a confirmed timeline and plan for 5.0, my assumption is that weโ€™ll continue with our minor release cadence of ~6-8 weeks with specific focus on items needed in support of 5.0,&#8221; Paul said.</p>\n<p>During his announcement at WordCamp Europe in Belgrade, <NAME> said WordPress 5.0 could happen as early as August. It&#8217;s now looking more likely that 5.0 will drop closer to the end of the year. This gives WordPress users and developers more time to prepare their sites to be compatible with Gutenberg and ready to take advantage of the new features it offers. The <a href=\"https://make.wordpress.org/core/5-0/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule for releasing WordPress 5.0</a> is not yet set but the release is expected to happen in 2018.</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, 24 Aug 2018 18:55:12 +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: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:79:\"WPTavern: WordCamp Kochi is Postponed to November 3rd Due to Extensive Flooding\";s: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=83465\";s: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/wordcamp-kochi-is-postponed-to-november-3rd-due-to-extensive-flooding\";s: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:2569:\"<p><a href=\"https://2018.kochi.wordcamp.org/\">WordCamp Kochi, India</a>, was originally scheduled for September 2nd, but due to heavy rains and extensive flooding in the area, the event has been <a href=\"https://2018.kochi.wordcamp.org/wordcamp-kochi-2018-is-postponed-to-november-3rd-2018-saturday/\">postponed</a> to November 3rd. The venue is unchanged.<br /></p>\n\n<p>Kochi is located in Southwest India in the coastal state of Kerala. The flooding has been so severe, the Kochi <a href=\"https://timesofindia.indiatimes.com/city/kochi/kerala-floods-kochi-airport-closure-extended-flights-likely-from-next-wednesday/articleshow/65504855.cms\">airport has been shutdown</a> since August 15th due to electrical damage. </p>\n\n<p>In addition to WordCamp being postponed, WooCommerce has also postponed its <a href=\"https://workshops.automattic.com/?utm_campaign=coschedule&utm_source=twitter&utm_medium=WooCommerce\">Women&#8217;s Workshop</a>.</p>\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">In light of current events, we\'ve decided to postpone the Women\'s Workshop. More info to come later today. <a href=\"https://t.co/TBfGGNWZW0\">https://t.co/TBfGGNWZW0</a></p>&mdash; WooCommerce (@WooCommerce) <a href=\"https://twitter.com/WooCommerce/status/1032533215347712000?ref_src=twsrc%5Etfw\">August 23, 2018</a></blockquote>\n\n\n<p>Organizers worked with WordCamp Community Support who agreed that the best course of action was to delay the event.</p>\n\n<blockquote class=\"wp-block-quote\"><p>Besides, one of the ethos of conducting a WordCamp is to ensure a safe space for attendees and participants. Since the state is still recovering from the floods, conducting a big event poses a lot of threats/challenges, like rain-borne diseases, unpredictable weather, etc.</p><cite><NAME></cite></blockquote>\n\n<p>Tickets for WordCamp Kochi are <a href=\"https://2018.kochi.wordcamp.org/tickets/\">still available</a> and can be purchased from the event&#8217;s site. Women who use the <strong>WCK18WOMAN</strong> coupon code will receive a 40% discount off the ticket price. There&#8217;s also a <a href=\"https://2018.kochi.wordcamp.org/discounts/\">discounts page</a> with information on other ways you can reduce ticket prices.</p>\n\n<p>Those who purchased tickets for September 2nd can use the same ticket to attend November 3rd. If you purchased tickets for September 2nd and can not attend November 3rd, you&#8217;re encouraged to <a href=\"https://2018.kochi.wordcamp.org/contact/\">contact</a> the event&#8217;s organizers as refunds are not available. <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:\"Fri, 24 Aug 2018 18:31:51 +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: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:21:\"Matt: Gulf Coast Soul\";s: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=48319\";s: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:38:\"https://ma.tt/2018/08/gulf-coast-soul/\";s: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:558:\"<p><NAME> has an excellent longread in GQ, <a href=\"https://www.gq.com/story/houston-restaurants-capital-of-southern-cool\">Houston Is the New Capital Of Southern Cool</a>. I moved to San Francisco when I was 20, I hadn&#8217;t ever even been old enough to drink in Houston, but when I returned in my late twenties and really made it my home I was blown away at how much the city had changed in the time I had been away. Or maybe I just grew up enough to appreciate it. Regardless, Brett captures the verve and paradoxes of the city well.</p>\n\n<p>ย </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, 23 Aug 2018 22:23: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: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: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:90:\"WPTavern: New Network Media Library Plugin Creates a Shared Library on a Multisite Network\";s: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=83415\";s: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/new-network-media-library-plugin-creates-a-shared-library-on-a-multisite-network\";s: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:3950:\"<p>WordPress core committer <NAME> has released a new plugin called <a href=\"https://github.com/johnbillion/network-media-library\" rel=\"noopener noreferrer\" target=\"_blank\">Network Media Library</a> that provides a shared media library across all sites on a WordPress multisite network. Blackbourn is an engineer at Human Made and the plugin is one he created for a client by forking <NAME> and <NAME>&#8217;s <a href=\"https://github.com/bueltge/multisite-global-media\" rel=\"noopener noreferrer\" target=\"_blank\">Multisite Global Media</a> plugin.</p>\n<p>By default, the plugin uses site ID 2 for the central media library, but the site ID can be customized via a filter hook. Access to the network-wide library is currently restricted to users who have Author level permissions with the upload_files capability on the central media site. In the plugin&#8217;s description Blackbourn said the plan for future versions is to remove the need for users to be added to the central media library.</p>\n<p>After testing it locally, I discovered what the plugin&#8217;s description meant by &#8220;transparently&#8221; uploading media to the central media site. Unlike other plugins that perform a similar function (i.e. <a href=\"https://wordpress.org/plugins/network-shared-media/\" rel=\"noopener noreferrer\" target=\"_blank\">Network Shared Media</a> and <a href=\"https://github.com/bueltge/multisite-global-media\" rel=\"noopener noreferrer\" target=\"_blank\">Multisite Global Media</a>), there is no indication that files are part of a network-wide library. For example, Multisite Global Media adds a &#8220;Global Media&#8221; tab to the media library to indicate which files are aggregated from sites on the network. The Network Media Library plugin works in an invisible way without adding a separate tab to the media library.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-23-at-1.34.56-PM.png?ssl=1\"><img /></a></p>\n<p><NAME>, co-author of the Multisite Global Media plugin, asked Blackbourn why he opted to fork the plugin instead of enhancing it. Blackbourn said the main difference is that the original plugin supports local media files and his fork does not.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This was my original plan, but the main reason for the fork is the local media support in MGM means some bugs can\'t easily be fixed, eg. the featured image problem that we chatted about. The two plugins serve different purposes, MGM supports local media files, NML doesn\'t <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" />.</p>\n<p>&mdash; <NAME> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1ea-1f1fa.png\" alt=\"??\" class=\"wp-smiley\" /> (@johnbillion) <a href=\"https://twitter.com/johnbillion/status/1032361281741893632?ref_src=twsrc%5Etfw\">August 22, 2018</a></p></blockquote>\n<p></p>\n<p>Developers who implement Network Media Library on their sites should be aware that it is still under active development. It currently has built-in compatibility with the <a href=\"https://wordpress.org/plugins/regenerate-thumbnails/\" rel=\"noopener noreferrer\" target=\"_blank\">Regenerate Thumbnails</a> and <a href=\"https://wordpress.org/plugins/wp-user-avatars/\" rel=\"noopener noreferrer\" target=\"_blank\">WP User Avatars</a> plugins. The plugin also has been confirmed to be compatible with BuddyPress, Extended CPTs, Gutenberg, Stream and User Profile Picture. Blackbourn plans to test and support many more plugins in the future, including CMB2, ACF, and assorted gallery and media management plugins.</p>\n<p>Network Media Library is MIT-licensed and <a href=\"https://github.com/johnbillion/network-media-library\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a>. It requires WordPress 4.9+ and PHP 7.0+. The plugin can be installed as a mu-plugin or network activated.</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, 23 Aug 2018 21:06: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: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:75:\"WPTavern: WordCamp for Publishers 2018 Videos Now Available on WordPress.tv\";s: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=83394\";s: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/wordcamp-for-publishers-2018-videos-now-available-on-wordpress-tv\";s: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:2849:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-22-at-12.39.59-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2018-chicago.publishers.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp for Publishers 2018</a> was held in Chicago earlier this month, bringing together a diverse group of people who use WordPress to manage publications. The event even <a href=\"http://www.niemanlab.org/2018/08/submissive-audiences-less-special-news-outlets-and-other-inspiring-thoughts-from-wordpresss-publisher-summit/\" rel=\"noopener noreferrer\" target=\"_blank\">got a nod from Nieman Lab</a>, who dubbed it &#8220;WordPressโ€™ publisher summit,&#8221; and highlighted a few tweets from the <a href=\"https://twitter.com/search?f=tweets&vertical=default&q=wcpub&src=typd\" rel=\"noopener noreferrer\" target=\"_blank\">#wcpub</a> hashtag.</p>\n<p>&#8220;As conference organizers, we challenged speakers to touch on whether an open web ever truly existed, what state itโ€™s in now, the consequences of a closed web, and how publishers can protect and encourage an open web,&#8221; <NAME>, one of the event&#8217;s organizers, said in her <a href=\"https://vip.wordpress.com/2018/08/16/wordcamp-for-publishers-recap/\" rel=\"noopener noreferrer\" target=\"_blank\">recap post</a>.</p>\n<p>&#8220;Overall, we saw common themes emerge around empowering publishers to innovate and evolve. There was a shared belief that ethical journalism depends on an open web, with inclusivity as a fundamental building block to creating responsibly for the future.&#8221;</p>\n<p>Sessions included topics of interest to publishers both large and small, including AMP, Gutenberg, the effect of paywalls on the open web, communication between tech and editorial teams, newsletters, performance, and many other publishing-related topics.</p>\n<p>&#8220;Given that this is the only single-vertical official WordCamp it offers a rare perspective into a limited but very serious set of issues in a space,&#8221; Pantheon Community Manager <NAME> said in his <a href=\"https://www.mcdwayne.com/2018/08/13/wc-for-publishers-2018-chicago/\" rel=\"noopener noreferrer\" target=\"_blank\">recap post</a>. &#8220;Having the official support and legitimacy of the WordCamp name brand I think adds a weight the organizers could not achieve otherwise, a claim I am going to support with the caliber of the participants as substantial evidence.&#8221;</p>\n<p>By all accounts the event was one of the best media conferences participants had ever attended. Recordings of the sessions started rolling out on WordPress.tv today. The videos can all be found on the same page listed under the <a href=\"https://wordpress.tv/event/wordcamp-for-publishers-chicago-2018/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp for Publishers 2018 event</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:\"Thu, 23 Aug 2018 03:08: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: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: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:65:\"WPTavern: WPWeekly Episode 328 โ€“ Gutenberg, Forking, and cPanel\";s: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:58:\"https://wptavern.com?p=83421&preview=true&preview_id=83421\";s: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:70:\"https://wptavern.com/wpweekly-episode-328-gutenberg-forking-and-cpanel\";s: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:1841:\"<p>In this episode, <a href=\"http://jjj.me\"><NAME></a> and I start off by providing updates on some items from last week&#8217;s show. We discuss WordPress.com&#8217;s privacy policy change, the new detailed activity log in the WordPress for iOS app, and cPanel&#8217;s acquisition. We end the show with a thoughtful conversation about forking software.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-com-boots-sandy-hook-conspiracy-theory-sites-bans-malicious-publication-of-unauthorized-images-of-minors\">WordPress.com Boots Sandy Hook Conspiracy Theory Sites, Bans Malicious Publication of Unauthorized Images of Minors</a><br />\n<a href=\"https://wptavern.com/wordpress-for-ios-10-6-adds-a-detailed-site-activity-log\">WordPress for iOS 10.6 Adds A Detailed Site Activity Log</a><br />\n<a href=\"https://wptavern.com/oakley-capital-to-acquire-cpanel\">Oakley Capital to Acquire cPanel</a><br />\n<a href=\"https://wptavern.com/drupal-org-migrates-developer-tools-to-gitlab\">Drupal.org Migrates Developer Tools to GitLab</a><br />\n<a href=\"https://wptavern.com/classicpress-gutenberg-not-included\">ClassicPress: Gutenberg Not Included</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 29th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribeย to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribeย to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribeย to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #328:</strong><br />\n</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, 22 Aug 2018 23:56: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: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:95:\"WPTavern: Mario Peshev Explains the Advantages of Gutenberg for Users who Rely on Page Builders\";s: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=83348\";s: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:106:\"https://wptavern.com/mario-peshev-explains-the-advantages-of-gutenberg-for-users-who-rely-on-page-builders\";s: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:3970:\"<p><a href=\"https://devwp.eu/\" rel=\"noopener noreferrer\" target=\"_blank\"><NAME></a>, CEO of <a href=\"https://devrix.com/\" rel=\"noopener noreferrer\" target=\"_blank\">DevriX</a>, has published a video that explains how Gutenberg will change the way users create content. If your background as a WordPress user is maintaining your website with the help of a page builder like Beaver Builder, Divi Builder, Elementor, or a similar plugin, this video will acquaint you with a few advantages that Gutenberg will bring to content creation in the future.</p>\n<p></p>\n<p>Peshev demonstrates how Gutenberg will make it easier for users to add and arrange page content that actual websites need, such as call-to-action buttons, testimonials, headers, and columns. In the past, users have relied on page builders, page templates, widgetized areas, shortcodes, custom meta boxes, and a host of disparate ways of trying to place content in a certain arrangement on a page. All of these seem rather clunky now when compared to Gutenberg&#8217;s united interface, despite the new editor&#8217;s less than perfect implementation.</p>\n<p>This video helps users understand the problems Gutenberg aims to solve. Peshev explains that page builder tools usually have heavy, complicated code bases in order to work around the problem of adding blocks of content to a page. Gutenberg is not replacing page builders. In fact, most of them are updating to provide a better experience for users in the Gutenberg era, so agencies should be able to utilize some of the same tools they have used in the past while setting clients loose in the new editorial framework.</p>\n<p>&#8220;The video was first published on my LinkedIn feed, which is comprised of business leaders, marketing experts, freelancers &#8212; many of whom use WordPress at work or for their own businesses,&#8221; Peshev said.</p>\n<p>&#8220;They are not WordPress experts by any stretch, and rarely spend the time to test the &#8216;latest cool thing.&#8217; Odds are, some may have heard of it, but 95% haven&#8217;t even seen screenshots or demos of the new editorial experience.&#8221;</p>\n<p>As a digital consultant and the CEO of DevriX, a 30+ person agency, Peshev understands the need to assure users that their traditional content editing experience will still be available if they don&#8217;t want to use Gutenberg. He has been preparing his clients who fall on both sides of the 5.0 release &#8211; either to move forward with the new editor or employ the Classic Editor to maintain the old one.</p>\n<p>&#8220;At DevriX, we&#8217;ve been testing every site we manage and maintain monthly,&#8221; Peshev said. &#8220;We want to ensure that there are no unexpected regressions or fatal errors we have to deal with last minute. That said, half of our customers can benefit by using Gutenberg &#8212; we&#8217;ve had continuous conversations with them and align the roadmap accordingly. Others, on the other hand, are purely content-driven, a traditional WYSIWYG experience, and we have the Classic Editor ready to go once Gutenberg is live.&#8221;</p>\n<p>Peshev said his agency has had to find the balance between improving the editorial experience as needed (for things like landing pages and more robust sections), versus ensuring the stability and consistency of content development for traditional editorial teams. He urges other agency owners to push forward and embrace the custom work that Gutenberg will require.</p>\n<p>&#8220;Gutenberg is still in its infancy; there&#8217;s a lot of work left for us, agency owners and developers,&#8221; Peshev said. &#8220;Just as we used to build custom widgets, shortcodes, and page templates, we should build a series of Gutenblocks for every customer, prepare the corresponding templates, design the resulting front-end experience, and a lot more. Realistically, the editorial experience alone is a tiny chunk of the scope of WordPress development as a whole.&#8221;</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, 22 Aug 2018 17:08: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: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:35;a:6:{s:4:\"data\";s:11:\"\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:33:\"HeroPress: Have Faith In Yourself\";s: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://heropress.com/?p=2607\";s: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:111:\"https://heropress.com/have-faith-in-yourself/#utm_source=rss&utm_medium=rss&utm_campaign=have-faith-in-yourself\";s: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:3622:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/08/081016-StaceyBartron-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It may not all pan out, but I\'m along for the ride with WordPress in my backpack & I cannot wait to see where I end up.\" /><p>A couple years ago I was at Prestige Conf in Minneapolis. I noticed a young woman sitting by herself, patiently waiting for the talks to start, and thought I&#8217;d say hi. Her name was Stacey, and she was a freelance web developer and design expert. She was had recently quit her job to go freelance and this conference was part of her self-education.</p>\n<p>Our conversation brought back lots of memories of the excitement of when I first quit a good job to go freelance, but I was impressed by how much more attention to detail she&#8217;d paid than I had. I was a Bad Freelancer.</p>\n<p>A few weeks later it occurred to me that she might be willing to make the header banners for HeroPress essays. I asked, and she agreed at a price I could afford.ย  For a couple years now all of the banners you&#8217;ve seen on HeroPress were made by <NAME>. No-one else has ever told me this, but I think the banners are pretty important to the essays and she&#8217;s done a wonderful, meaningful job.</p>\n<p>Stacey quit her job and went freelance because she had faith in her own abilities. Her skills were greater than the use to which they were being put at The Day Job. As it turns out, she was right.</p>\n<p>Check out Stacey&#8217;s very own HeroPress essay here:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/finding-wordpress-fargo/\">Finding WordPress in Fargo</a></p></blockquote>\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: Have Faith In Yourself\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Have%20Faith%20In%20Yourself&via=heropress&url=https%3A%2F%2Fheropress.com%2Fhave-faith-in-yourself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Have Faith In Yourself\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fhave-faith-in-yourself%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%2Fhave-faith-in-yourself%2F&title=Have+Faith+In+Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Have Faith In Yourself\"></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/have-faith-in-yourself/&media=https://heropress.com/wp-content/uploads/2016/08/081016-StaceyBartron-150x150.jpg&description=Have Faith In Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Have Faith In Yourself\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/have-faith-in-yourself/\" title=\"Have Faith In Yourself\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/have-faith-in-yourself/\">Have Faith In Yourself</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, 22 Aug 2018 08:00: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:\"\";}}}}}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:46:\"WPTavern: ClassicPress: Gutenberg Not Included\";s: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=83360\";s: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/classicpress-gutenberg-not-included\";s: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:5995:\"<p>Depending on how far and deep you look, there is not a lot of positive sentiment surrounding Gutenberg. For <NAME>, the notion of merging Gutenberg into WordPress 5.0 represents a shift so <a href=\"https://medium.com/@scott.bowler83/classicpress-a-hard-fork-of-wordpress-without-gutenberg-1eeb62dd879c\">detrimental to the project</a>, he has forked WordPress into a new project called <a href=\"https://www.classicpress.net/\">ClassicPress</a>.</p>\n\n<p>&#8220;The team at WordPress have decided to force Gutenberg into v5 of WordPress despite <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" rel=\"noreferrer noopener\" target=\"_blank\">massive push back by the WordPress community,</a>&#8221; Bowler said.</p>\n\n<p>&#8220;Iโ€™m in the &#8216;push back&#8217; camp. After my feedback on Gutenberg fell on deaf ears I realized that WordPress is no longer a community led projectโ€Šโ€”โ€Šmajor decisions are being made by an elite few.</p>\n\n<p>&#8220;Sadly, I decided it was time to move to a fork that doesnโ€™t have Gutenberg as part of the core code. A quick search revealed nobody had taken the initiative so I decided to stop complaining and take action.&#8221;</p>\n\n<p>In addition to ClassicPress, Bowler has <a href=\"https://www.change.org/p/petition-to-wordpress-no-gutenberg-in-wordpress-core\">filed a petition</a> on Change.org requesting that Gutenberg not be merged into WordPress 5.0. As of publishing, the petition has 10 out of 100 signatures.</p>\n\n<p>&#8220;This petition is to ask the WordPress team to keep Gutenberg out of the core of WordPress and instead keep it as a plugin for users to install,&#8221; Bowler said. &#8220;In addition, this petition asks that Gutenberg does not get integrated into the core until the community agrees that the time is right.&#8221;</p>\n\n<p>Bowler is not the only one who feels this way. <NAME>, Head of Support and Community Outreach at <a href=\"https://wordimpress.com\">WordImpress</a>, suggests that Gutenberg be bundled with WordPress as a plugin similar to Aksimet. </p>\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The more I think about <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> as inevitable in WP Core, the more I am concerned that Core releases don\'t come often enough to support the kind of iterative improvements Gutes will need over the longterm.</p>&mdash; <NAME> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f393.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/271d.png\" alt=\"โœ\" class=\"wp-smiley\" /> (@learnwithmattc) <a href=\"https://twitter.com/learnwithmattc/status/1030588894796865536?ref_src=twsrc%5Etfw\">August 17, 2018</a></blockquote>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Shipping <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> as a default plugin like Akismet makes a lot of sense for several reasons.<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"โœ”\" class=\"wp-smiley\" /> Allows for more iterative improvements<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"โœ”\" class=\"wp-smiley\" /> Allows for quicker development<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"โœ”\" class=\"wp-smiley\" /> Gives users more freedom of choice</p>&mdash; <NAME> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f393.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/271d.png\" alt=\"โœ\" class=\"wp-smiley\" /> (@learnwithmattc) <a href=\"https://twitter.com/learnwithmattc/status/1030588896281653249?ref_src=twsrc%5Etfw\">August 17, 2018</a></blockquote>\n\n\n<p>If Gutenberg ships with WordPress 5.0, Bowler says he is committed to maintaining compatibility with the WordPress ecosystem, keeping the project up to date with security fixes, and letting the community dictate its development.</p>\n\n<p>ClassicPress is based on WordPress 4.9.8 and is not available to the public yet. It&#8217;s in a consultation phase that interested users can participate in through the <a href=\"https://www.reddit.com/r/ClassicPress\">ClassicPress subreddit</a>. <br /></p>\n\n<h2>Forks Are a Good Thing, But This One Doesn&#8217;t Make Sense</h2>\n\n<p>I used to think that forking WordPress is the equivalent of the <a href=\"https://en.wikipedia.org/wiki/Nuclear_option\">nuclear option</a>, but <a href=\"https://www.youtube.com/watch?v=2Y6HcQcQWXU\">a presentation</a> by <NAME> in 2016 during WordSesh changed my perspective.</p>\n\n<p>Forking is a good thing as it allows people to take a project in their own direction. It opens the door for experimentation. If there are any lessons learned or improvements made, those can usually be pushed upstream to the main project.</p>\n\n<p>There are <a href=\"https://wordpress.org/plugins/classic-editor/\">solutions available</a> that allow users and site managers to keep the classic editor in place until a transition can be made. There&#8217;s also a Classic Editor block within Gutenberg that provides a similar user experience to the Classic Editor. </p>\n\n<p>With options available to not use or at least delay Gutenberg from becoming the new editor, and that&#8217;s <strong>if</strong> it&#8217;s merged into WordPress 5.0, ClassicPress isn&#8217;t so much of a necessary fork but rather, a last ditch effort to raise awareness to not merge Gutenberg into core. And that&#8217;s an unfortunate reason to fork WordPress. </p>\n\n<p>*<strong>Updated 8/21/2018</strong>* First paragraph was edited to &#8220;For <NAME>, the notion of merging Gutenberg into WordPress 5.0 represents a shift so <a href=\"https://medium.com/@scott.bowler83/classicpress-a-hard-fork-of-wordpress-without-gutenberg-1eeb62dd879c\">detrimental to the project</a>, he has forked WordPress into a new project called <a href=\"https://www.classicpress.net/\">ClassicPress</a>.&#8221; </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, 22 Aug 2018 01:40: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: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:55:\"WPTavern: Drupal.org Migrates Developer Tools to GitLab\";s: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=83338\";s: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://wptavern.com/drupal-org-migrates-developer-tools-to-gitlab\";s: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:4323:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-21-at-12.36.38-PM.png?ssl=1\"><img /></a>image credit: Drupal Association\n<p>The Drupal Association announced this week that Drupal.org will be <a href=\"https://www.drupal.org/drupalorg/blog/developer-tools-initiative-part-5-gitlab-partnership\" rel=\"noopener noreferrer\" target=\"_blank\">migrating its developer tools to GitLab</a>. In selecting a partner for modernizing the project&#8217;s tooling, the association aimed to preserve the most valuable parts of Drupal&#8217;s workflow. They also wanted a partner that would keep evolving its code collaboration featureset.</p>\n<p>In December 2017, after evaluating the advantages and disadvantages of GitHub, GitLab, and Bitbucket, it appeared the association would be moving forward with Bitbucket. If the comments on that <a href=\"https://www.drupal.org/drupalorg/blog/developer-tools-initiative-part-2-comparing-our-options\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> are any indication, the Drupal community was not excited about the selection. GitLab reached out to comment on the status of some of the blockers the association had identified and worked privately with Drupal representatives to resolve those issues.</p>\n<p>&#8220;They have escalated the internal priority of issues that blocked our adoption of GitLab, offered technical and financial support for the migration, and made a commitment to ongoing support for the Drupal project,&#8221; Drupal Association&#8217;s director of engineering <NAME> said. The team plans to migrate Drupal.org&#8217;s 45,000 projects to GitLab over the coming months.</p>\n<p>&#8220;By adding merge requests, contributing to Drupal will become much more familiar to the broad audience of open source contributors who learned their skills in the post-patch era,&#8221; Lehnen said. &#8220;By adding inline editing and web-based code review, it will be much easier to make quick contributions. This not only lowers the barrier to contribution for people new to our community, it also saves significant effort for our existing community members, as they&#8217;ll no longer need to clone work locally and generate patches.&#8221;</p>\n<p>It&#8217;s easy to see how the WordPress project might also benefit from collaborating on a platform like GitLab. In October 2017, after the company <a href=\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\" rel=\"noopener noreferrer\" target=\"_blank\">announced a $20 million Series C round of funding</a> and appointed <NAME> to its board of directors, WordPress contributors speculated about whether the project would move to GitLab.</p>\n<p>โ€œItโ€™s definitely something on our minds,&#8221; Mullenweg said when asked if GitLab and WordPress might collaborate in the future. &#8220;Core WordPress is still Trac and Subversion, so I think that itโ€™s not our top priority this year, but in the future itโ€™s definitely on the radar.โ€</p>\n<p>In 2016, GitLab worked to establish itself as the most welcoming platform for open source organizations after GitHub <a href=\"https://wptavern.com/gitlab-courts-open-source-project-maintainers-with-response-to-dear-github-letter\" rel=\"noopener noreferrer\" target=\"_blank\">failed to address open source maintainers&#8217; concerns</a> in a timely way. The company began actively courting disgruntled GitHub users following <a href=\"https://wptavern.com/gitlab-courts-disgruntled-github-customers-with-response-to-recent-pricing-hike\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub&#8217;s May 2016 pricing hike</a>.</p>\n<p>GitLab&#8217;s efforts to resolve critical issues for Drupal.org demonstrates the company&#8217;s commitment to ensure open source projects have what they need. Drupal.org&#8217;s transparency throughout the decision to migrate its developer tools enabled the project to respond to the community&#8217;s request to make GitLab work. It also prompted GitLab representatives to reach out with more information on the project&#8217;s blockers. As WordPress will be looking to move its developer tools to a new platform in the future, following along with Drupal.org&#8217;s migration experience as it progresses should be a good learning opportunity.</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, 21 Aug 2018 22:25:32 +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: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:33:\"Matt: Distributed Office Politics\";s: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=48317\";s: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:50:\"https://ma.tt/2018/08/distributed-office-politics/\";s: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:578:\"<p><a href=\"https://techcrunch.com/2018/08/18/distributed-teams-are-rewriting-the-rules-of-officeless-politics/\">This week I spoke with TechCrunch</a> about one facet of distributed work that differs from physical offices &#8212; the idea of &#8220;office politics.&#8221; I can&#8217;t claim that distributed work will solve everyone&#8217;s personal differences, but I do think it relieves some of the pressures that might come from forced cohabitation and environments that are prone to interruption. They also have some great points from <NAME> and and <NAME>.</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, 21 Aug 2018 16:38: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: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: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:42:\"WPTavern: Oakley Capital to Acquire cPanel\";s: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=83329\";s: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:53:\"https://wptavern.com/oakley-capital-to-acquire-cpanel\";s: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:1850:\"<p><a href=\"https://cpanel.com/\">cPanel</a>, the makes of control panel software used by many hosting providers across the globe, has <a href=\"http://news.cpanel.com/oakley-capital-to-invest-in-cpanel-acquisition-will-accelerate-the-next-phase-of-product-development-for-cpanel/\">announced</a> it has signed an agreement to be acquired by <a href=\"http://oakleycapital.com/\">Oakley Capital</a>. Oakley Capital is a private equity investor that invests in companies primarily located in Western Europe. </p>\n\n<p>Financial details of the impending acquisition have not been disclosed. Oakley Capital is the same investment firm that <a href=\"http://oakleycapital.com/acquisition-of-plesk/\">acquired Plesk</a> in May of 2017. <a href=\"https://www.plesk.com/\">Plesk</a> is also control panel software used to manage sites.</p>\n\n<p>cPanel is based in Houston, TX with more than 220 employees. Employees will stay with the company and the headcount is expected to increase thanks to the investment. </p>\n\n<p><NAME>, cPanel&#8217;s CEO, issued the following statement in a press release. <br /></p>\n\n<blockquote class=\"wp-block-quote\"><p>This investment reflects a great step forward for cPanel. Our team has developed software that contributes to the success of millions of websites operating globally and looks forward to continuing to do so with the same passion that you, our loyal customers have come to love. </p><p>This investment will give Internet infrastructure providers access to a wider range of software, features and support. I am excited about what the future holds for the company and the great team at cPanel.</p><cite><NAME>oston</cite></blockquote>\n\n<p>Koston will remain as the company&#8217;s CEO and cPanel will continue to run as a separate entity. The acquisition needs to pass a governmental review before it is finalized.</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, 21 Aug 2018 05:10: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: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:94:\"WPTavern: How a Munich-based Game Studio is Using WordPress and Gutenberg to Power Its Website\";s: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=83280\";s: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:105:\"https://wptavern.com/how-a-munich-based-game-studio-is-using-wordpress-and-gutenberg-to-power-its-website\";s: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:8017:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-19-at-8.51.49-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.mimimi.games/\">Mimimi</a>, an award-winning game studio based in Munich, has launched a new WordPress website that provides an interesting case study of Gutenberg in the wild. Although you may not be able to tell from the frontend, behind the scenes the new block-based editor is powering the layout with custom blocks, allowing the Mimimi team to easily update various sections of their website.</p>\n<p><a href=\"https://www.luehrsen-heinrich.de/\">L<NAME></a>, a local ad agency, built the site with a custom theme and seven blocks tailored to support the Mimimi team&#8217;s editing requirements.</p>\n<p>&#8220;The general task was to create an elegant website that is very easy and fast to maintain and that will maybe later get a blog/news section,&#8221; <NAME>, CEO of <NAME>, said. &#8220;We knew our client has some amazingly creative and tech savvy people who trusted us. That made us confident to go into Gutenberg.&#8221;</p>\n<p>The site uses a background block that enables editors to create different background patterns and wavy separators. Luehrsen said it works with โ€˜InnerBlocksโ€™, similar to columns, so it can host any other block.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Bildschirmfoto-2018-08-19-um-00.37.07.png?ssl=1\"><img /></a></p>\n<p>The site also has a custom Discord block that dynamically fetches some settings to display a set of users from Discord, which Mimimi uses for internal communication. The block displays an updated team roster. Social media and game blocks enable editors to easily update text and images with the layout already set.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Bildschirmfoto-2018-08-19-um-00.38.55-e1534729837643.png?ssl=1\"><img /></a></p>\n<p>&#8220;I am pretty sure we could do the same layout to about 80% by combining columns, paragraphs, and images, but we didnโ€™t want our client to fiddle around like in MS Word when you try to place an image,&#8221; Luehrsen said. &#8220;So creating a simple layout block was a logical thing.&#8221;</p>\n<p>Mimimi&#8217;s website also uses a custom Mailchimp signup block and a custom spacer block that offers more flexibility and responsive breakpoints.</p>\n<p>&#8220;All in all we (and our clients) are very happy with the result,&#8221; Luehrsen said. &#8220;We can see the future of WordPress ahead with this block based editor. But there is still a very long way to go until we really have nothing to smooth out anymore. There are certain things, that still require a lot of work.&#8221;</p>\n<p>From a development perspective, Luehrsen said his team still struggles with the backend styles for the editor and that frontend and backend styles differ wildly because of that. They also haven&#8217;t yet found a maintainable, stable way of applying global styles to the Gutenberg editor. Other than those outstanding issues, the agency has enjoyed building for the new editor and has another Gutenberg-page product launching soon for a different set of clients.</p>\n<h3>Mimimi Games&#8217; Gutenberg Experience: Editors Appreciate the Block Concept but Still Encounter Usability Issues</h3>\n<p><NAME>, CEO of Mimimi Games, said his team has used WordPress in the past and sees Gutenberg as a major improvement for editing content.</p>\n<p>&#8220;I absolutely love it, honestly!&#8221; Roth said. &#8220;It&#8217;s so much easier to understand the setup of the page and to customize it. If the Gutenberg editor gets a few user experience improvements, I definitely see it being the new state of the art for maintaining pages. But knowing that it&#8217;s still not officially released, it has been super robust and easy to understand from my point of view.&#8221;</p>\n<p>Roth said his team appreciates the block setup, the ability to reorganize content, having small chunks of content to work on, and having custom tailored options per block.</p>\n<p>&#8220;There are fewer distractions with weird toolbars and the focus is on content,&#8221; Roth said. &#8220;It also more closely resembles how we should think about splitting the formatting and decoration part from the content, as well as setting up proper pages for SEO friendliness.&#8221;</p>\n<p>Roth identified two things that the Mimimi team misses from the previous editor:</p>\n<ul>\n<li>Pressing tab to indent bullet lists and shift tab to reverse</li>\n<li>Using ctrl+a to quickly select all text inside a block (it sometimes selects the whole page, which doesn&#8217;t help).</li>\n</ul>\n<p>&#8220;The biggest issue with usability so far has been the combination of blocks and columns, which sometimes makes it really hard to hit the &#8216;&#8230;&#8217; icon because the mouseover zones get stacked,&#8221; Roth said.</p>\n<h3>Enabling Storytellers on the Modern Web: Why <NAME> Took the Leap into Gutenberg Development as an Agency</h3>\n<p>Luehrsen said his agency decided to board the Gutenberg train last year at WordCamp Europe, after ditching their own ideas for creating a new page builder.</p>\n<p>&#8220;One or two months before WCEU in Paris, we were sitting on a concept and an alpha version of our own page builder system that was frighteningly similar to the block based approach,&#8221; Luehrsen said. &#8220;That Q&amp;A by Matt made us quickly realize that our project was already obsolete. We were lucky that we went pretty quickly through the five stages of grief (<a href=\"https://www.wp-munich.com/wordpress/gutenberg-structured-data/\" target=\"_blank\" rel=\"noopener noreferrer\">this post</a> on structured data must have been โ€œbargainingโ€). We reordered our priorities and started working with and on Gutenberg in the end of October or November of 2017.&#8221;</p>\n<p><NAME> is a small agency of just four people who are all involved with Gutenberg in different ways. Luehrsen is an active contributor on the project, submitting <a href=\"https://github.com/WordPress/gutenberg/pull/4118\">his first PR</a> over the Christmas holidays. The team also has a developer who knows block creation inside and out, a designer who designs the UX and style of their blocks, and a project manager who works with the clients on their Gutenberg editing requirements.</p>\n<p>Luehrsen said being a Gutenberg contributor helped immensely with learning block creation, despite having no prior experience with React and ES6.</p>\n<p>&#8220;Working with Gutenberg, contributing to the project and getting immediate feedback from the amazing Gutenberg team, helped us a lot in bootstrapping our process,&#8221; Luehrsen said. &#8220;Our current block creation process builds heavily on the work Gary, Adam, Matias, and all the others have done, maybe with the exception that we are using LESS internally, and not SCSS. But from folder structure, to the build process, to the structuring of the file, we try to follow the Gutenberg repo style as closely as possible, as that makes debugging and finding issues very easy.&#8221;</p>\n<p>After successfully making the jump to build Mimimi Games&#8217; new Gutenberg-powered website, Luehrsen&#8217;s team is on board for building more client sites with the new editor. He sees it as a way to deliver a better user experience at a better value for the client.</p>\n<p>&#8220;Our clients share our belief that storytelling in the modern web is much more than just writing text,&#8221; Luehrsen said. &#8220;TinyMCE as a &#8216;Rich Text&#8217; editor did an amazing job, but still, combining different types of media to a coherent story was a mess with metaboxes, shortcodes, and sometimes for teasers you even had to leave the edit screen. Gutenberg combines all of this in a nice, unobtrusive way. And, as always: If you can get to a good result in a faster way, that time saved is what the client is essentially buying.&#8221;</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, 20 Aug 2018 18:54: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: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:30:\"Matt: Light Heretofore Unknown\";s: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=48313\";s: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:46:\"https://ma.tt/2018/08/light-heretofore-unkown/\";s: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:567:\"<blockquote class=\"wp-block-quote\"><p>Yes, it is a press, certainly, but a press from which shall soon flow in inexhaustible streams the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of man! [&#8230;.] A spring of pure truth shall flow from it! Like a new star, it shall scatter the darkness of ignorance, and cause a light heretofore unknown to shine among men.</p><cite>โ€” <NAME></cite></blockquote>\n\n<p>From <a href=\"https://dan.knauss.ca/\"><NAME></a> via <a href=\"https://poststatus.com/\">Post Status</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, 20 Aug 2018 15:31: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: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: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:45:\"WPTavern: My Gutenberg Experience: Part Three\";s: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=83102\";s: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/my-gutenberg-experience-part-three\";s: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:4815:\"<p>It&#8217;s been about four months since the last time I <a href=\"https://wptavern.com/an-update-to-my-gutenberg-experience\">shared my experience</a> with Gutenberg. In that time, there have been sixteen releases. The more I use Gutenberg, the more nuances I encounter.</p>\n\n<h3>Disruptive Writing Flow</h3>\n\n<p>When writing a post, I press the enter key at the end of a paragraph. This creates a new paragraph block automatically. Sometimes however, I want the next block to be an Image block. The paragraph block does not have an option to be converted into another block.</p>\n\n<img />No Option to Convert to Another Block\n\n<p>I end up having to remove the paragraph block, look for the add block icon, and add the image block. This process of rearranging blocks disrupts the flow of writing. </p>\n\n<p>There are a few ways to get around this issue. The first is to not press enter at the end of a paragraph so I can add the block that I want. </p>\n\n<p>The second is to type /image inside the paragraph block which will automatically convert it to an image block. This is convenient but it&#8217;s a power user shortcut that&#8217;s difficult to discover without someone telling you about it. It&#8217;s weird that using a shortcut can convert a paragraph block to an image block but the user interface option to convert it doesn&#8217;t exist.</p>\n\n<h3>Icons Not Associated With a Block Floating in Empty Space<br /></h3>\n\n<p>In the image below is a CloudUp embed block that has a video and below it are three icons. I sometimes think these icons are related to the block above it but instead, these icons are part of the add block placeholder UI. </p>\n\n<img />Block Icons Look Like They&#8217;re For Another Block\n\n<p>Granted, a list, image, and quote icon has nothing to do with embedding videos. At-a-glance, seeing these icons can lead to a bit of confusion. I don&#8217;t want to see those icons floating in empty space when I&#8217;m working on a block they&#8217;re not attached too. <br /></p>\n\n<h3>Losing Content Due to Autosave Disconnecting<br /></h3>\n\n<p>While writing a post working remotely, I noticed the Autosave button in Gutenberg was continuously flashing. I&#8217;ve experienced something similar in the classic editor and suspected that a connection issue must have happened although I was browsing the internet without a problem.</p>\n\n<p>I finished writing the post, added meta data, and a featured image. I copied all of the content on the post, refreshed the page, and confirmed I wanted to leave the page. It turns out, my suspicion was right. </p>\n\n<p>At some point, the autosave process stopped working and I lost half the post, including the meta data. I was able to paste the lost content into the editor and go about my day. </p>\n\n<p>The current editor has fail-safes in place to prevent the loss of content, such as using a browser&#8217;s local storage. I&#8217;m unsure if Gutenberg has the same fail-safes in place. So far, this has been the only time where I&#8217;ve lost content in Gutenberg due to autosave not working correctly. </p>\n\n<h3>Digging Through the Junk Drawer</h3>\n\n<p>In the classic editor, the tool bar stays in constant view. In Gutenberg, there are multiple areas on the screen where UI elements appear and disappear depending on where the cursor is. </p>\n\n<p>If you want to see the code version of the editor, you need to click the ellipsis on the top right corner and select it from a drop-down menu. To add a new block, you have to click the + symbol and either search or select from a menu. </p>\n\n<p>The combination of visiting different parts of the editor, browsing through menus, and selecting from multiple things sometimes feels like I&#8217;m going through the junk drawer in the kitchen looking for a utensil. This feeling occurs multiple times depending on the length of a post. </p>\n\n<h3>There&#8217;s Still a Ways to Go</h3>\n\n<p>I&#8217;ve been able to get used to the block concept and actually prefer it over the classic editor. However, there are certain tasks that are easier and faster to accomplish in the classic editor versus Gutenberg. </p>\n\n<p>For example, if you want to create a heading using existing text in Gutenberg, you have to select the text, click the Paragraph icon, select the heading block, and choose which heading you want. In the Classic editor, you select the text, click the preferred heading from an always visible drop-down menu and continue writing. </p>\n\n<p>These nuances to the writing flow, the user interface, and the experience of looking around for things is where I believe Gutenberg needs the most improvement. The bar has been set by the Classic editor but it has more than 10 years of iteration behind it. Hopefully, Gutenberg can reach or exceed that bar before it&#8217;s merged into core. <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:\"Fri, 17 Aug 2018 22:32:58 +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:58:\"WPTavern: Gutenberg 3.6 Adds New Icons for All Core 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=83242\";s: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:69:\"https://wptavern.com/gutenberg-3-6-adds-new-icons-for-all-core-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:5014:\"<p><a href=\"https://make.wordpress.org/core/2018/08/17/whats-new-in-gutenberg-17th-august/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.6</a> was released today, featuring a <a href=\"https://github.com/WordPress/gutenberg/pull/8916\" rel=\"noopener noreferrer\" target=\"_blank\">design overhaul for the core icons</a> in the block inserter. The blocks now use <a href=\"https://material.io/tools/icons/\" rel=\"noopener noreferrer\" target=\"_blank\">Material icons</a>, which offer more options than the Dashicons. This update also improves the icons for the core embeds, which now display the corresponding icon for each embed service.</p>\n<p>Gutenberg testers <a href=\"https://github.com/WordPress/gutenberg/issues/3736\" rel=\"noopener noreferrer\" target=\"_blank\">logged an issue</a> regarding the limitations of Dashicons last year, citing the small number available, the inadequacy of their size, and the generic substitutions for embed service icons. The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/issues/3736#issuecomment-355267596\" rel=\"noopener noreferrer\" target=\"_blank\">closed the ticket</a>, saying there was no sign in testing that showed the icons to be a problem and that potential contributors would need to &#8220;revisit with evidence&#8221; if they wanted to re-open the issue.</p>\n<p>It&#8217;s not clear whether the team received the evidence or testing required to make this change but the icons become problematic in other ways. As the community started extending Gutenberg, block icon duplication became a problem, due to the limited number of Dashicons available.</p>\n<p>&#8220;We really need block icons to move away from using dashicons as soon as possible,&#8221; Gutenberg technical lead <NAME> said in another discussion on a proposed solution. &#8220;We are already seeing plugins adding blocks where the icon overlap is very high just because of the limited icons set, which reduces clarity for users very drastically.&#8221;</p>\n<p><a href=\"https://github.com/WordPress/gutenberg/issues/8719\" rel=\"noopener noreferrer\" target=\"_blank\">Switching to Material icons</a> solves this problem, ensuring there are unique icons for each block. The inserter design has also been updated as part of this overhaul. Previously, icons appeared with a grey background, as seen below:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-12.51.51-PM.png?ssl=1\"><img /></a></p>\n<p>The old design suddenly looks rather dated in comparison to Gutenberg&#8217;s 3.6 update, which allows for more whitespace around the icons:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-12.53.39-PM.png?ssl=1\"><img /></a></p>\n<p>The new embed icons are also greatly improved from previous versions of the plugin:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-4.09.01-PM.png?ssl=1\"><img /></a></p>\n<p>&#8220;The new icons aim to encourage people creating their own blocks to supply their own SVG,&#8221; Ventura said. &#8220;The hope is to make sure we can avoid multiple cases of duplicated icons diminishing the overall ability to quickly scan blocks.&#8221;</p>\n<p>Ventura said Gutenberg will retain the ability to specify a Dashicon slug in the Block API but he encourages developers to &#8220;supply custom SVGs (or draw from the material icon pool) as much as possible.&#8221;</p>\n<p>Gutenberg 3.6 also <a href=\"https://github.com/WordPress/gutenberg/pull/8279\" rel=\"noopener noreferrer\" target=\"_blank\">adds several new keyboard shortcuts</a>, including inserting a new block before/after the current block, toggling the inspector settings, removing a block, and displaying a <a href=\"https://github.com/WordPress/gutenberg/pull/8316\" rel=\"noopener noreferrer\" target=\"_blank\">new modal help menu</a>. The modal can be launched from the Settings button at the top of the editor and users can scroll through all available shortcuts.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-4.16.53-PM.png?ssl=1\"><img /></a></p>\n<p>This release also fixes many bugs that users have reported. Gutenberg will now <a href=\"https://github.com/WordPress/gutenberg/pull/8446\" rel=\"noopener noreferrer\" target=\"_blank\">open a new preview window</a> if the prior window has been closed. It will also <a href=\"https://github.com/WordPress/gutenberg/pull/9015\" rel=\"noopener noreferrer\" target=\"_blank\">bring the preview tab to the front</a> when clicking the preview button. Version 3.6 <a href=\"https://github.com/WordPress/gutenberg/pull/9010\" rel=\"noopener noreferrer\" target=\"_blank\">fixes several usability issues</a> that testers found with the permalink UI. Check out the <a href=\"https://make.wordpress.org/core/2018/08/17/whats-new-in-gutenberg-17th-august/\" rel=\"noopener noreferrer\" target=\"_blank\">release post</a> for the full list of all the fixes and changes included in 3.6.</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, 17 Aug 2018 21:31:44 +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:29:\"Donncha: WP Super Cache 1.6.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:28:\"https://odd.blog/?p=89502017\";s: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:49:\"https://odd.blog/2018/08/17/wp-super-cache-1-6-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:4891:\"<p>WP Super Cache is a full page caching plugin for WordPress. When a page is cached almost all of WordPress is skipped and the page is sent to the browser with the minimum amount of code executed. This makes the page load much faster.</p>\n\n<p>1.6.3 is the latest release and is mostly a bugfix release but it also adds some new features.</p>\n\n<ul><li>Added cookie helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/580\">#580</a>)</li><li>Added plugin helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/574\">#574</a>)</li><li>Added actions to modify cookie and plugin lists. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/582\">#582</a>)</li><li>Really disable garbage collection when timeout = 0 (<a href=\"https://github.com/Automattic/wp-super-cache/pull/571\">#571</a>)</li><li>Added warnings about DISABLE_WP_CRON (<a href=\"https://github.com/Automattic/wp-super-cache/pull/575\">#575</a>)</li><li>Don&#8217;t clean expired cache files after preload if garbage collection is disabled (<a href=\"https://github.com/Automattic/wp-super-cache/pull/572\">#572</a>)</li><li>On preload, if deleting a post don&#8217;t delete the sub directories if it&#8217;s the homepage. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/573\">#573</a>)</li><li>Fix generation of semaphores when using WP CLI (<a href=\"https://github.com/Automattic/wp-super-cache/pull/576\">#576</a>)</li><li>Fix deleting from the admin bar (<a href=\"https://github.com/Automattic/wp-super-cache/pull/578\">#578</a>)</li><li>Avoid a strpos() warning. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/579\">#579</a>)</li><li>Improve deleting of cache in edit/delete/publish actions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/577\">#577</a>)</li><li>Fixes to headers code (<a href=\"https://github.com/Automattic/wp-super-cache/pull/496\">#496</a>)</li></ul>\n\n<p>This release makes it much easier for plugin developers to interact with WP Super Cache. In the past a file had to be placed in the &#8220;WP Super Cache plugins directory&#8221; so that it would be loaded correctly but in this release I&#8217;ve added new actions that will allow you to load code from other directories too.</p>\n\n<p>Use the <strong>wpsc_add_plugin</strong> action to add your plugin to a list loaded by WP Super Cache. Use it like this:<br /></p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_plugin\', WP_PLUGIN_DIR . \'/wpsc.php\' )</pre>\n\n<p>You can give it the full path, with or without ABSPATH. Use it after &#8220;init&#8221;. It only needs to be called once, but duplicates will not be stored.</p>\n\n<p>In a similar fashion, use <strong>wpsc_delete_plugin</strong> to remove a plugin.</p>\n\n<p>The release also makes it much simpler to modify the cookies used by WP Super Cache to identify &#8220;known users&#8221;. This is useful to identify particular types of pages such as translated pages that should only be shown to certain users. For example, visitors who have the English cookie will be shown cached pages in English. The German cookie will fetch German cached pages. The action <strong>wpsc_add_cookie</strong> makes this possible.</p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_cookie\', \'language\' );</pre>\n\n<p>Execute that in your plugin and WP Super Cache will watch out for the language cookie. The plugin will use the cookie name <em>and</em> value in determining what cached page to display. So &#8220;language = irish&#8221; will show a different page to &#8220;language = french&#8221;.</p>\n\n<p>Use <strong>wpsc_delete_cookie</strong>ย to remove a cookie. Cache files won&#8217;t be deleted. It&#8217;s doubtful they&#8217;d be served however because of the hashed key used to name the filenames.<br /></p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_delete_cookie\', \'language\' );</pre>\n\n<p>If you&#8217;re going to use either of the plugin or cookie actions here I recommend using <strong>Simple Caching</strong>. While the plugin will attempt to update mod_rewrite rules, it is much simpler to have PHP serve the files. Apart from that, any plugins loaded by WP Super Cache will be completely skipped if Expert mode is enabled.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/2018/08/17/wp-super-cache-1-6-3/\" rel=\"nofollow\">Source</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:\"Fri, 17 Aug 2018 16:36:51 +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:7:\"Donncha\";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:66:\"WPTavern: WordPress for iOS 10.6 Adds A Detailed Site Activity Log\";s: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=83231\";s: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://wptavern.com/wordpress-for-ios-10-6-adds-a-detailed-site-activity-log\";s: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:3569:\"<p>In the past few months, the <a href=\"https://apps.wordpress.com/mobile/\">WordPress mobile application</a> for iOS has quietly received a steady round of improvements. Version 10.5 increased its compatibility with Gutenberg. <a href=\"https://wptavern.com/wordpress-for-ios-and-gutenberg-dont-get-along\">Earlier this year</a>, Gutenberg and the iOS app didn&#8217;t get along particularly well. </p>\n\n<p>About a month ago in 10.4, an activity log was added that allows users to see a detailed list of activities on their sites. In 10.6, the most recent version, the activity log is now available for free WordPress.com sites and those connected with Jetpack.</p>\n\n<img />WordPress for iOS Activity Log\n\n<p>As you can see in the screenshot above, comment activity, post and page activity, and generally all site activity shows up in the log. </p>\n\n<p>Selecting an activity displays detailed information such as who performed the action, their role, IP address, and other information depending on the activity. The log displays the last 20 activities performed on the site.</p>\n\n<p>It&#8217;s unclear exactly what data the activity log monitors, where or if it&#8217;s saved, how it&#8217;s generated, and how users can turn it off. Browsing around the mobile app, I was unable to find a way to disable the activity log.</p>\n\n<h2>The WordPress Mobile Team is Quiet But Busy</h2>\n\n<p>If it weren&#8217;t for the change logs on the iTunes Store, it would be difficult for users to know what&#8217;s going on with the app. The project&#8217;s <a href=\"https://github.com/wordpress-mobile/WordPress-iOS\">GitHub page</a> is buzzing with activity, but more public facing means of communication are not. <br /></p>\n\n<p>The WordPress for iOS app <a href=\"https://twitter.com/wordpressios?lang=en\">Twitter account</a> has been dormant since May. The <a href=\"https://apps.wordpress.com/blog/\">WordPress Mobile apps blog</a> hasn&#8217;t published a new post since 2016 and some of the posts that highlight new features are on the official <a href=\"https://en.blog.wordpress.com/\">WordPress.com blog</a>.</p>\n\n<p>Sure, not every release requires a full-featured post, but the activity log is a feature that I think warrants one. An explanation of why it was created, how it works, and how users not interested in it can disable it. </p>\n\n<p>The WordPress for iOS app is <a href=\"https://apps.wordpress.com/contribute/\">open source</a> and available for free from the <a href=\"https://search.itunes.apple.com/WebObjects/MZContentLink.woa/wa/link?mt=8&path=apps%2fWordPress\">Apple iTunes App Store</a>. You can also find links to the Android and Desktop apps on the <a href=\"https://apps.wordpress.com/\">WordPress.com Apps site</a>. </p>\n\n<h2>*Update*</h2>\n\n<p>After this article was published, I was given a <a href=\"https://jetpack.com/support/activity-log/\">link to a support document</a> on the Jetpack website that explains the activity log feature in more detail. The document <a href=\"https://jetpack.com/support/activity-log/#data-retention\">links to a list of activities</a> along with their retention periods which vary based on the plan attached to the user&#8217;s WordPress.com account. </p>\n\n<p>Only the most recent 1,000 events are displayed in the log. As noted at the end of the article, once the retention period ends for activity data, it&#8217;s moved to long-term storage where it is retained indefinitely. Data held in long-term storage is removed from the activity log.</p>\n\n<p>According to the document, there is no way to deactivate this feature. <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:\"Thu, 16 Aug 2018 22:12:44 +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: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:125:\"WPTavern: WordPress.com Boots Sandy Hook Conspiracy Theory Sites, Bans Malicious Publication of Unauthorized Images of Minors\";s: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=83171\";s: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:135:\"https://wptavern.com/wordpress-com-boots-sandy-hook-conspiracy-theory-sites-bans-malicious-publication-of-unauthorized-images-of-minors\";s: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:13585:\"<p>WordPress.com came under fire this week for hosting a site with conspiracy theories claiming the Sandy Hook Elementary School shooting was a hoax. The New York Times published an article titled &#8220;<a href=\"https://www.nytimes.com/2018/08/13/business/media/sandy-hook-conspiracies-leonard-pozner.html\" rel=\"noopener noreferrer\" target=\"_blank\">This Company Keeps Lies About Sandy Hook on the Web</a>,&#8221; setting off a hailstorm of angry posts on social media that demanded Automattic take action.</p>\n<p>โ€œPosting conspiracy theories or untrue content is not banned from WordPress.com, and unfortunately this is one of those situations,โ€ Automattic told the New York Times in a statement. โ€œIt is a truly awful situation, and we are sympathetic to the Pozner family.โ€</p>\n<p><NAME>, father of Sandy Hook Elementary shooting victim <NAME>, claims that images of his son were being misused on a WordPress.com-hosted site where the author denied the tragedy and called his son a crisis actor. He filed copyright infringement claims on the images used on the conspiracy site in an attempt to get the content removed.</p>\n<p>Automattic examined the images and determined that there was nothing illegal about their use on the site. The company sent Pozner a reply that said, &#8220;because we believe this to be fair use of the material, we will not be removing it at this time.&#8221;</p>\n<p>In the New York Times article, Automattic admits its insensitivity in handling the situation, apologizing to the family, but said the posts in question &#8220;are not violating any current user guidelines, or copyright law.&#8221;</p>\n<p>&#8220;The pain that the family has suffered is very real and if tied to the contents of sites we host, we want to have policies to address that,&#8221; Automattic told the New York Times.</p>\n<h3>WordPress.com Updates it Privacy Policy, Banning Malicious Publication of Unauthorized, Identifying Images of Minors</h3>\n<p>After consulting with the Internet Archive&#8217;s Wayback Machine, it appears WordPress.com has quietly updated its privacy policy, which now includes unauthorized images of minors on the list of things the platform considers private information. The <a href=\"https://web.archive.org/web/20180201091159/https://en.support.wordpress.com/private-information/\" rel=\"noopener noreferrer\" target=\"_blank\">previous policy</a> appears below:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-16-at-8.29.14-AM.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://en.support.wordpress.com/private-information/\" rel=\"noopener noreferrer\" target=\"_blank\">updated policy</a> adds &#8220;the malicious publication of unauthorized, identifying images of minors&#8221; to that list.</p>\n<p>Searching Twitter for discussion surrounding Sandy Hook conspiracy sites turns up a slew of tweets calling on people to boycott WordPress.com and other Automattic products. However, there are also responses on the other end of the spectrum, with Sandy Hook conspiracy theorist supporters retweeting a user who claims that WordPress.com has shut down his site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Minutes ago this morning, I discovered that WordPress has unilaterally and without warning shut down Fellowship of the Minds for alleged violations of \"Terms of Service\". I will explore finding another server for FOTM. Please pray for America.</p>\n<p>&mdash; Eowyn (@DrEowyn) <a href=\"https://twitter.com/DrEowyn/status/1029338304376795136?ref_src=twsrc%5Etfw\">August 14, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">WordPress just suspended my interim blog The Fundamental Option as well. That blog has been active for only the past 2 days, so what possible \"terms of service\" could have have violated? It\'s war, folks. America is entering into very dark days. Be prepared.</p>\n<p>&mdash; Eowyn (@DrEowyn) <a href=\"https://twitter.com/DrEowyn/status/1029788566459625472?ref_src=twsrc%5Etfw\">August 15, 2018</a></p></blockquote>\n<p></p>\n<p>The site in question (fellowshipofminds.com) appears to have been removed, along with an interim site the author created following the first suspension. <a href=\"https://twitter.com/memoryholeblog/status/1029415973500137479\" rel=\"noopener noreferrer\" target=\"_blank\">A number of other related sites</a> have also recently been removed. These events are outlined in <a href=\"http://memoryholeblog.org/2018/08/14/wordpress-automattic-shuts-down-fellowshipoftheminds/\" rel=\"noopener noreferrer\" target=\"_blank\">a post on memoryholeblog.org</a>, a site maintained by <NAME>, a former professor of journalism and media who became known for his research questioning the Sandy Hook Elementary School massacre and Boston Marathon bombing. Tracy&#8217;s blog was also removed from WordPress.com in 2016 for violation of Automatticโ€™s Terms of Service.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-16-at-8.48.40-AM.png?ssl=1\"><img /></a></p>\n<p>Automattic did not detail specific infractions in either case of removal. It&#8217;s not clear whether the site referenced in the New York Times article was removed for a new offense or a previous one. The removals seem to have coincided with WordPress.com&#8217;s updated privacy policy, but Automattic&#8217;s PR department has not responded to a request for comment on the matter.</p>\n<p>&#8220;As with Automatticโ€™s treatment of MHB, FOTMโ€™s disappearance strongly suggests how WordPress.comโ€™s policies are being tailored to placate outside parties whose foremost interest is in stifling political speech on potential high crimes, and how in this instance such poorly-founded grounds for censorship have triumphed over free speech,&#8221; Tracy said.</p>\n<p>Historically, Automattic has been a stalwart defender of free speech on the web. It&#8217;s outlined as part of the <a href=\"https://en.support.wordpress.com/user-guidelines/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.com&#8217;s User Guidelines</a>:</p>\n<blockquote><p>WordPress.com strongly believes in freedom of speech. We have a vast audience spread across many cultures, countries and backgrounds with varying values and our service is designed to let users freely express any ideas and opinions without us censoring or endorsing them.</p></blockquote>\n<p>It&#8217;s not clear whether Automattic changed its policy in response to this situation or whether this situation revealed holes in it that the company wanted to improve. In either case, the policy change seems to have enabled Automattic to do what outraged onlookers wanted them to do, except outside of the emotional mandate issued by the New York Times.</p>\n<p>Without the new privacy policy in place, removal of a site based on offensive material constitutes censorship. Automattic had already determined that the post using the child&#8217;s image, while distasteful and offensive, was fair use for the material. The image had likely already been used thousands of times by news organizations with a different narrative attached to it that is more in alignment with the majority&#8217;s view of the tragedy.</p>\n<p>As it is a private company, Automattic&#8217;s terms of service do not have to reflect the full freedom of speech allowed by the law. However, the company has always upheld its reputation in the past as an uncompromising defender of its users when presented with requests for censorship.</p>\n<p>In a recent <a href=\"https://www.techdirt.com/articles/20180206/10271639166/why-allegedly-defamatory-content-wordpresscom-doesnt-come-down-without-court-order.shtml\" rel=\"noopener noreferrer\" target=\"_blank\">post on Techdirt</a>, Automattic general counsel <NAME> and <NAME> detail how WordPress.com handles its role in managing intermediary liability when the company receives complaints regarding defamatory content:</p>\n<blockquote><p>Making online hosts and other intermediaries like WordPress.com liable for the allegedly defamatory content posted by users is often criticized for burdening hosts and stifling innovation. But intermediary liability isn&#8217;t just bad for online hosts. It&#8217;s also terrible for online speech. The looming possibility of writing a large check incentivizes hosts like Automattic to do one thing when we first receive a complaint about content: Remove it. That decision may legally protect the host, but it doesn&#8217;t protect users or their online speech.</p></blockquote>\n<p>That article explains the level of nuance involved in handling complaints and the costs associated with protecting its users&#8217; freedom of speech. Automattic&#8217;s counsel concludes with an observation that &#8220;leaving such important decisions to the discretion of Internet hosts is misplaced and tilts the balance in favor of silencing often legitimate voices.&#8221;</p>\n<h3>WordPress.com is a Host for Websites, Not a Social Media Silo</h3>\n<p>WordPress.com&#8217;s platform is distinct from social networks in that it is not a social media silo. It acts more as a host and cannot have one-off shutdowns of sites anytime there is a public outcry.</p>\n<p>&#8220;WordPress.com is much closer to being a common carrier than Facebook and other social media,&#8221; <NAME>, associate professor at Northeastern University&#8217;s school of Journalism, <a href=\"https://twitter.com/dankennedy_nu/status/1029343514243616769\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in response to the NYT article. &#8220;That difference really doesnโ€™t get highlighted here.&#8221;</p>\n<p>Self-hosted WordPress (.org) user and data journalist <NAME> also <a href=\"https://twitter.com/stiles/status/1029220655013609472\" rel=\"noopener noreferrer\" target=\"_blank\">commented on the distinction</a>, and followed up with me privately, identifying WordPress.com as &#8220;a free-speech sidewalk for the Internet.&#8221;</p>\n<p>&#8220;WordPress.com needs to make clear to the public that it&#8217;s a host, not a place that controls &#8212; through algorithms or other curation, and revenue โ€” content,&#8221; Stiles said. &#8220;I am NOT a supporter of sites like this. I just want WordPress to thrive as an open-source tool and as an important paid host for web sites. I&#8217;m also worried about WordPress.com having to make arbitrary decisions about content. It&#8217;s tough to define hate speech. We know it when we see it, but I worry about censorship on private platforms.&#8221;</p>\n<p><NAME> also <a href=\"http://scripting.com/2018/08/16/132055.html\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> that the article failed to capture the distinction of WordPress.com as a host for websites:</p>\n<blockquote><p>WordPress.com isn&#8217;t like the others, it isn&#8217;t a silo, so banning him from that service will not necessarily have any affect on the presence of his site. He will be able to export his site, set up his own server, point the DNS entry at that server, and proceed on the open web and it will appear to outside viewers as if nothing happened. This will be the end of the discussion, unless the anti-speech advocates try to exert pressure on the open web. There they will find there is no CEO, no corporate headquarters, no shareholders afraid of losing value, none of the usual pressure points.</p></blockquote>\n<p>This particular situation regarding the Sandy Hook conspiracy site seems to have hit a nerve due to the fact that there are children involved. Despite WordPress.com&#8217;s quick privacy policy change in this instance, Automattic is still a rare outlier among publishing companies when it comes to support of free speech on the web. Media outlets and tech companies are increasingly clamoring for offensive content to be removed, instead of taking a principled stand against censorship.</p>\n<p>Today <a href=\"https://www.poynter.org/news/200-newspapers-will-write-pro-journalism-editorials-will-they-also-listen\" rel=\"noopener noreferrer\" target=\"_blank\">more than 200 newspapers</a>, including the New York Times, are coordinating to publish editorials calling out President Trump&#8217;s characterization of the press as the &#8220;enemy of the people.&#8221; Corporate-owned news media is ready to decry attacks on free speech, but do they really believe in it when it counts? That freedom isn&#8217;t predicated on whether the speech is true or unoffensive to readers.</p>\n<p>Calling out a free speech platform like WordPress.com, without any distinction for its vital role in enabling journalists across the globe, is a coercive attempt to exact a desired result. What WordPress.com has done is groundbreaking in democratizing publishing and enabling bloggers to break news on their own sites.</p>\n<p>The New York Times raking WordPress.com over the coals for its refusal to censor its users is an egregious double standard. A publication cannot call for free speech for itself while eating up the rights of everyone else they don&#8217;t agree with. Principles aren&#8217;t principles if they only serve you when they are convenient.</p>\n<p>Forcing the censorship of offensive speech may feel like swift justice in the short term, but it weakens the fabric of a free society. Let discerning readers make up their own minds when they come across sites disseminating conspiracy theories. Although it may be an unpopular stance, the tragic nature of this particular offense cannot bypass the principles that underpin our basic freedoms.</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, 16 Aug 2018 16:58: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: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:72:\"WPTavern: WPWeekly Episode 327 โ€“ Truth, Misinformation, and Good Ideas\";s: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:58:\"https://wptavern.com?p=83205&preview=true&preview_id=83205\";s: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://wptavern.com/wpweekly-episode-327-truth-misinformation-and-good-ideas\";s: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:2980:\"<p>In this episode, <a href=\"http://jjj.me\"><NAME></a> and I discuss what&#8217;s new in the world of WordPress. First, we talk about Syed Balkhi&#8217;s growth accelerator fund and learn that Jacoby pitched a similar idea to Balkhi at WordCamp Miami 2017.</p>\n<p>We discuss the new feedback surrounding Gutenberg thanks to the call out in WordPress 4.9.8. Near the end of the show, we have a thoughtful conversation around misinformation, truth, and the fine line of allowing freedom of speech on private platforms.</p>\n<p>I apologize for the audio quality in this episode. During the Live hangout, there were no issues detected. However, once the video was encoded by YouTube, audio issues were present, the video was choppy, and the length of the show was shortened.</p>\n<p>Unfortunately, I&#8217;ve been complacent with Google Hangouts&#8217; reliability and have not been recording my audio locally. Beginning next week, Jacoby and I will record our audio locally so if this issue happens again, we&#8217;ll be able to combine the audio tracks. Although there are parts of this episode that are difficult to listen too, I believe there is enough good audio in the show to warrant its publication.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/syed-balkhi-launches-a-wordpress-focused-growth-accelerator-fund\">Syed Balkhi Launches A WordPress-focused Growth Accelerator Fund</a><br />\n<a href=\"https://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\">Gutenberg Plugin Garners Mixed Reactions from New Wave of Testers</a><br />\n<a href=\"https://wptavern.com/mythic-a-wordpress-starter-theme-by-justin-tadlock-now-in-open-beta\">Mythic: A WordPress Starter Theme by <NAME> Now in Open Beta</a><br />\n<a href=\"https://wptavern.com/advanced-custom-fields-to-add-gutenberg-compatibility-in-version-5-0-slated-for-september\">Advanced Custom Fields to Add Gutenberg Compatibility in Version 5.0, Slated for September</a><br />\n<a href=\"https://wptavern.com/ephox-creators-of-tinymce-rebrand-to-tiny-technologies-inc\">Ephox, Creators of TinyMCE, Rebrand to Tiny Technologies Inc.</a><br />\n<a href=\"https://www.nytimes.com/2018/08/13/business/media/sandy-hook-conspiracies-leonard-pozner.html\">This Company Keeps Lies About Sandy Hook on the Web</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 22nd 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribeย to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribeย to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribeย to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #327:</strong><br />\n</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, 15 Aug 2018 23:07:51 +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:11:\"\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:30:\"HeroPress: India and 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2604\";s: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:105:\"https://heropress.com/india-and-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=india-and-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3554:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2017/08/082317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing is better than a girl who writes code.\" /><p>It&#8217;s no secret that HeroPress was greatly helped in its early days by people from India. Jeet, <a href=\"https://heropress.com/essays/ill-keep-looking-for-a-cms-unless-i-find-wordpress/\">Saurabh</a>, <a href=\"https://heropress.com/essays/wordpress-my-passport-to-open-source/\">Aditya</a>, <a href=\"https://heropress.com/essays/growing-wordpress-india/\">Alexander</a>, and <a href=\"https://heropress.com/?s=india\">many others</a> gave deep and meaningful advice on how I, as a white American male, should approach the task I had set before me. This is one of the reasons it makes me so happy when I hear stories of how WordPress changes lives there, especially for women.</p>\n<p>This week&#8217;s HeroPress replay is from Juhi Patel, from Gujarat, in northwestern India. As I recall, hers was also the very first HeroPress essay to be multi-lingual, something I&#8217;ve always wanted.</p>\n<p>Juhi&#8217;s culture isn&#8217;t too keen on women doing Professional work, a problem not all that uncommon throughout the world. Not only did she have the courage to move against that belief system, WordPress gave her the tools to practically make it happen, and thereby be an example to other women around her. There are still good things happening in the world, and Juhi is helping to make them happen.</p>\n<p>Check out her essay here:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Is WordPress Good for Indian Women?</a></p></blockquote>\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: India and HeroPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=India%20and%20HeroPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Findia-and-heropress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: India and HeroPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Findia-and-heropress%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%2Findia-and-heropress%2F&title=India+and+HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: India and HeroPress\"></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/india-and-heropress/&media=https://heropress.com/wp-content/uploads/2017/08/082317-150x150.jpg&description=India and HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: India and HeroPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/india-and-heropress/\" title=\"India and HeroPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/india-and-heropress/\">India and HeroPress</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, 15 Aug 2018 11:00: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:\"\";}}}}}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:97:\"WPTavern: Yoast SEO 8.0 Introduces Gutenberg Sidebar Integration, Revamps Classic Editor Meta Box\";s: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=83162\";s: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/yoast-seo-8-0-introduces-gutenberg-sidebar-integration-revamps-classic-editor-meta-box\";s: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:3396:\"<p><a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\" rel=\"noopener noreferrer\" target=\"_blank\">Yoast SEO 8.0</a>, featuring the plugin&#8217;s first pass at integrating with the Gutenberg interface. This major update also revamps the classic editor&#8217;s meta box for those who do not have the Gutenberg plugin installed.</p>\n<p>In the past, the Yoast SEO meta box was displayed below the post editor. In the Gutenberg UI, the meta box has been redesigned to fit in the sidebar. Those testing Gutenberg will also temporarily find an additional meta box below the post, as the Yoast team has not yet added all optimizations to both yet. In the future, users will have the option to choose between the two.</p>\n<p>The updated design displays individual optimizations in collapsible panels with colored smiley face indicators for feedback at a glance. The snippet preview and social previews feature can still be found in the meta box below the post editor. They will be integrated more tightly into the Gutenberg UI in a future round of updates.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-sidebar-yoast.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\">Yoast SEO</a>\n<p>Yoast SEO 8.0 also brings some of the meta box UI improvements to the one displayed in the classic editor. It organizes all of the Yoast SEO tools into collapsible panels for a look that is cleaner than the tabs found in the previous UI.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-14-at-1.04.17-PM.png?ssl=1\"><img /></a></p>\n<p>Version 8.0 is the first step towards Gutenberg integration. The Yoast SEO team is working on using modals to display previews for snippets and social posts from the sidebar so the interface isn&#8217;t split across two meta boxes. Users will eventually have the option to toggle either meta box display option into view, including those who are using the classic editor. The team is also working on allowing users to create blocks with the correct structured data automatically attached for things like books, recipes, products, and other specific content types.</p>\n<p>WordPress.org has a handful of popular SEO plugins and Yoast SEO is currently leading the pack when it comes to integration with the Gutenberg UI. In a recent support <a href=\"https://wordpress.org/support/topic/gutenberg-12/#post-10379255\" rel=\"noopener noreferrer\" target=\"_blank\">thread</a>, All in One SEO Pack creator <NAME> said his plugin is &#8220;compatible with Gutenberg and will be getting new features to work with it in time.&#8221; Torbert doesn&#8217;t have full <a href=\"https://github.com/semperfiwebdesign/all-in-one-seo-pack/issues/1122\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg integration</a> assigned to a milestone on GitHub yet.</p>\n<p>The SEO Framework, another SEO plugin growing in popularity, appears to be in the same boat if <a href=\"https://github.com/sybrew/the-seo-framework/issues/235\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub activity</a> is any indication. The plugin&#8217;s author, <NAME>, has discussed the possibility of inserting the meta box into the Gutenberg sidebar, similar to the Yoast implementation.</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, 15 Aug 2018 04:19: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: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: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:\"Thu, 13 Sep 2018 05:19:27 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 13 Sep 2018 05:15:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(130,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1536859168','no'),(131,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1536815968','no'),(132,'_transient_timeout_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','1536859168','no'),(133,'_transient_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/09/the-month-in-wordpress-august-2018/\'>The Month in WordPress: August 2018</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-and-blockchain/\'>Post Status: WordPress and Blockchain</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-wilmington-cancelled-due-to-hurricane-florence\'>WPTavern: WordCamp Wilmington Cancelled Due to Hurricane Florence</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/metaslider-plugin-adds-gutenberg-block-for-inserting-sliders\'>WPTavern: MetaSlider Plugin Adds Gutenberg Block for Inserting Sliders</a></li></ul></div>','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2018-09-13 06:19:07','2018-09-13 05:19:07','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-09-13 06:19:07','2018-09-13 05:19:07','',0,'http://localhost:8787/?p=1',0,'post','',1),(2,1,'2018-09-13 06:19:07','2018-09-13 05:19:07','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:\n\n<blockquote>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&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Leicester City, XYZ employs over 2,000 people and does all kinds of awesome things for the Leicester community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://localhost:8787/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-09-13 06:19:07','2018-09-13 05:19:07','',0,'http://localhost:8787/?page_id=2',0,'page','',0),(3,1,'2018-09-13 06:19:07','2018-09-13 05:19:07','<h2>Who we are</h2><p>Our website address is: http://localhost:8787.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymised 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><h3>Media</h3><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><h3>Contact forms</h3><h3>Cookies</h3><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><p>If you have an account and you log in to this site, 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><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 &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><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><h3>Embedded content from other websites</h3><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><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><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><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><h2>What rights you have over your data</h2><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><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','draft','closed','open','','privacy-policy','','','2018-09-13 06:19:07','2018-09-13 05:19:07','',0,'http://localhost:8787/?page_id=3',0,'page','',0),(4,1,'2018-09-13 06:19:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-09-13 06:19:22','0000-00-00 00:00:00','',0,'http://localhost:8787/?p=4',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorised','uncategorised',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','jnplonte'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"<KEY>a:4:{s:10:\"expiration\";i:1536988756;s:2:\"ip\";s:10:\"172.23.0.1\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:5:\"login\";i:1536815956;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.23.0.0\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `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 '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'jnplonte','$P$BApSlCM8BNf58.6SVh3F1FSSYhkLx4.','jnplonte','<EMAIL>','','2018-09-13 05:19:07','',0,'jnplonte'); /*!40000 ALTER TABLE `wp_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 2018-09-13 5:20:07
<reponame>DoctorDib/BikeTheft<filename>api/database/functions/update_vehicle_stat.sql BEGIN UPDATE motorwatch.vehicles SET (status) = (api_parameters->>'status')::number WHERE (api_parameters->>'vehicle_id')::BIGINT = post_id; RETURNING vehicle_id INTO var_vehicle; RETURN json_build_object('vehicle', vehicle_id); END
๏ปฟCREATE TABLE `AdsSites` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `AdsSite` VARCHAR(50) NULL, `WhenAdd` DATETIME NULL ); CREATE TABLE `AudienceInterestsCategories` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `Category` VARCHAR(150) NULL ); CREATE TABLE `Contacts` ( `ID` INT NOT NULL, `SiteID` INT NULL, `LInk` VARCHAR(100) NULL, `Contact` VARCHAR(50) NULL, `Type` VARCHAR(50) NULL ); CREATE TABLE `CountriesTraffic` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `Country` VARCHAR(50) NULL, `Share` FLOAT NULL ); CREATE TABLE `Keywords` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `Keyword` VARCHAR(200) NULL, `KeywordType` VARCHAR(50) NULL ); CREATE TABLE `Links` ( `ID` INT NOT NULL, `Link` VARCHAR(150) NULL, `Zone` VARCHAR(15) NULL, `Title` VARCHAR(300) NULL, `TimeOnSite` TIME NULL, `PageViews` FLOAT NULL, `BounceRate` FLOAT NULL, `Countries` VARCHAR(4000) NULL, `TrafficSources_Direct` FLOAT NULL, `TrafficSources_Refferals` FLOAT NULL, `TrafficSources_Search` FLOAT NULL, `TrafficSources_Social` FLOAT NULL, `TrafficSources_Mail` FLOAT NULL, `TrafficSources_Display` FLOAT NULL, `TopRefferingSites` VARCHAR(4000) NULL, `TopDestinationSites` VARCHAR(4000) NULL, `OrganicSearches` FLOAT NULL, `PaidSearches` FLOAT NULL, `OrganicKeywords` VARCHAR(4000) NULL, `PaidKeywords` VARCHAR(4000) NULL, `SocialTrafficSources` VARCHAR(4000) NULL, `AdsSites` VARCHAR(4000) NULL, `InterestsCategories` VARCHAR(4000) NULL, `AlsoVisitedWebsites` VARCHAR(4000) NULL, `RelevantTopicsForSiteVisitors` VARCHAR(4000) NULL, `SimilarSitesByRank` VARCHAR(4000) NULL, `SimilarSitesBySimilarity` VARCHAR(4000) NULL, `Visitors_01_2016` INT NULL, `Visitors_12_2015` INT NULL, `Visitors_11_2015` INT NULL, `Visitors_10_2015` INT NULL, `Visitors_09_2015` INT NULL, `Visitors_08_2015` INT NULL, `Category1` VARCHAR(100) NULL, `Category2` VARCHAR(100) NULL, `Category3` VARCHAR(100) NULL, `YandexIndex` INT NULL, `YandexIndexParsed` DATETIME NULL ); CREATE TABLE `SocialTraffic` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `Site` VARCHAR(50) NULL, `Share` FLOAT NULL ); CREATE TABLE `Traffic` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(100) NULL, `Visitors_01_2016` INT NULL, `Views_01_2016` INT NULL, `ViewsMainPage_01_2016` INT NULL, `Visitors_12_2015` INT NULL, `Views_12_2015` INT NULL, `ViewsMainPage_12_2015` INT NULL, `Visitors_11_2015` INT NULL, `Views_11_2015` INT NULL, `ViewsMainPage_11_2015` INT NULL, `Visitors_10_2015` INT NULL, `Views_10_2015` INT NULL, `ViewsMainPage_10_2015` INT NULL, `Visitors_09_2015` INT NULL, `Views_09_2015` INT NULL, `ViewsMainPage_09_2015` INT NULL, `Visitors_08_2015` INT NULL, `Views_08_2015` INT NULL, `ViewsMainPage_08_2015` INT NULL ); CREATE TABLE `VisitoresRelevantesTopics` ( `ID` INT NOT NULL, `SiteID` INT NULL, `Link` VARCHAR(50) NULL, `Topic` VARCHAR(200) NULL, `Weight` FLOAT NULL );
<reponame>graindb/graindb-demonstration /* interactive-complex-2 */ select p_personid, p_firstname, p_lastname, m_messageid, COALESCE(m_ps_imagefile, m_content, ''), m_creationdate from person, message, knows where p_personid = m_creatorid and m_creationdate <= '2011-07-24 08:00:00' and k_person1id = 15393162793684 and k_person2id = p_personid order by m_creationdate desc, m_messageid asc limit 20;
<gh_stars>10-100 SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER view [dbo].[VRfidData_With_equipSite] as SELECT e.ID as equipID,e.FK_MonitoredSite,S.UnicIdentifier,m.Name as site_name,M.Category as site_type,e.StartDate as StartDate,e3.StartDate EndDate,rfid.* from [ecoReleve_Sensor].[dbo].[T_rfid] rfid LEFT JOIN Equipment E on e.FK_Sensor = rfid.FK_Sensor and e.Deploy =1 and e.StartDate < rfid.date_ and not exists (select * from [Equipment] e2 where e2.FK_Sensor = e.FK_Sensor AND e2.StartDate > e.StartDate AND e2.StartDate < rfid.date_) LEFT JOIN MonitoredSite M on e.FK_MonitoredSite = M.id LEFT JOIN Sensor S on rfid.FK_Sensor = S.ID LEFT JOIN Equipment E3 on e3.FK_Sensor = rfid.FK_Sensor and e3.Deploy =0 and e3.StartDate > e.StartDate and not exists (select * from [Equipment] e4 where e4.FK_Sensor = e.FK_Sensor AND e4.StartDate < e3.StartDate and e4.StartDate > e.StartDate) GO
BEGIN; SELECT plan(5); -- check if table is present SELECT has_table('community_service'::name, 'addresses'::name); -- check primary key SELECT has_pk('community_service', 'addresses', 'should have primary key'); -- check foreign keys SELECT fk_ok( 'community_service', 'addresses', 'platform_id', 'platform_service', 'platforms', 'id' ); SELECT fk_ok( 'community_service', 'addresses', 'country_id', 'information_service', 'countries', 'id' ); SELECT fk_ok( 'community_service', 'addresses', 'state_id', 'information_service', 'states', 'id' ); SELECT * FROM finish(); ROLLBACK;
CREATE PROCEDURE [dbo].[MetadataTagging_GetById] @Id INT AS BEGIN SELECT [MetadataType], [Recipe], [Ingredient] FROM [MetadataTagging] WHERE [Id] = @Id END
๏ปฟ-- DECLARE @name as nvarchar(226) = 'LRS.DBO.GPSLRSStatwide' SELECT [Documentation] FROM [dbo].[GDB_ITEMS] WHERE [Name] LIKE @name
BEGIN; -- Ireland UPDATE dim_calendar SET hol_ie = FALSE ; -- 1 January -- New Year's Day Lรก Caille or Lรก Bliana Nua UPDATE dim_calendar SET hol_ie = TRUE WHERE EXTRACT( DAY FROM calendar_date) = 1 AND EXTRACT( MONTH FROM calendar_date) = 1 ; -- 17 March -- Saint Patrick's Day <NAME> -- National day. First became an official public holiday in Ireland in 1903.[2] UPDATE dim_calendar SET hol_ie = TRUE WHERE EXTRACT( DAY FROM calendar_date) = 17 AND EXTRACT( MONTH FROM calendar_date) = 3 ; -- -- Good Friday (Aoine an Chรฉasta) is not a public holiday, though all state schools and some businesses close. -- UPDATE dim_calendar -- SET hol_ie = TRUE -- WHERE calc_western_good_fri = TRUE -- ; -- Moveable Monday -- Easter Monday <NAME> UPDATE dim_calendar SET hol_ie = TRUE WHERE calc_western_easter_mon = TRUE ; -- Moveable Monday -- May Day[3] <NAME> -- The first Monday in May. First observed in 1994.[4] WITH cte AS ( SELECT EXTRACT(YEAR FROM dc2.calendar_date) AS yr, MIN(calendar_date) AS first_mon_may FROM dim_calendar AS dc2 WHERE EXTRACT(MONTH FROM calendar_date) = 5 AND EXTRACT(DOW FROM calendar_date) = 1 GROUP BY EXTRACT(YEAR FROM dc2.calendar_date) ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte WHERE dim_calendar.calendar_date = cte.first_mon_may AND EXTRACT(YEAR FROM calendar_date) >= 1994 ; -- Moveable Monday -- June Holiday Lรก Saoire i mรญ an Mheithimh The first Monday in June. -- Previously observed as Whit Monday until 1973.[5] WITH cte AS ( SELECT EXTRACT(YEAR FROM dc2.calendar_date) AS yr, MIN(calendar_date) AS first_mon_jun FROM dim_calendar AS dc2 WHERE EXTRACT(MONTH FROM calendar_date) = 6 AND EXTRACT(DOW FROM calendar_date) = 1 GROUP BY EXTRACT(YEAR FROM dc2.calendar_date) ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte WHERE dim_calendar.calendar_date = cte.first_mon_jun ; -- Moveable Monday -- August Holiday Lรก Saoire i mรญ Lรบnasa -- The first Monday in August. WITH cte AS ( SELECT EXTRACT(YEAR FROM dc2.calendar_date) AS yr, MIN(calendar_date) AS first_mon_aug FROM dim_calendar AS dc2 WHERE EXTRACT(MONTH FROM calendar_date) = 8 AND EXTRACT(DOW FROM calendar_date) = 1 GROUP BY EXTRACT(YEAR FROM dc2.calendar_date) ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte WHERE dim_calendar.calendar_date = cte.first_mon_aug ; -- Moveable Monday -- October Holiday Lรก Saoire i mรญ <NAME> -- The last Monday in October. (Lรก Saoire Oรญche Shamhna). First observed in 1977.[6] WITH cte AS ( SELECT EXTRACT(YEAR FROM dc2.calendar_date) AS yr, MAX(calendar_date) AS last_mon_oct FROM dim_calendar AS dc2 WHERE EXTRACT(MONTH FROM calendar_date) = 10 AND EXTRACT(DOW FROM calendar_date) = 1 GROUP BY EXTRACT(YEAR FROM dc2.calendar_date) ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte WHERE dim_calendar.calendar_date = cte.last_mon_oct ; -- 25 December -- Christmas Day <NAME> UPDATE dim_calendar SET hol_ie = TRUE WHERE calc_western_christmas = TRUE ; -- 26 December -- St. Stephen's Day <NAME>ile Stiofรกin or Lรก an Dreoilรญn UPDATE dim_calendar SET hol_ie = TRUE WHERE EXTRACT( DAY FROM calendar_date) = 26 AND EXTRACT( MONTH FROM calendar_date) = 12 ; -- Note that where a public holiday falls on a Saturday or a Sunday, or possibly coincides with another public holiday, -- it is generally observed (as a day off work) on the next available weekday, even though the public holiday itself does not move. -- In such cases, an employee is entitled to at least one of the following (as chosen by the employer): a day off within a month, -- an additional day's paid annual leave or an additional day's pay. -- The usual practice is, however, to award a day off on the next available weekday. -- Roll Sat holidays to next working day WITH cte1 AS ( SELECT calendar_date AS holiday_weekend_day FROM dim_calendar WHERE hol_ie = TRUE AND EXTRACT( DOW FROM calendar_date) = 6 -- Sat ), cte2 AS ( SELECT MIN(dc2.calendar_date) AS next_free_day FROM cte1, dim_calendar as dc2 WHERE dc2.calendar_date > cte1.holiday_weekend_day AND EXTRACT( DOW FROM dc2.calendar_date) BETWEEN 1 AND 5 AND dc2.hol_ie = FALSE GROUP BY cte1.holiday_weekend_day ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte2 WHERE dim_calendar.calendar_date = cte2.next_free_day ; -- Roll Sun holidays to next working day WITH cte1 AS ( SELECT calendar_date AS holiday_weekend_day FROM dim_calendar WHERE hol_ie = TRUE AND EXTRACT( DOW FROM calendar_date) = 0 -- Sun ), cte2 AS ( SELECT MIN(dc2.calendar_date) AS next_free_day FROM cte1, dim_calendar as dc2 WHERE dc2.calendar_date > cte1.holiday_weekend_day AND EXTRACT( DOW FROM dc2.calendar_date) BETWEEN 1 AND 5 AND dc2.hol_ie = FALSE GROUP BY cte1.holiday_weekend_day ) UPDATE dim_calendar SET hol_ie = TRUE FROM cte2 WHERE dim_calendar.calendar_date = cte2.next_free_day ; COMMIT;
DROP TABLE IF EXISTS lineitem_text_partitioned_hive_string; CREATE EXTERNAL TABLE IF NOT EXISTS lineitem_text_partitioned_hive_string ( l_orderkey INT, l_partkey INT, l_suppkey INT, l_linenumber INT, l_quantity DOUBLE, l_extendedprice DOUBLE, l_discount DOUBLE, l_tax DOUBLE, l_returnflag STRING, l_linestatus STRING, l_shipdate DATE, l_commitdate DATE, l_receiptdate DATE, l_shipinstruct STRING, l_shipmode STRING, l_comment STRING ) PARTITIONED BY (year STRING) ROW FORMAT DELIMITED FIELDS TERMINATED BY "|" STORED AS TEXTFILE LOCATION "/drill/testdata/partition_pruning/hive/text/lineitempart"; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1991') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1991'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1992') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1992'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1993') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1993'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1994') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1994'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1995') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1995'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1996') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1996'; ALTER TABLE lineitem_text_partitioned_hive_string ADD PARTITION (year='1997') location '/drill/testdata/partition_pruning/hive/text/lineitempart/1997'; DROP TABLE IF EXISTS lineitem_parquet_partitioned_hive_string; CREATE EXTERNAL TABLE IF NOT EXISTS lineitem_parquet_partitioned_hive_string ( l_orderkey INT, l_partkey INT, l_suppkey INT, l_linenumber INT, l_quantity DOUBLE, l_extendedprice DOUBLE, l_discount DOUBLE, l_tax DOUBLE, l_returnflag STRING, l_linestatus STRING, l_shipdate STRING, l_commitdate STRING, l_receiptdate STRING, l_shipinstruct STRING, l_shipmode STRING, l_comment STRING ) PARTITIONED BY (year STRING) STORED AS PARQUET LOCATION "/drill/testdata/partition_pruning/hive/parquet/lineitempart"; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1991') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1991'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1992') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1992'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1993') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1993'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1994') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1994'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1995') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1995'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1996') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1996'; ALTER TABLE lineitem_parquet_partitioned_hive_string ADD PARTITION (year='1997') location '/drill/testdata/partition_pruning/hive/parquet/lineitempart/1997'; -- Hive dynamic partitions SET hive.exec.dynamic.partition.mode=true; CREATE DATABASE IF NOT EXISTS dynamic_partitions; USE dynamic_partitions; DROP TABLE IF EXISTS lineitem_text_partitioned_hive_string; CREATE TABLE IF NOT EXISTS lineitem_text_partitioned_hive_string ( l_orderkey INT, l_partkey INT, l_suppkey INT, l_linenumber INT, l_quantity DOUBLE, l_extendedprice DOUBLE, l_discount DOUBLE, l_tax DOUBLE, l_returnflag STRING, l_linestatus STRING, l_shipdate DATE, l_commitdate DATE, l_receiptdate DATE, l_shipinstruct STRING, l_shipmode STRING, l_comment STRING ) PARTITIONED BY (year STRING) ROW FORMAT DELIMITED FIELDS TERMINATED BY "|" STORED AS TEXTFILE LOCATION "/drill/testdata/partition_pruning/hive/text/dynamic_partition_lineitempart_string"; INSERT OVERWRITE TABLE DYNAMIC_PARTITIONS.LINEITEM_TEXT_PARTITIONED_HIVE_STRING PARTITION (year) SELECT l_orderkey, l_partkey, l_suppkey, l_linenumber, l_quantity, l_extendedprice, l_discount, l_tax, l_returnflag, l_linestatus, l_shipdate, l_commitdate, l_receiptdate, l_shipinstruct, l_shipmode, l_comment, year FROM DEFAULT.LINEITEM_TEXT_PARTITIONED_HIVE_STRING; DROP TABLE IF EXISTS lineitem_parquet_partitioned_hive_string; CREATE TABLE IF NOT EXISTS lineitem_parquet_partitioned_hive_string ( l_orderkey INT, l_partkey INT, l_suppkey INT, l_linenumber INT, l_quantity DOUBLE, l_extendedprice DOUBLE, l_discount DOUBLE, l_tax DOUBLE, l_returnflag STRING, l_linestatus STRING, l_shipdate STRING, l_commitdate STRING, l_receiptdate STRING, l_shipinstruct STRING, l_shipmode STRING, l_comment STRING ) PARTITIONED BY (year STRING) ROW FORMAT DELIMITED FIELDS TERMINATED BY "|" STORED AS PARQUET LOCATION "/drill/testdata/partition_pruning/hive/parquet/dynamic_partition_lineitempart_string"; INSERT OVERWRITE TABLE dynamic_partitions.lineitem_parquet_partitioned_hive_string PARTITION (year) SELECT l_orderkey, l_partkey , l_suppkey, l_linenumber, l_quantity, l_extendedprice, l_discount, l_tax , l_returnflag , l_linestatus, l_shipdate , l_commitdate , l_receiptdate , l_shipinstruct, l_shipmode, l_comment, year FROM DEFAULT.lineitem_parquet_partitioned_hive_string; SET hive.exec.dynamic.partition.mode=strict;
// ไฝฟ็”จ explain() ๅ’Œ hint() /** { "plannerVersion": 1, "namespace": "test.users", "indexFilterSet": "false", "parsedQuery": { "age": { "$eq": 42 } }, "winningPlan": { "stage": "LIMIT", "limitAmount": 1, "inputStage": { "stage": "COLLSCAN", "filter": { "age": { "$eq": 42 } }, "direction": "forward" } }, "rejectedPlans": [] } */ db.users.find({"age": 42}).explain()
create table edu_subject ( id bigint(19) auto_increment primary key, parent_id bigint(19) null, title varchar(64) not null, sort smallint null, deleted tinyint(1) null, create_user_id bigint(19) null, update_user_id bigint(19) null, create_date datetime not null, update_date datetime null ) charset = utf8; INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (1, -1, 'ๅŽ็ซฏ', 1, 0, 1, 1, '2022-03-08 08:20:07', '2022-03-09 03:11:19'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (2, 1, 'Java', 1, 0, 1, 1, '2022-03-08 09:20:33', '2022-03-09 03:16:04'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (3, 1, 'Golang', 3, 0, 1, 1, '2022-03-08 08:20:53', '2022-03-09 03:15:53'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (4, -1, 'ๅ‰็ซฏ', 3, 0, 1, 1, '2022-03-08 08:21:44', '2022-03-08 14:49:04'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (5, 4, 'Css', 2, 0, 1, 1, '2022-03-08 08:22:10', null); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (6, 4, 'Vue', 2, 0, 1, 1, '2022-03-08 08:22:28', null); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (8, -1, 'ๆ•ฐๆฎๅบ“', 2, 0, 1, 1, '2022-03-08 13:32:03', '2022-03-09 03:10:37'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (11, 8, 'Mysql', 5, 0, 1, 1, '2022-03-08 13:34:21', '2022-03-09 03:07:30'); INSERT INTO db_wisdom.edu_subject (id, parent_id, title, sort, deleted, create_user_id, update_user_id, create_date, update_date) VALUES (12, 8, 'Sqlserver', 2, 0, 1, 1, '2022-03-08 13:34:45', '2022-03-09 03:08:12');
delimiter $$ CREATE DEFINER=`root`@`localhost` PROCEDURE `GetVariantNumber`(argProductID int, argOptionsID int) BEGIN select a.i, a.OptionsID from (select OptionsID, @s:=@s+1 as i from optionsreceivingproduct, (SELECT @s:= 0) AS s where ToId = argProductID group by OptionsID) as a where OptionsID = IF(argOptionsID = 0, OptionsID, argOptionsID); END$$
-- phpMyAdmin SQL Dump -- version 4.6.6deb5 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Oct 27, 2020 at 03:18 PM -- Server version: 5.7.31-0ubuntu0.18.04.1 -- PHP Version: 7.2.24-0ubuntu0.18.04.7 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: `ajax03` -- -- -------------------------------------------------------- -- -- Table structure for table `department` -- CREATE TABLE `department` ( `id` int(11) UNSIGNED NOT NULL, `depart_name` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `department` -- INSERT INTO `department` (`id`, `depart_name`) VALUES (1, 'Phรฒng Kแบฟ hoแบกch - Tร i chรญnh'), (2, 'Phรฒng Tแป• chแปฉc cรกn bแป™'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) UNSIGNED NOT NULL, `username` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `department` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `name`, `email`, `department`) VALUES (1, 'mennt', '<NAME>', '<EMAIL>', 1), (2, 'minhbn', '<NAME>', '<EMAIL>', 1), (3, 'minhltn', '<NAME>', '<EMAIL>', 2), (4, 'minhnn', '<NAME>', '<EMAIL>', 2); -- -- Indexes for dumped tables -- -- -- Indexes for table `department` -- ALTER TABLE `department` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD KEY `department` (`department`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `department` -- ALTER TABLE `department` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `users` -- ALTER TABLE `users` ADD CONSTRAINT `users_ibfk_1` FOREIGN KEY (`department`) REFERENCES `department` (`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 */;
GO CREATE TABLE [DOI].[SysIndexPhysicalStats] ( [database_id] [smallint] NOT NULL, [object_id] [int] NOT NULL, [index_id] [int] NOT NULL, [partition_number] [int] NOT NULL, [index_type_desc] [nvarchar] (120) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [alloc_unit_type_desc] [nvarchar] (120) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [index_depth] [tinyint] NULL, [index_level] [tinyint] NULL, [avg_fragmentation_in_percent] [float] NULL, [fragment_count] [bigint] NULL, [avg_fragment_size_in_pages] [float] NULL, [page_count] [bigint] NULL, [avg_page_space_used_in_percent] [float] NULL, [record_count] [bigint] NULL, [ghost_record_count] [bigint] NULL, [version_ghost_record_count] [bigint] NULL, [min_record_size_in_bytes] [int] NULL, [max_record_size_in_bytes] [int] NULL, [avg_record_size_in_bytes] [float] NULL, [forwarded_record_count] [bigint] NULL, [compressed_page_count] [bigint] NULL, [hobt_id] [bigint] NOT NULL, [columnstore_delete_buffer_state] [tinyint] NULL, [columnstore_delete_buffer_state_desc] [nvarchar] (120) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, CONSTRAINT [PK_SysIndexPhysicalStats] PRIMARY KEY NONCLUSTERED ([database_id], [object_id], [index_id], [partition_number], [hobt_id], [alloc_unit_type_desc]) ) WITH ( MEMORY_OPTIMIZED = ON ) GO
/* Navicat Premium Data Transfer Source Server : 192.168.127.12 Source Server Type : MySQL Source Server Version : 50726 Source Host : 192.168.127.12:3306 Source Schema : wechat_mall Target Server Type : MySQL Target Server Version : 50726 File Encoding : 65001 Date: 05/05/2020 10:57:25 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for wechat_mall_banner -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_banner`; CREATE TABLE `wechat_mall_banner` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ›พ็‰‡ๅœฐๅ€', `name` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅ็งฐ', `business_type` tinyint(2) NOT NULL DEFAULT '0' COMMENT 'ไธšๅŠก็ฑปๅž‹๏ผš1-ๅ•†ๅ“', `business_id` int(1) NOT NULL DEFAULT '0' COMMENT 'ไธšๅŠกไธป้”ฎ', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๆ˜พ็คบ๏ผš0-ๅฆ 1-ๆ˜ฏ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅฐ็จ‹ๅบBanner่กจ'; -- ---------------------------- -- Table structure for wechat_mall_category -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_category`; CREATE TABLE `wechat_mall_category` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '็ˆถ็บงๅˆ†็ฑปID', `name` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅˆ†็ฑปๅ็งฐ', `sort` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆŽ’ๅบ', `online` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆไธŠ็บฟ๏ผš0-ๅฆ 1-ๆ˜ฏ', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ›พ็‰‡ๅœฐๅ€', `description` varchar(50) NOT NULL DEFAULT '' COMMENT 'ๅˆ†็ฑปๆ่ฟฐ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_parent_id` (`parent_id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ๅˆ†็ฑป่กจ'; -- ---------------------------- -- Table structure for wechat_mall_cms_user -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_cms_user`; CREATE TABLE `wechat_mall_cms_user` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `username` varchar(20) NOT NULL DEFAULT '' COMMENT '็”จๆˆทๅ', `password` varchar(32) NOT NULL DEFAULT '' COMMENT 'ๅฏ†็ ', `email` varchar(20) NOT NULL DEFAULT '' COMMENT '้‚ฎ็ฎฑ', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT 'ๆ‰‹ๆœบๅท', `avatar` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅคดๅƒ', `group_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅˆ†็ป„ID', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_email` (`email`), KEY `idx_mobile` (`mobile`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='CMSๅŽๅฐ็”จๆˆท่กจ'; -- ---------------------------- -- Records of wechat_mall_cms_user -- ---------------------------- BEGIN; INSERT INTO `wechat_mall_cms_user` VALUES (1, 'admin', '<PASSWORD>', '', '', 'http://i1.sleeve.7yue.pro/af72b2f7-c889-47dd-82a1-80d8a796b044.jpg', 0, 0, '2020-05-05 10:54:35', '2020-05-05 10:54:35'); COMMIT; -- ---------------------------- -- Table structure for wechat_mall_coupon -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_coupon`; CREATE TABLE `wechat_mall_coupon` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `title` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ ‡้ข˜', `full_money` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ๆปกๅ‡้ข', `minus` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ไผ˜ๆƒ ้ข', `rate` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ๆŠ˜ๆ‰ฃ', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๅˆธ็ฑปๅž‹๏ผš1-ๆปกๅ‡ๅˆธ 2-ๆŠ˜ๆ‰ฃๅˆธ 3-ไปฃ้‡‘ๅˆธ 4-ๆปก้‡‘้ขๆŠ˜ๆ‰ฃๅˆธ', `grant_num` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ‘ๅˆธๆ•ฐ้‡', `limit_num` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•ไบบ้™้ข†', `start_time` datetime NOT NULL COMMENT 'ๅผ€ๅง‹ๆ—ถ้—ด', `end_time` datetime NOT NULL COMMENT '็ป“ๆŸๆ—ถ้—ด', `description` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ่ฟฐ', `online` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆไธŠๆžถ: 0-ไธ‹ๆžถ 1-ไธŠๆžถ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ไผ˜ๆƒ ๅˆธ่กจ'; -- ---------------------------- -- Table structure for wechat_mall_coupon_log -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_coupon_log`; CREATE TABLE `wechat_mall_coupon_log` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ไผ˜ๆƒ ๅˆธID', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `use_time` datetime DEFAULT NULL COMMENT 'ไฝฟ็”จๆ—ถ้—ด', `expire_time` datetime NOT NULL COMMENT '่ฟ‡ๆœŸๆ—ถ้—ด', `status` int(11) NOT NULL DEFAULT '0' COMMENT '็Šถๆ€๏ผš0-ๆœชไฝฟ็”จ 1-ๅทฒไฝฟ็”จ 2-ๅทฒ่ฟ‡ๆœŸ', `code` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅ…‘ๆข็ ', `order_no` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ ธ้”€็š„่ฎขๅ•ๅท', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_coupon_id` (`coupon_id`), KEY `idx_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ไผ˜ๆƒ ๅˆธ้ข†ๅ–่ฎฐๅฝ•่กจ'; -- ---------------------------- -- Table structure for wechat_mall_goods -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_goods`; CREATE TABLE `wechat_mall_goods` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `brand_name` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅ“็‰Œๅ็งฐ', `title` varchar(80) NOT NULL DEFAULT '' COMMENT 'ๆ ‡้ข˜', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ไปทๆ ผ', `discount_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ๆŠ˜ๆ‰ฃ', `category_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅˆ†็ฑปID', `online` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆไธŠๆžถ๏ผš0-ไธ‹ๆžถ 1-ไธŠๆžถ', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ไธปๅ›พ', `banner_picture` text COMMENT '่ฝฎๆ’ญๅ›พ', `detail_picture` text COMMENT '่ฏฆๆƒ…ๅ›พ', `tags` varchar(100) NOT NULL DEFAULT '' COMMENT 'ๆ ‡็ญพ๏ผŒ็คบไพ‹๏ผšๅŒ…้‚ฎ$็ƒญ้—จ', `sale_num` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•†ๅ“้”€้‡', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_title` (`title`), KEY `idx_category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ๅ•†ๅ“่กจ'; -- ---------------------------- -- Table structure for wechat_mall_goods_browse_record -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_goods_browse_record`; CREATE TABLE `wechat_mall_goods_browse_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•†ๅ“ID', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ•†ๅ“ๅ›พ็‰‡', `title` varchar(80) NOT NULL DEFAULT '' COMMENT 'ๅ•†ๅ“ๅ็งฐ', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ๅ•†ๅ“ไปทๆ ผ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_goods_id` (`goods_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ๅ•†ๅ“ๆต่งˆ่ฎฐๅฝ•'; -- ---------------------------- -- Table structure for wechat_mall_goods_spec -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_goods_spec`; CREATE TABLE `wechat_mall_goods_spec` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•†ๅ“ID', `spec_id` int(11) NOT NULL DEFAULT '0' COMMENT '่ง„ๆ ผID', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_goods_id` (`goods_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-ๅ•†ๅ“่ง„ๆ ผ่กจ'; -- ---------------------------- -- Table structure for wechat_mall_grid_category -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_grid_category`; CREATE TABLE `wechat_mall_grid_category` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `title` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅฎซๆ ผๆ ‡้ข˜', `name` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅฎซๆ ผๅ', `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '้กถ็บงๅˆ†็ฑปID', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ›พ็‰‡ๅœฐๅ€', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅฐ็จ‹ๅบ-้ฆ–้กตๅฎซๆ ผ่กจ'; -- ---------------------------- -- Table structure for wechat_mall_group_page_permission -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_group_page_permission`; CREATE TABLE `wechat_mall_group_page_permission` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `group_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅˆ†็ป„ID', `page_id` int(11) NOT NULL DEFAULT '0' COMMENT '้กต้ขID', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='CMS-็”จๆˆทๅˆ†็ป„-้กต้ขๆƒ้™่กจ'; -- ---------------------------- -- Table structure for wechat_mall_module -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_module`; CREATE TABLE `wechat_mall_module` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `name` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๆจกๅ—ๅ็งฐ', `description` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ่ฟฐ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='CMS-็ป„ๆˆๆจกๅ—'; -- ---------------------------- -- Records of wechat_mall_module -- ---------------------------- BEGIN; INSERT INTO `wechat_mall_module` VALUES (1, 'ๅ•†ๅŸŽ', 'ๅ•†ๅŸŽ็ฎก็†', 0, '2020-03-14 08:50:49', '2020-03-14 08:50:49'); INSERT INTO `wechat_mall_module` VALUES (2, 'ๅ•†ๅ“', 'ๅ•†ๅ“็ฎก็†', 0, '2020-03-14 08:50:59', '2020-03-14 08:50:59'); INSERT INTO `wechat_mall_module` VALUES (3, '่ฎขๅ•', '่ฎขๅ•็ฎก็†', 0, '2020-03-14 08:51:09', '2020-03-14 08:51:09'); INSERT INTO `wechat_mall_module` VALUES (4, '่ฅ้”€', '่ฅ้”€็ฎก็†', 0, '2020-03-14 08:51:17', '2020-03-14 08:51:17'); COMMIT; -- ---------------------------- -- Table structure for wechat_mall_module_page -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_module_page`; CREATE TABLE `wechat_mall_module_page` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `module_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆจกๅ—ID', `name` varchar(10) NOT NULL DEFAULT '' COMMENT '้กต้ขๅ็งฐ', `description` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ่ฟฐ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_module_id` (`module_id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COMMENT='CMS-ๆจกๅ—้กต้ข'; -- ---------------------------- -- Records of wechat_mall_module_page -- ---------------------------- BEGIN; INSERT INTO `wechat_mall_module_page` VALUES (1, 1, 'ๆŸฅ็œ‹Banner', '', 0, '2020-03-14 08:51:40', '2020-03-14 08:51:40'); INSERT INTO `wechat_mall_module_page` VALUES (2, 1, '็ฎก็†Banner', '', 0, '2020-03-14 08:52:02', '2020-03-14 08:52:02'); INSERT INTO `wechat_mall_module_page` VALUES (3, 1, 'ๆŸฅ็œ‹ๅฎซๆ ผ', '', 0, '2020-03-14 08:52:14', '2020-03-14 08:52:14'); INSERT INTO `wechat_mall_module_page` VALUES (4, 1, '็ฎก็†ๅฎซๆ ผ', '', 0, '2020-03-14 08:52:25', '2020-03-14 08:52:25'); INSERT INTO `wechat_mall_module_page` VALUES (5, 2, 'ๆŸฅ็œ‹ๅ•†ๅ“ๅˆ†็ฑป', '', 0, '2020-03-14 08:52:42', '2020-03-14 08:52:42'); INSERT INTO `wechat_mall_module_page` VALUES (6, 2, '็ฎก็†ๅ•†ๅ“ๅˆ†็ฑป', '', 0, '2020-03-14 08:52:53', '2020-03-14 08:52:53'); INSERT INTO `wechat_mall_module_page` VALUES (7, 2, 'ๆŸฅ็œ‹่ง„ๆ ผ', '', 0, '2020-03-14 08:53:05', '2020-03-14 08:53:05'); INSERT INTO `wechat_mall_module_page` VALUES (8, 2, '็ฎก็†่ง„ๆ ผ', '', 0, '2020-03-14 08:53:13', '2020-03-14 08:53:13'); INSERT INTO `wechat_mall_module_page` VALUES (9, 2, 'ๆŸฅ็œ‹ๅ•†ๅ“', '', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (10, 2, '็ฎก็†ๅ•†ๅ“', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (11, 2, 'ๆŸฅ็œ‹ๅบ“ๅญ˜', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (12, 2, '็ฎก็†ๅบ“ๅญ˜', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (13, 3, 'ๆŸฅ็œ‹่ฎขๅ•', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (14, 3, '็ฎก็†่ฎขๅ•', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (15, 4, 'ๆŸฅ็œ‹ไผ˜ๆƒ ๅˆธ', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); INSERT INTO `wechat_mall_module_page` VALUES (16, 4, '็ฎก็†ไผ˜ๆƒ ๅˆธ', ' ', 0, '2020-05-04 16:52:27', '2020-05-04 16:52:27'); COMMIT; -- ---------------------------- -- Table structure for wechat_mall_order -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_order`; CREATE TABLE `wechat_mall_order` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '่ฎขๅ•ๅท', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `pay_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '่ฎขๅ•้‡‘้ข๏ผˆๅ•†ๅ“้‡‘้ข + ่ฟ่ดน - ไผ˜ๆƒ ้‡‘้ข๏ผ‰', `goods_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ๅ•†ๅ“ๅฐ่ฎก้‡‘้ข', `discount_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ไผ˜ๆƒ ้‡‘้ข', `dispatch_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '่ฟ่ดน', `pay_time` datetime NOT NULL DEFAULT '2006-01-02 15:04:05' COMMENT 'ๆ”ฏไป˜ๆ—ถ้—ด', `deliver_time` datetime NOT NULL DEFAULT '2006-01-02 15:04:05' COMMENT 'ๅ‘่ดงๆ—ถ้—ด', `finish_time` datetime NOT NULL DEFAULT '2006-01-02 15:04:05' COMMENT 'ๆˆไบคๆ—ถ้—ด', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '็Šถๆ€ -1 ๅทฒๅ–ๆถˆ 0-ๅพ…ไป˜ๆฌพ 1-ๅพ…ๅ‘่ดง 2-ๅพ…ๆ”ถ่ดง 3-ๅทฒๅฎŒๆˆ 4-๏ผˆๅพ…ๅ‘่ดง๏ผ‰้€€ๆฌพ็”ณ่ฏท 5-ๅทฒ้€€ๆฌพ\n', `address_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆ”ถ่ดงๅœฐๅ€ID', `address_snapshot` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๆ”ถ่ดงๅœฐๅ€ๅฟซ็…ง', `wxapp_prepay_id` varchar(50) NOT NULL DEFAULT '' COMMENT 'ๅพฎไฟก้ข„ๆ”ฏไป˜ID', `transaction_id` varchar(50) NOT NULL DEFAULT '' COMMENT 'ๅพฎไฟกๆ”ฏไป˜ๅ•ๅท', `remark` varchar(100) NOT NULL DEFAULT '' COMMENT '่ฎขๅ•ๅค‡ๆณจ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_order_no` (`order_no`), KEY `idx_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ่ฎขๅ•่กจ'; -- ---------------------------- -- Table structure for wechat_mall_order_goods -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_order_goods`; CREATE TABLE `wechat_mall_order_goods` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `order_no` varchar(30) NOT NULL DEFAULT '' COMMENT '่ฎขๅ•ๅท', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•†ๅ“ID', `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT 'sku ID', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ•†ๅ“ๅ›พ็‰‡', `title` varchar(80) NOT NULL DEFAULT '' COMMENT 'ๅ•†ๅ“ๆ ‡้ข˜', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ไปทๆ ผ', `specs` varchar(500) NOT NULL DEFAULT '' COMMENT 'sku่ง„ๆ ผๅฑžๆ€ง', `num` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆ•ฐ้‡', `lock_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '้”ๅฎš็Šถๆ€๏ผš0-้”ๅฎš 1-่งฃ้”', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_order_no` (`order_no`), KEY `idx_goods_id` (`goods_id`), KEY `idx_sku_id` (`sku_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ่ฎขๅ•-ๅ•†ๅ“่กจ'; -- ---------------------------- -- Table structure for wechat_mall_order_refund -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_order_refund`; CREATE TABLE `wechat_mall_order_refund` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `refund_no` varchar(30) NOT NULL DEFAULT '' COMMENT '้€€ๆฌพ็ผ–ๅท', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅนณๅฐ็”จๆˆทID', `order_no` varchar(30) NOT NULL DEFAULT '' COMMENT '่ฎขๅ•ๅท', `reason` varchar(30) NOT NULL DEFAULT '' COMMENT '้€€ๆฌพๅŽŸๅ› ', `refund_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '้€€ๆฌพ้‡‘้ข', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '็Šถๆ€๏ผš0-้€€ๆฌพ็”ณ่ฏท 1-้€€ๆฌพๅฎŒๆˆ 2-ๆ’ค้”€็”ณ่ฏท', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `refund_time` datetime NOT NULL DEFAULT '2006-01-02 15:04:05' COMMENT '้€€ๆฌพๆ—ถ้—ด', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-่ฎขๅ•้€€ๆฌพ็”ณ่ฏท่กจ'; -- ---------------------------- -- Table structure for wechat_mall_sku -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_sku`; CREATE TABLE `wechat_mall_sku` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `title` varchar(20) NOT NULL DEFAULT '' COMMENT 'ๆ ‡้ข˜', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'ไปทๆ ผ', `code` varchar(30) NOT NULL DEFAULT '' COMMENT '็ผ–็ ', `stock` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅบ“ๅญ˜้‡', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆ‰€ๅฑžๅ•†ๅ“', `online` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆไธŠๆžถ: 0-ไธ‹ๆžถ 1-ไธŠๆžถ', `picture` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅ›พ็‰‡', `specs` varchar(500) NOT NULL DEFAULT '' COMMENT '่ง„ๆ ผๅฑžๆ€ง', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_title` (`title`), KEY `idx_code` (`code`), KEY `idx_goods_id` (`goods_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-SKU่กจ'; -- ---------------------------- -- Table structure for wechat_mall_sku_spec_attr -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_sku_spec_attr`; CREATE TABLE `wechat_mall_sku_spec_attr` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT 'sku่กจไธป้”ฎ', `spec_id` int(11) NOT NULL DEFAULT '0' COMMENT '่ง„ๆ ผID', `attr_id` int(11) NOT NULL DEFAULT '0' COMMENT '่ง„ๆ ผ-ๅฑžๆ€งID', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_sku_id` (`sku_id`), KEY `idx_spec_id` (`spec_id`), KEY `idx_attr_id` (`attr_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-SKUๅ…ณ่”็š„่ง„ๆ ผๅฑžๆ€ง'; -- ---------------------------- -- Table structure for wechat_mall_specification -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_specification`; CREATE TABLE `wechat_mall_specification` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `name` varchar(30) NOT NULL DEFAULT '' COMMENT '่ง„ๆ ผๅๅ็งฐ', `description` varchar(30) NOT NULL DEFAULT '' COMMENT '่ง„ๆ ผๅๆ่ฟฐ', `unit` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅ•ไฝ', `standard` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๆ ‡ๅ‡†: 0-้žๆ ‡ๅ‡† 1-ๆ ‡ๅ‡†', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-่ง„ๆ ผ่กจ'; -- ---------------------------- -- Table structure for wechat_mall_specification_attr -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_specification_attr`; CREATE TABLE `wechat_mall_specification_attr` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `spec_id` int(11) NOT NULL DEFAULT '0' COMMENT '่ง„ๆ ผID', `value` varchar(20) NOT NULL DEFAULT '' COMMENT 'ๅฑžๆ€งๅ€ผ', `extend` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ‰ฉๅฑ•', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_spec_id` (`spec_id`), KEY `idx_value` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-่ง„ๆ ผๅฑžๆ€ง่กจ'; -- ---------------------------- -- Table structure for wechat_mall_user -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_user`; CREATE TABLE `wechat_mall_user` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `openid` varchar(50) NOT NULL DEFAULT '' COMMENT 'ๅพฎไฟกopenid', `nickname` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๆ˜ต็งฐ', `avatar` varchar(200) NOT NULL DEFAULT '' COMMENT 'ๅพฎไฟกๅคดๅƒ', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT 'ๆ‰‹ๆœบๅท', `city` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅŸŽๅธ‚', `province` varchar(30) NOT NULL DEFAULT '' COMMENT '็œไปฝ', `country` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅ›ฝๅฎถ', `gender` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ€งๅˆซ 0๏ผšๆœช็Ÿฅใ€1๏ผš็”ทใ€2๏ผšๅฅณ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๆ›ดๆ–ฐๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_openid` (`openid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅฐ็จ‹ๅบ-็”จๆˆท่กจ'; -- ---------------------------- -- Table structure for wechat_mall_user_address -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_user_address`; CREATE TABLE `wechat_mall_user_address` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `contacts` varchar(15) NOT NULL DEFAULT '' COMMENT '่”็ณปไบบ', `mobile` varchar(11) NOT NULL DEFAULT '' COMMENT 'ๆ‰‹ๆœบๅท', `province_id` varchar(10) NOT NULL DEFAULT '' COMMENT '็œไปฝ็ผ–็ ', `city_id` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅŸŽๅธ‚็ผ–็ ', `area_id` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅœฐๅŒบ็ผ–็ ', `province_str` varchar(10) NOT NULL DEFAULT '' COMMENT '็œไปฝ', `city_str` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅŸŽๅธ‚', `area_str` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅœฐๅŒบ', `address` varchar(30) NOT NULL DEFAULT '' COMMENT '่ฏฆ็ป†ๅœฐๅ€', `is_default` tinyint(1) NOT NULL DEFAULT '0' COMMENT '้ป˜่ฎคๆ”ถ่ดงๅœฐๅ€๏ผš0-ๅฆ 1-ๆ˜ฏ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-็”จๆˆทๆ”ถ่ดงๅœฐๅ€่กจ'; -- ---------------------------- -- Table structure for wechat_mall_user_cart -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_user_cart`; CREATE TABLE `wechat_mall_user_cart` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '็”จๆˆทID', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅ•†ๅ“ID', `sku_id` int(11) NOT NULL DEFAULT '0' COMMENT 'sku ID', `num` int(11) NOT NULL DEFAULT '0' COMMENT 'ๆ•ฐ้‡', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_goods_id` (`goods_id`), KEY `idx_sku_id` (`sku_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-่ดญ็‰ฉ่ฝฆ่กจ'; -- ---------------------------- -- Table structure for wechat_mall_user_group -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_user_group`; CREATE TABLE `wechat_mall_user_group` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `name` varchar(10) NOT NULL DEFAULT '' COMMENT 'ๅ็งฐ', `description` varchar(30) NOT NULL DEFAULT '' COMMENT 'ๅˆ†็ป„ๆ่ฟฐ', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'ๆ˜ฏๅฆๅˆ ้™ค๏ผš0-ๅฆ 1-ๆ˜ฏ', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='CMS-ๅŽๅฐ็”จๆˆทๅˆ†็ป„่กจ'; -- ---------------------------- -- Table structure for wechat_mall_visitor_record -- ---------------------------- DROP TABLE IF EXISTS `wechat_mall_visitor_record`; CREATE TABLE `wechat_mall_visitor_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ไธป้”ฎ', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT 'ๅนณๅฐ็”จๆˆทID', `ip` varchar(20) NOT NULL DEFAULT '' COMMENT '็‹ฌ็ซ‹IP', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ๅˆ›ๅปบๆ—ถ้—ด', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ไฟฎๆ”นๆ—ถ้—ด', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ๅ•†ๅŸŽ-่ฎฟๅฎข่ฎฐๅฝ•่กจ'; SET FOREIGN_KEY_CHECKS = 1;
-- -- Test cube datatype -- -- -- first, define the datatype. Turn off echoing so that expected file -- does not depend on contents of cube.sql. -- \set ECHO none \i cube.sql \set ECHO all -- -- testing the input and output functions -- -- Any number (a one-dimensional point) SELECT '1'::cube AS cube; SELECT '-1'::cube AS cube; SELECT '1.'::cube AS cube; SELECT '-1.'::cube AS cube; SELECT '.1'::cube AS cube; SELECT '-.1'::cube AS cube; SELECT '1.0'::cube AS cube; SELECT '-1.0'::cube AS cube; SELECT '1e7'::cube AS cube; SELECT '-1e7'::cube AS cube; SELECT '1.0e7'::cube AS cube; SELECT '-1.0e7'::cube AS cube; SELECT '1e+7'::cube AS cube; SELECT '-1e+7'::cube AS cube; SELECT '1.0e+7'::cube AS cube; SELECT '-1.0e+7'::cube AS cube; SELECT '1e-7'::cube AS cube; SELECT '-1e-7'::cube AS cube; SELECT '1.0e-7'::cube AS cube; SELECT '-1.0e-7'::cube AS cube; SELECT '1e-700'::cube AS cube; SELECT '-1e-700'::cube AS cube; -- simple lists (points) SELECT '1,2'::cube AS cube; SELECT '(1,2)'::cube AS cube; SELECT '1,2,3,4,5'::cube AS cube; SELECT '(1,2,3,4,5)'::cube AS cube; -- double lists (cubes) SELECT '(0),(0)'::cube AS cube; SELECT '(0),(1)'::cube AS cube; SELECT '[(0),(0)]'::cube AS cube; SELECT '[(0),(1)]'::cube AS cube; SELECT '(0,0,0,0),(0,0,0,0)'::cube AS cube; SELECT '(0,0,0,0),(1,0,0,0)'::cube AS cube; SELECT '[(0,0,0,0),(0,0,0,0)]'::cube AS cube; SELECT '[(0,0,0,0),(1,0,0,0)]'::cube AS cube; -- invalid input: parse errors SELECT ''::cube AS cube; SELECT 'ABC'::cube AS cube; SELECT '()'::cube AS cube; SELECT '[]'::cube AS cube; SELECT '[()]'::cube AS cube; SELECT '[(1)]'::cube AS cube; SELECT '[(1),]'::cube AS cube; SELECT '[(1),2]'::cube AS cube; SELECT '[(1),(2),(3)]'::cube AS cube; SELECT '1,'::cube AS cube; SELECT '1,2,'::cube AS cube; SELECT '1,,2'::cube AS cube; SELECT '(1,)'::cube AS cube; SELECT '(1,2,)'::cube AS cube; SELECT '(1,,2)'::cube AS cube; -- invalid input: semantic errors and trailing garbage SELECT '[(1),(2)],'::cube AS cube; -- 0 SELECT '[(1,2,3),(2,3)]'::cube AS cube; -- 1 SELECT '[(1,2),(1,2,3)]'::cube AS cube; -- 1 SELECT '(1),(2),'::cube AS cube; -- 2 SELECT '(1,2,3),(2,3)'::cube AS cube; -- 3 SELECT '(1,2),(1,2,3)'::cube AS cube; -- 3 SELECT '(1,2,3)ab'::cube AS cube; -- 4 SELECT '(1,2,3)a'::cube AS cube; -- 5 SELECT '(1,2)('::cube AS cube; -- 5 SELECT '1,2ab'::cube AS cube; -- 6 SELECT '1 e7'::cube AS cube; -- 6 SELECT '1,2a'::cube AS cube; -- 7 SELECT '1..2'::cube AS cube; -- 7 -- -- testing the operators -- -- equality/inequality: -- SELECT '24, 33.20'::cube = '24, 33.20'::cube AS bool; SELECT '24, 33.20'::cube != '24, 33.20'::cube AS bool; SELECT '24, 33.20'::cube = '24, 33.21'::cube AS bool; SELECT '24, 33.20'::cube != '24, 33.21'::cube AS bool; SELECT '(2,0),(3,1)'::cube = '(2,0,0,0,0),(3,1,0,0,0)'::cube AS bool; SELECT '(2,0),(3,1)'::cube = '(2,0,0,0,0),(3,1,0,0,1)'::cube AS bool; -- "lower than" / "greater than" -- (these operators are not useful for anything but ordering) -- SELECT '1'::cube > '2'::cube AS bool; SELECT '1'::cube < '2'::cube AS bool; SELECT '1,1'::cube > '1,2'::cube AS bool; SELECT '1,1'::cube < '1,2'::cube AS bool; SELECT '(2,0),(3,1)'::cube > '(2,0,0,0,0),(3,1,0,0,1)'::cube AS bool; SELECT '(2,0),(3,1)'::cube < '(2,0,0,0,0),(3,1,0,0,1)'::cube AS bool; SELECT '(2,0),(3,1)'::cube > '(2,0,0,0,1),(3,1,0,0,0)'::cube AS bool; SELECT '(2,0),(3,1)'::cube < '(2,0,0,0,1),(3,1,0,0,0)'::cube AS bool; SELECT '(2,0),(3,1)'::cube > '(2,0,0,0,0),(3,1,0,0,0)'::cube AS bool; SELECT '(2,0),(3,1)'::cube < '(2,0,0,0,0),(3,1,0,0,0)'::cube AS bool; SELECT '(2,0,0,0,0),(3,1,0,0,1)'::cube > '(2,0),(3,1)'::cube AS bool; SELECT '(2,0,0,0,0),(3,1,0,0,1)'::cube < '(2,0),(3,1)'::cube AS bool; SELECT '(2,0,0,0,1),(3,1,0,0,0)'::cube > '(2,0),(3,1)'::cube AS bool; SELECT '(2,0,0,0,1),(3,1,0,0,0)'::cube < '(2,0),(3,1)'::cube AS bool; SELECT '(2,0,0,0,0),(3,1,0,0,0)'::cube > '(2,0),(3,1)'::cube AS bool; SELECT '(2,0,0,0,0),(3,1,0,0,0)'::cube < '(2,0),(3,1)'::cube AS bool; -- "overlap" -- SELECT '1'::cube && '1'::cube AS bool; SELECT '1'::cube && '2'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '0'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '1'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '1,1,1'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '[(1,1,1),(2,2,2)]'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '[(1,1),(2,2)]'::cube AS bool; SELECT '[(-1,-1,-1),(1,1,1)]'::cube && '[(2,1,1),(2,2,2)]'::cube AS bool; -- "overlap on the left" / "overlap on the right" -- (these operators are not useful at all but R-tree seems to be -- sensitive to their presence) -- SELECT '1'::cube &< '0'::cube AS bool; SELECT '1'::cube &< '1'::cube AS bool; SELECT '1'::cube &< '2'::cube AS bool; SELECT '(0),(1)'::cube &< '0'::cube AS bool; SELECT '(0),(1)'::cube &< '1'::cube AS bool; SELECT '(0),(1)'::cube &< '(0),(0.5)'::cube AS bool; SELECT '(0),(1)'::cube &< '(0),(1)'::cube AS bool; SELECT '(0),(1)'::cube &< '(0),(2)'::cube AS bool; SELECT '(0),(1)'::cube &< '(1),(2)'::cube AS bool; SELECT '(0),(1)'::cube &< '(2),(3)'::cube AS bool; SELECT '0'::cube &> '1'::cube AS bool; SELECT '1'::cube &> '1'::cube AS bool; SELECT '2'::cube &> '1'::cube AS bool; SELECT '0'::cube &> '(0),(1)'::cube AS bool; SELECT '1'::cube &> '(0),(1)'::cube AS bool; SELECT '(0),(0.5)' &> '(0),(1)'::cube AS bool; SELECT '(0),(1)'::cube &> '(0),(1)'::cube AS bool; SELECT '(0),(2)'::cube &> '(0),(1)'::cube AS bool; SELECT '(1),(2)'::cube &> '(0),(1)'::cube AS bool; SELECT '(2),(3)'::cube &> '(0),(1)'::cube AS bool; -- "left" / "right" -- (these operators are not useful but for 1-D or 2-D cubes, but R-tree -- seems to want them defined) -- SELECT '1'::cube << '0'::cube AS bool; SELECT '1'::cube << '1'::cube AS bool; SELECT '1'::cube << '2'::cube AS bool; SELECT '(0),(1)'::cube << '0'::cube AS bool; SELECT '(0),(1)'::cube << '1'::cube AS bool; SELECT '(0),(1)'::cube << '(0),(0.5)'::cube AS bool; SELECT '(0),(1)'::cube << '(0),(1)'::cube AS bool; SELECT '(0),(1)'::cube << '(0),(2)'::cube AS bool; SELECT '(0),(1)'::cube << '(1),(2)'::cube AS bool; SELECT '(0),(1)'::cube << '(2),(3)'::cube AS bool; SELECT '0'::cube >> '1'::cube AS bool; SELECT '1'::cube >> '1'::cube AS bool; SELECT '2'::cube >> '1'::cube AS bool; SELECT '0'::cube >> '(0),(1)'::cube AS bool; SELECT '1'::cube >> '(0),(1)'::cube AS bool; SELECT '(0),(0.5)' >> '(0),(1)'::cube AS bool; SELECT '(0),(1)'::cube >> '(0),(1)'::cube AS bool; SELECT '(0),(2)'::cube >> '(0),(1)'::cube AS bool; SELECT '(1),(2)'::cube >> '(0),(1)'::cube AS bool; SELECT '(2),(3)'::cube >> '(0),(1)'::cube AS bool; -- "contained in" (the left operand is the cube entirely enclosed by -- the right operand): -- SELECT '0'::cube ~ '0'::cube AS bool; SELECT '0,0,0'::cube ~ '0,0,0'::cube AS bool; SELECT '0,0'::cube ~ '0,0,1'::cube AS bool; SELECT '0,0,0'::cube ~ '0,0,1'::cube AS bool; SELECT '1,0,0'::cube ~ '0,0,1'::cube AS bool; SELECT '(1,0,0),(0,0,1)'::cube ~ '(1,0,0),(0,0,1)'::cube AS bool; SELECT '(1,0,0),(0,0,1)'::cube ~ '(-1,-1,-1),(1,1,1)'::cube AS bool; SELECT '(1,0,0),(0,0,1)'::cube ~ '(-1,-1,-1,-1),(1,1,1,1)'::cube AS bool; SELECT '0'::cube ~ '(-1),(1)'::cube AS bool; SELECT '1'::cube ~ '(-1),(1)'::cube AS bool; SELECT '-1'::cube ~ '(-1),(1)'::cube AS bool; SELECT '(-1),(1)'::cube ~ '(-1),(1)'::cube AS bool; SELECT '(-1),(1)'::cube ~ '(-1,-1),(1,1)'::cube AS bool; SELECT '(-2),(1)'::cube ~ '(-1),(1)'::cube AS bool; SELECT '(-2),(1)'::cube ~ '(-1,-1),(1,1)'::cube AS bool; -- "contains" (the left operand is the cube that entirely encloses the -- right operand) -- SELECT '0'::cube @ '0'::cube AS bool; SELECT '0,0,0'::cube @ '0,0,0'::cube AS bool; SELECT '0,0,1'::cube @ '0,0'::cube AS bool; SELECT '0,0,1'::cube @ '0,0,0'::cube AS bool; SELECT '0,0,1'::cube @ '1,0,0'::cube AS bool; SELECT '(1,0,0),(0,0,1)'::cube @ '(1,0,0),(0,0,1)'::cube AS bool; SELECT '(-1,-1,-1),(1,1,1)'::cube @ '(1,0,0),(0,0,1)'::cube AS bool; SELECT '(-1,-1,-1,-1),(1,1,1,1)'::cube @ '(1,0,0),(0,0,1)'::cube AS bool; SELECT '(-1),(1)'::cube @ '0'::cube AS bool; SELECT '(-1),(1)'::cube @ '1'::cube AS bool; SELECT '(-1),(1)'::cube @ '-1'::cube AS bool; SELECT '(-1),(1)'::cube @ '(-1),(1)'::cube AS bool; SELECT '(-1,-1),(1,1)'::cube @ '(-1),(1)'::cube AS bool; SELECT '(-1),(1)'::cube @ '(-2),(1)'::cube AS bool; SELECT '(-1,-1),(1,1)'::cube @ '(-2),(1)'::cube AS bool; -- Load some example data and build the index -- CREATE TABLE test_cube (c cube); \copy test_cube from 'data/test_cube.data' CREATE INDEX test_cube_ix ON test_cube USING gist (c); SELECT * FROM test_cube WHERE c && '(3000,1000),(0,0)'; -- Test sorting SELECT * FROM test_cube WHERE c && '(3000,1000),(0,0)' GROUP BY c;
-- @testpoint:opengaussๅ…ณ้”ฎๅญ—standalone(้žไฟ็•™)๏ผŒไฝœไธบๅค–้ƒจๆ•ฐๆฎๆบๅ --ๅ…ณ้”ฎๅญ—ไธๅธฆๅผ•ๅท-ๆˆๅŠŸ drop data source if exists standalone; create data source standalone; drop data source standalone; --ๅ…ณ้”ฎๅญ—ๅธฆๅŒๅผ•ๅท-ๆˆๅŠŸ drop data source if exists "standalone"; create data source "standalone"; drop data source "standalone"; --ๅ…ณ้”ฎๅญ—ๅธฆๅ•ๅผ•ๅท-ๅˆ็†ๆŠฅ้”™ drop data source if exists 'standalone'; create data source 'standalone'; --ๅ…ณ้”ฎๅญ—ๅธฆๅๅผ•ๅท-ๅˆ็†ๆŠฅ้”™ drop data source if exists `standalone`; create data source `standalone`;
CREATE TABLE `budget_bd`.`papel` ( `id` bigint NOT NULL, `nome` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- papel INSERT INTO `budget_bd`.`papel` (id, nome) VALUES (1, 'ROLE_ADM'); INSERT INTO `budget_bd`.`papel` (id, nome) VALUES (2, 'ROLE_GERENTE'); INSERT INTO `budget_bd`.`papel` (id, nome) VALUES (3, 'ROLE_CLIENTE');
<gh_stars>0 /* * fakeTwitter Table creation script. */ /* SET foreign_key_checks=0; */ USE fakeTwitter; CREATE TABLE IF NOT EXISTS users ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, firstName VARCHAR(30) NOT NULL, lastName VARCHAR(30) NOT NULL, username VARCHAR(20) NOT NULL, createdOn DATETIME DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB; CREATE TABLE IF NOT EXISTS followers ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, followee_id INT UNSIGNED NOT NULL, follower_id INT UNSIGNED NOT NULL, CONSTRAINT followee_id_TO_user_id FOREIGN KEY (followee_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT follower_id_TO_user_id FOREIGN KEY (follower_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB; /* CREATE TABLE IF NOT EXISTS followees ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, user_id INT UNSIGNED NOT NULL, followee_id INT UNSIGNED NOT NULL, CONSTRAINT FK_user_id FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT FK_followee_id FOREIGN KEY (followee_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB; */ CREATE TABLE IF NOT EXISTS posts ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, body VARCHAR(280) NOT NULL, author_id INT UNSIGNED NOT NULL, createdOn DATETIME DEFAULT CURRENT_TIMESTAMP, CONSTRAINT author_id_TO_user_id FOREIGN KEY (author_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB; CREATE TABLE IF NOT EXISTS replies ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, body VARCHAR(280) NOT NULL, commentor_id INT UNSIGNED NOT NULL, post_id INT UNSIGNED NOT NULL, createdOn DATETIME DEFAULT CURRENT_TIMESTAMP, CONSTRAINT post_id_TO_post_id FOREIGN KEY (post_id) REFERENCES posts(id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT commentor_id_TO_user_id FOREIGN KEY (commentor_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB; CREATE TABLE IF NOT EXISTS likes ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, user_id INT UNSIGNED NOT NULL, postLiked_id INT UNSIGNED NOT NULL, replyLiked_id INT UNSIGNED NOT NULL, CONSTRAINT user_id_TO_user_id FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT postLiked_TO_user_id FOREIGN KEY (postLiked_id) REFERENCES posts(id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT replyLiked_id_TO_user_id FOREIGN KEY (replyLiked_id) REFERENCES replies(id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB; /* Add test users */ INSERT INTO users (firstName, lastName, username) VALUES ( "John", "Doe", "johndoe" ); INSERT INTO users (firstName, lastName, username) VALUES ( "Jane", "Doe", "janedoe" ); INSERT INTO users (firstName, lastName, username) VALUES ( "Bob", "Loblaw", "bobloblaw" ); /* Add test posts */ INSERT INTO posts (body, author_id) VALUES ( "Testing these posts!", "1" ); INSERT INTO posts (body, author_id) VALUES ( "Testing a post!", "2" ); INSERT INTO posts (body, author_id) VALUES ( "Everyone needs more testing in their lives!", "2" ); INSERT INTO posts (body, author_id) VALUES ( "How many posts does it take to test a lightbulb", "3" ); INSERT INTO posts (body, author_id) VALUES ( "Welcome to post 17, you have been chosen, or have chosen...#HL2", "2" );
<filename>modules/sql/Label_getShorttitles.sql<gh_stars>0 SELECT DISTINCT shortTitle FROM datasets WHERE shortTitle IS NOT NULL
DELETE FROM bookmarks WHERE id IN (SELECT id FROM (SELECT id, ROW_NUMBER() OVER (partition BY podcast_id, user_id ORDER BY id DESC) AS rnum FROM bookmarks) t WHERE t.rnum > 1); CREATE UNIQUE INDEX bookmarks_unique_idx ON bookmarks (podcast_id, user_id);
-- file:updatable_views.sql ln:579 expect:true INSERT INTO rw_view3 VALUES (null, null, null, null)
-- stl_scan table CREATE TABLE stl_scan AS SELECT a.n FROM generate_series(1, 30) as a(n);
<filename>indexes.sql select decode(col.column_position,1,col.index_name,''), col.column_name, comm.comments from dba_ind_columns col, dba_col_comments comm where col.table_owner = 'OWNER' and col.table_name = 'TABLE_NAME' and comm.owner (+) = col.table_owner and comm.table_name (+) = col.table_name and comm.column_name (+) = col.column_name order by index_name, column_position
-- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64) -- -- Host: localhost Database: memorial -- ------------------------------------------------------ -- Server version 5.7.29-0ubuntu0.18.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 `member_table` -- DROP TABLE IF EXISTS `member_table`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `member_table` ( `seq` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) DEFAULT NULL, `mb_pw` varchar(20) DEFAULT NULL, `address` varchar(50) DEFAULT NULL, `mb_tell` varchar(50) DEFAULT NULL, PRIMARY KEY (`seq`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `member_table` -- LOCK TABLES `member_table` WRITE; /*!40000 ALTER TABLE `member_table` DISABLE KEYS */; /*!40000 ALTER TABLE `member_table` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `question` -- DROP TABLE IF EXISTS `question`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `question` ( `ID` mediumtext NOT NULL, `q` mediumtext NOT NULL, `a` mediumtext NOT NULL, `qa` mediumtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `question` -- LOCK TABLES `question` WRITE; /*!40000 ALTER TABLE `question` DISABLE KEYS */; INSERT INTO `question` VALUES ('E2','3.1์šด๋™์˜ ์‚ฌ๋ง์ž๋Š” 1000๋ช… ์ •๋„๋กœ ์ถ”์ •๋œ๋‹ค.','X','์‚ฌ๋ง์ž๋Š” ์•ฝ 7509๋ช…์œผ๋กœ ์ถ”์ •๋ฉ๋‹ˆ๋‹ค.'),('E3','3.1์šด๋™์˜ ์˜ํ–ฅ์œผ๋กœ ๋‹ค์Œ ๋‹ฌ ๋Œ€ํ•œ๋ฏผ๊ตญ ์ž„์‹œ์ •๋ถ€๊ฐ€ ์ˆ˜๋ฆฝ๋˜์—ˆ๋‹ค.','O','3.1 ์šด๋™์€ ๋Œ€ํ•œ๋ฏผ๊ตญ ์ž„์‹œ์ •๋ถ€๋ฅผ ์ˆ˜๋ฆฝํ•˜๋Š” ๊ณ„๊ธฐ๊ฐ€ ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('E4','์‚ผ์ผ์ ˆ ๊ฒฝ์ถ• ์‹์ „์€ ์•„์ด์Šฌ๋ž€๋“œ์—์„œ๋„ ์ผ์–ด๋‚ฌ๋‹ค.','X','์‚ผ์ผ์ ˆ ๊ฒฝ์ถ• ์‹์ „์€ ์ผ๋ณธ, ๋Ÿฌ์‹œ์•„, ๋ฏธ๊ตญ ์ฃผ์š” ๋„์‹œ์—์„œ ์ผ์–ด๋‚ฌ์Šต๋‹ˆ๋‹ค.'),('E5','ํ•œ์ผ๊ตญ๊ต์ •์ƒํ™”๋Š” ๋ฐ•์ •ํฌ ์ „ ๋Œ€ํ†ต๋ น๊ณผ ๊ด€๋ จ์ด ์žˆ๋Š” ์ผ์ด๋‹ค.','O','๋ฏธ๊ตญ์€ ๋Œ€ํ•œ๋ฏผ๊ตญ๊ณผ ์ผ๋ณธ์˜ ์™ธ๊ต ์ •์ƒํ™”๋ฅผ ์›ํ–ˆ์œผ๋‚˜ ์ด์Šน๋งŒ ์ •๋ถ€์˜ ๋ฐ˜์ผ์ฃผ์˜์  ์„ฑํ–ฅ ๋•Œ๋ฌธ์— ์„ฑ๊ณผ๋ฅผ ๊ฑฐ๋‘˜ ์ˆ˜ ์—†์—ˆ์Šต๋‹ˆ๋‹ค. ๊ทธ๋Ÿฌ๋‚˜ 5.16 ๊ตฐ์‚ฌ์ •๋ณ€์œผ๋กœ ๋ฐ•์ •ํฌ์ •๊ถŒ์ด ๋“ค์–ด์„ฐ๊ณ  ์ดํ›„ 1965๋…„ 6์›” 22์ผ์— ํ•œ์ผ๊ธฐ๋ณธ์กฐ์•ฝ์ด ์ฒด๊ฒฐ๋ฉ๋‹ˆ๋‹ค.'),('E6','3.1์šด๋™ ๋•Œ ๋ฐœํ‘œ๋œ ๊ธฐ๋ฏธ๋…๋ฆฝ์„ ์–ธ์„œ์— ์„œ๋ช…ํ•œ 33๋ช…์„ \'๊ตญ๊ฐ€๋Œ€ํ‘œ 33์ธ\'์ด๋ผ๊ณ  ๋ถ€๋ฅธ๋‹ค.','X','๊ธฐ๋ฏธ๋…๋ฆฝ์„ ์–ธ์„œ์— ์„œ๋ช…ํ•œ 33์ธ์„ \'๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ\'์ด๋ผ๊ณ  ๋ถ€๋ฆ…๋‹ˆ๋‹ค.'),('E7','3.1์šด๋™์€ ๋ฌด๋ ฅ์„ ๋™๋ฐ˜ํ•œ ์‹œ์œ„์˜€๊ณ , ์ด๋กœ ์ธํ•ด ์ผ๋ณธ๊ตฐ์ด ๋ฌด์ž๋น„ํ•˜๊ฒŒ ์ง„์••ํ•˜์—ฌ ํญ๋ ฅํ™”๊ฐ€ ์‹ฌํ™” ๋˜์—ˆ๋‹ค.','X','3.1์šด๋™์€ ์ˆœ์ˆ˜ํ•œ ํ‰ํ™”์  ์‹œ์œ„์˜€์œผ๋‚˜ ์ผ๋ณธ๊ตฐ์ด ๋ฌด๋ ฅ์œผ๋กœ ์ง„์••ํ•˜์—ฌ ํญ๋ ฅ ํ™”๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('E8','3.1์šด๋™์„ ๊ธฐ๋ฏธ ๋…๋ฆฝ์šด๋™์ด๋ผ๊ณ ๋„ ๋ถ€๋ฅด๋Š” ์ด์œ ๋Š” ์ผ์ œ๊ฐ€ ์ž์œ ๋ฅผ ์–ฝ๋งค์–ด ์ด๋ฅผ ๋ฐ˜๋Œ€ํ•˜๊ธฐ ์œ„ํ•ด์„œ ์ด๋‹ค.','X','๊ธฐ๋ฏธ๋…๋ฆฝ์šด๋™์€ ๊ธฐ๋ฏธ๋…„์— ์ผ์–ด๋‚ฌ๊ธฐ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค. ๋ฌธ์ œ์—์„œ ๋งํ•˜๋Š” \'๊ธฐ๋ฏธ\'๋Š” ํ•œ์ž๊ฐ€ ๋‹ค๋ฆ…๋‹ˆ๋‹ค.'),('E9','๋Œ€ํ•œ๋ฏผ๊ตญ ์ œํ—Œ ํ—Œ๋ฒ•์—์„œ๋Š” 3.1์šด๋™์„ ๋Œ€ํ•œ๋ฏผ๊ตญ ๊ฑด๊ตญ์˜ ๊ธฐ์›์œผ๋กœ ์‚ผ์•„ ์ž„์‹œ ์ •๋ถ€์˜ ๋ฒ•ํ†ต์„ ๊ณ„์Šนํ•œ๋‹ค๋Š” ๊ฒƒ์„ ๋ฐํ˜”๋‹ค.','O','๋Œ€ํ•œ๋ฏผ๊ตญ ํ—Œ๋ฒ• ์ „๋ฌธ์— 3.1์šด๋™์œผ๋กœ ๊ฑด๋ฆฝ๋œ ๋Œ€ํ•œ๋ฏผ๊ตญ ์ž„์‹œ์ •๋ถ€์˜ ๋ฒ•ํ†ต์„ ๊ณ„์Šนํ•œ๋‹ค๊ณ  ๋ช…์‹œ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค.'),('E10','์‚ผ์ผ์ ˆ์—๋Š” ํƒœ๊ทน๊ธฐ๋ฅผ ๊นƒ๋ด‰๊ณผ ๊นƒ ๋ฉด์˜ ์‚ฌ์ด๋ฅผ ๊นƒ ๋ฉด์˜ ๋„ˆ๋น„๋งŒํผ ๋‚ด๋ ค ๊ฒŒ์–‘ํ•œ๋‹ค.','X','๋ฌธ์ œ์˜ ๊ฒŒ์–‘๋ฒ•์€ ํ˜„์ถฉ์ผ, ๊ตญ์žฅ ๊ธฐ๊ฐ„ ๋“ฑ ์กฐ์˜๋ฅผ ํ‘œํ•˜๋Š” ๋‚ ์— ์‚ฌ์šฉํ•˜๋Š” ๊ฒŒ์–‘๋ฒ•์ด๊ณ  ์‚ผ์ผ์ ˆ ๊ฐ™์€ ๊ฒฝ์ถ•์ผ ๋ฐ ํ‰์ผ์—๋Š” ๊นƒ๋Œ€ ์œ„์ชฝ์— ๋ฐ”๋กœ ๋‹ฟ๊ฒŒ๋” ๊ฒŒ์–‘ํ•ฉ๋‹ˆ๋‹ค.'),('E11','์œ ๊ด€์ˆœ์€ \'์˜์‚ฌ\' ์นญํ˜ธ๋ฅผ ๋ถ™์—ฌ์„œ ๋งํ•ด์•ผ ํ•œ๋‹ค.','X','์œ ๊ด€์ˆœ์€ \'์—ด์‚ฌ\'๋ฅผ ๋ถ™์—ฌ์„œ ๋งํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.'),('E12','๋งŒ์„ธ์šด๋™์—์„œ ํญ๋ ฅ์˜ ์กฐ์ง์ด ๋ณด์ด์ž ์กฐ์„  ์ด๋…๋ถ€๋Š” ์ด๋ฅผ ํ•‘๊ณ„๋กœ 3.1์šด๋™ ์ž์ œ๋‹จ์„ ๋งŒ๋“ค์—ˆ๋‹ค.','X','๋งŒ์„ธ ์šด๋™ ์ž์ œ๋‹จ์€ ๋ฐ•์ค‘์–‘์ด 4์›” 6์ผ๊ฒฝ ๋Œ€๊ตฌ์—์„œ ์‹œ์œ„ ์ฐธ์—ฌ์ž๋ฅผ ์„ค๋“, ๊ท€๊ฐ€ ์‹œํ‚ค๊ธฐ ์œ„ํ•ด ์กฐ์ง๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('E13','ํ™์ปค์šฐ ๊ณต์›์—์„œ ์ผ๋ณธ๊ตฐ์„ ํ–ฅํ•ด ๋„์‹œ๋ฝ ํญํƒ„์„ ๋˜์ง„ ์‚ฌ๋žŒ์€ ๋ฐฑ๋ฒ” ๊น€๊ตฌ ์„ ์ƒ์ด๋‹ค.','X','๋„์‹œ๋ฝ ํญํƒ„์„ ๋˜์ง„ ์‚ฌ๋žŒ์€ ์œค๋ด‰๊ธธ ์˜์‚ฌ์ž…๋‹ˆ๋‹ค.'),('E14','์œค๋™์ฃผ ์‹œ์ธ์€ \'๋‹˜์˜ ์นจ๋ฌต\'์ด๋ผ๋Š” ์‹œ๋ฅผ ์“ฐ์…จ๋‹ค.','X','๋‹˜์˜ ์นจ๋ฌต์€ ํ•œ์šฉ์šด ์‹œ์ธ์ด ์ž‘์„ฑํ•œ ์‹œ์ž…๋‹ˆ๋‹ค.'),('E15','์ผ๋ณธ๊ตฐ์€ 3.1๋งŒ์„ธ์šด๋™์˜ ๊ณต์‹ ๋ช…์นญ์„ \"์กฐ์„  3.1๋ฌด๋ ฅ์‹œ์œ„ ์‚ฌ๊ฑด\"์ด๋ผ๊ณ  ์ •ํ•˜์˜€๋‹ค.','X','์กฐ์„ ๋งŒ์„ธ์†Œ์š”์‚ฌ๊ฑด\'์ด๋ผ๊ณ  ์ •ํ–ˆ์Šต๋‹ˆ๋‹ค.'),('E16','์ž„์˜ค๊ตฐ๋ž€, ์„๋ฏธ์‚ฌ๋ณ€, ๊ฐ•ํ™”๋„์กฐ์•ฝ, ์‚ผ์ผ์šด๋™ ์ค‘ ์‹œ๊ธฐ๊ฐ€ ๊ฐ€์žฅ ๋น ๋ฅธ ์‚ฌ๊ฑด์€ ๊ฐ•ํ™”๋„ ์กฐ์•ฝ์ด๋‹ค.','O','๊ฐ•ํ™”๋„ ์กฐ์•ฝ์€ 1876๋…„ 2์›” 27์ผ์— ์ฒด๊ฒฐ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('E17','3.1์šด๋™์€ ๋ฏธ๊ตญ ๋ง์ปจ ๋Œ€ํ†ต๋ น์˜ ๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜๋‹ค.','X','์œŒ์Šจ ๋Œ€ํ†ต๋ น์˜ ๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜์Šต๋‹ˆ๋‹ค.'),('E18','๋งŒ์„ธ์šด๋™์œผ๋กœ 1๊ฐœ์›” ๊ฐ€๋Ÿ‰์˜ ์‹œ์œ„๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‹ค.','X','2~3๊ฐœ์›” ๊ฐ€๋Ÿ‰์˜ ์‹œ์œ„๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค.'),('E19','์ฒœ์•ˆ ์•„์šฐ๋‚ด ์žฅํ„ฐ ๋งŒ์„ธ์šด๋™์€ ์–‘๋ ฅ 3์›” 1์ผ์— ์ผ์–ด๋‚ฌ๋‹ค.','X','์Œ๋ ฅ 3์›” 1์ผ๋กœ, ์–‘๋ ฅ์œผ๋กœ๋Š” 4์›” 1์ผ์ด์—ˆ์Šต๋‹ˆ๋‹ค.'),('E20','์ œ์•”๋ฆฌ ํ•™์‚ด ์‚ฌ๊ฑด์€ ์˜์™•์‹œ ํ–ฅ๋‚จ๋ฉด ์ œ์•”๋ฆฌ์˜ ์ œ์•”๋ฆฌ๊ตํšŒ์— ๋ถˆ์„ ์ง€๋ฅธ ์‚ฌ๊ฑด์ด๋‹ค.','X','์ˆ˜์›๊ตฐ(ํ˜„ ํ™”์„ฑ์‹œ)์—์„œ ์ผ์–ด๋‚ฌ์Šต๋‹ˆ๋‹ค.'),('E21','์ผ๋ณธ ์ •๋ถ€๊ฐ€ ํ•œ๊ตญ ์ •๋ถ€์˜ ๋…๋„ ์†Œ์œ ๊ถŒ ํฌ์„์„ ์œ„ํ•ด ์ฃผ์žฅํ•˜๋Š” ๋…๋„์˜ ๋ช…์นญ์€ ๋‹ค์ผ€์‹œ๋งˆ์ด๋‹ค.','O','ํ˜„์žฌ ์ผ๋ณธ์€ ๋…๋„๋ฅผ ๋‹ค์ผ€์‹œ๋งˆ๋ผ๊ณ  ๋ถ€๋ฅด๋‚˜, ์‹ค์ œ๋กœ๋Š” ๊ณผ๊ฑฐ์— ์ผ๋ณธ์€ ๋…๋„๋ฅผ ๋งˆ์“ฐ์‹œ๋งˆ๋ผ๊ณ  ๋ถˆ๋ €๊ณ , ์šธ๋ฆ‰๋„๋ฅผ ๋‹ค์ผ€์‹œ๋งˆ๋ผ๊ณ  ๋ถˆ๋ €๋‹ค๋Š” ์ฃผ์žฅ์ด ์žˆ์Šต๋‹ˆ๋‹ค.'),('E22','3.1์ ˆ์€ ๋Œ€ํ•œ๋ฏผ๊ตญ 5๋Œ€ ๊ตญ๊ฒฝ์ผ ์ค‘ ํ•˜๋‚˜์ด๋‹ค.','O','ํ•œ๊ตญ์˜?5๋Œ€ ๊ตญ๊ฒฝ์ผ์€ 3.1์ ˆ, ์ œํ—Œ์ ˆ, ๊ด‘๋ณต์ ˆ, ๊ฐœ์ฒœ์ ˆ, ํ•œ๊ธ€๋‚ ์ž…๋‹ˆ๋‹ค'),('E23','๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜๋Š” ๋‹จ์ฒด์ ์ธ ์›€์ง์ž„๋งŒ์ด ๋ฏผ์กฑ์˜ ์šด๋ช…์„ ๊ฒฐ์ •ํ•  ์ˆ˜ ์žˆ๋‹ค๋Š” ๊ฒƒ์ด๋‹ค.','X','๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜๋Š” ๊ฐ ๋ฏผ์กฑ์˜ ์šด๋ช…์€ ๊ทธ ๋ฏผ์กฑ์ด ์Šค์Šค๋กœ ๊ฒฐ์ •ํ•˜๊ฒŒ ํ•˜์ž ์ž…๋‹ˆ๋‹ค.'),('E24','3.1์šด๋™ ์ดํ›„ ๊ณ ์ข…์ด ์ฃฝ์—ˆ๊ณ , ์ด๋กœ ์ธํ•ด ๊ณ ์ข…์˜ ๋…์‚ด์„ค์ด ๋Œ์•˜์Šต๋‹ˆ๋‹ค.','X','๊ณ ์ข…์˜ ๋…์‚ด์„ค์€ 3.1์šด๋™์˜ ๋ฐฐ๊ฒฝ ์ค‘ ํ•˜๋‚˜๋กœ, 3.1์šด๋™ ์ด์ „์— ๊ณ ์ข…์ด ์ฃฝ์—ˆ์Šต๋‹ˆ๋‹ค.'),('E25','3.1์šด๋™์€ ๋งŒ์ฃผ์—์„œ ์ผ์–ด๋‚œ ๋ฌด์˜ค ๋…๋ฆฝ์„ ์–ธ์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜์Šต๋‹ˆ๋‹ค.','O','3.1์šด๋™์€ 2.1๋Œ€ํ•œ๋…๋ฆฝ ์„ ์–ธ, ์ฆ‰ ๋ฌด์˜ค๋…๋ฆฝ์„ ์–ธ์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜์Šต๋‹ˆ๋‹ค.'),('E26','๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ์—๋Š” ์•ˆ์„ธํ™˜์ด ํฌํ•จ๋œ๋‹ค.','X','์•ˆ์„ธํ™˜์€ ๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ์—๋Š” ํฌํ•จ๋˜์ง€ ์•Š์ง€๋งŒ ๋ฏผ์กฑ๋Œ€ํ‘œ 49์ธ์—๋Š” ํฌํ•จ๋ฉ๋‹ˆ๋‹ค.'),('E27','๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ์€ ํƒ‘๊ณจ๊ณต์›์—์„œ ์กฐ์„ ์ด ๋…๋ฆฝ๊ตญ์ž„์„ ์„ ์–ธํ–ˆ๋‹ค.','X','์Œ์‹์ ์ธ ํƒœํ™”๊ด€์—์„œ ๋ชจ์˜€์Šต๋‹ˆ๋‹ค.'),('E28','์ œ์•”๋ฆฌ ํ•™์‚ด์‚ฌ๊ฑด์—์„œ๋Š” ์ผ๋ณธ ๊ณต๊ตฐ์ด ์ œ์•”๋ฆฌ๊ตํšŒ์— ์„ฑ์ธ๋‚จ์ž๋“ค์„ ๋ชจ์•„ ๋†“๊ณ  ๊ตํšŒ๋ฅผ ํญํŒŒํ–ˆ๋‹ค.','X','์ผ๋ณธ ์œก๊ตฐ์ด์—ˆ์Šต๋‹ˆ๋‹ค.'),('E29','๋„์‚ฐ ์•ˆ์ฐฝ์†Œ ์„ ์ƒ์€ 1919๋…„ 3์›” 1์ผ์„ \'์ผ๋ณธ ํŒจ๋ง์˜ ๋‚ \'์ด๋ผ๊ณ  ์—ฐ์„คํ–ˆ๋‹ค.','X','1919๋…„ 3์›” 1์ผ์€ \'๋Œ€ํ•œ๋ฏผ๊ตญ ์ž์œ ์™€ ํ‰๋“ฑ์˜ ์ƒ์ผ\'์ด๋ผ๊ณ  ์—ฐ์„คํ–ˆ์Šต๋‹ˆ๋‹ค.'),('E30','ํ•œ๊ตญ ์ตœ์ดˆ์˜ ์—ฌ์„ฑ ๋น„ํ–‰์‚ฌ๋Š” ๊น€์ข…๊ทผ์ด๋‹ค.','X','๊ถŒ๊ธฐ์˜ฅ์ž…๋‹ˆ๋‹ค.'),('E31','์œ ๊ด€์ˆœ ์—ด์‚ฌ๊ฐ€ 3.1์šด๋™์„ ํŽผ์ณค๋˜ ์žฅ์†Œ๋Š” ์ฒœ์•ˆ ์•„์šฐ๋‚ด ์žฅํ„ฐ ์ด๋‹ค.','O','์ด ๋‚  ์œ ๊ด€์ˆœ์„ ํฌํ•จํ•œ ๋งŽ์€ ์ด๋“ค์ด ๋ถ€์ƒ, ํˆฌ์˜ฅ ๋“ฑ์˜ ์–ด๋ ค์›€์„ ๊ฒช์—ˆ์Šต๋‹ˆ๋‹ค.'),('E32','์‚ผ์ผ์ ˆ์—๋Š” ํƒœ๊ทน๊ธฐ๋ฅผ ๋Œ€๋ฌธ์˜ ์ค‘์•™์ด๋‚˜ ์˜ค๋ฅธ์ชฝ์— ๊ฒŒ์–‘ํ•ด์•ผ ํ•œ๋‹ค.','X','์‚ผ์ผ์ ˆ์—๋Š” ํƒœ๊ทน๊ธฐ๋ฅผ ๋Œ€๋ฌธ์˜ ์ค‘์•™์ด๋‚˜ ์™ผ์ชฝ์— ๊ฒŒ์–‘ํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.'),('E33','ํ‰์•ˆ๋‚จ๋„ ์‚ฌ์ฒœ์—์„œ ๋งŒ์„ธ์šด๋™์ด ์ผ์–ด๋‚˜์ž ์ผ๋ณธ ํ—Œ๋ณ‘๋Œ€๋Š” ์ด๊ฒฉ์œผ๋กœ ๊ตฐ์ค‘์„ ๋ฌด์ฐจ๋ณ„ ํ•™์‚ดํ–ˆ๋‹ค.','O','์ด๋กœ ์ธํ•ด 73๋ช…์ด ์ฃฝ์€ ๊ฒƒ์œผ๋กœ ์ถ”์ •๋ฉ๋‹ˆ๋‹ค.'),('E34','ํ•ฉ์ฒœ์—์„œ๋Š” ํ•ด์ธ์‚ฌ์˜ ์Šน๋ ค๋“ค์ด ์‹œ์œ„๋ฅผ ๋ฒŒ์˜€๋‹ค.','O','์ด๋‚  ์ฐธ๊ฐ€์ž๊ฐ€ 1๋งŒ์—ฌ๋ช…์— ์ด๋ฅด๋ €์Šต๋‹ˆ๋‹ค.'),('E35','๊ณ ์ข…์˜ ์žฅ๋ก€์‹์€ 3.1์šด๋™ ์ด์ „์— ์žˆ์—ˆ๋‹ค.','X','๊ณ ์ข…์˜ ์žฅ๋ก€์‹์€ 3์›” 3์ผ์— ์˜ˆ์ •๋˜์–ด ์žˆ์—ˆ์Šต๋‹ˆ๋‹ค.'),('E36','๊ธฐ๋ฏธ ๋…๋ฆฝ์šด๋™๊ณผ ๋งŒ์„ธ์šด๋™์€ ๊ฐ™์€ ๊ฒƒ์ด๋‹ค.','O','๊ธฐ๋ฏธ๋…„์— ์ผ์–ด๋‚˜์„œ ๊ธฐ๋ฏธ ๋…๋ฆฝ์šด๋™์ด๋ผ๊ณ ๋„ ํ•ฉ๋‹ˆ๋‹ค.'),('E37','2018๋…„ 3์›” 1์ผ์ด 3.1์šด๋™ 100์ฃผ๋…„์ด์—ˆ๋‹ค.','X','2019๋…„ 3์›” 1์ผ์ด์—ˆ์Šต๋‹ˆ๋‹ค.'),('E38','๋งŒ์„ธ์šด๋™์€ ์กฐ์„ ์—์„œ๋งŒ ์ผ์–ด๋‚ฌ๋‹ค.','X','๋งŒ์„ธ์šด๋™์€ ๋งŒ์ฃผ ๋“ฑ ์ „์„ธ๊ณ„ ํ•œ์ธ ๊ฑฐ์ฃผ ์ง€์—ญ์—์„œ ์ผ์–ด๋‚ฌ์Šต๋‹ˆ๋‹ค.'),('E39','3.1์šด๋™ ์ด์ „์—๋Š” ๊ต์‚ฌ๋“ค๋„ ์ œ๋ณต์„ ์ž…๊ณ  ์นผ์„ ์ฐผ๋‹ค.','O','๊ทธ๋Ÿฌ๋‚˜ 3.1์šด๋™ ์ดํ›„ ๋ฌธํ™”ํ†ต์น˜๋กœ ๋ฐ”๋€Œ๋ฉฐ ์ด๋Š” ์กฐ๊ธˆ์”ฉ ๋ณ€ํ•ฉ๋‹ˆ๋‹ค.'),('E40','3.1์šด๋™์˜ ์ทจ์ง€๋Š” ๋น„ํญ๋ ฅ ํ‰ํ™” ์‹œ์œ„์˜€๊ณ , ๋…๋ฆฝ์ฃผ์˜์™€ ๋ฏผ์ฃผ์ฃผ์˜๋ฅผ ๋ฐ”ํƒ•์œผ๋กœ ํ–ˆ๋‹ค.','O','๊ทธ๋Ÿฌ๋‚˜ ์ผ๋ณธ์ด ๋ฌด๋ ฅ์œผ๋กœ ์ด๋ฅผ ์ง„์••ํ•ด ์‹œ์œ„๊ฐ€ ํญ๋ ฅ ํ™”๋ฉ๋‹ˆ๋‹ค.'),('E41','์—ฌ์šดํ˜•๊ณผ ์‹ ๊ทœ์‹์€ ์‹ ํ•œ์ฒญ๋…„๋‹น์ด๋ผ๋Š” ๋‹จ์ฒด๋ฅผ ๋ฌธ์„œ์ƒ์œผ๋กœ ์กฐ์งํ–ˆ๋‹ค.','O','๋‹น์‹œ ์ค‘๊ตญ์— ์œ ํ•™์ค‘์ด๋˜ ์—ฌ์šดํ˜•๊ณผ ์‹ ๊ทœ์‹ ๋“ฑ์ด ์ƒํ•˜์ด์—์„œ ์กฐ์งํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M1','๋Œ€ํ•œ๋ฏผ๊ตญ ์• ๊ตญ๋ถ€์ธํšŒ ํšŒ์žฅ์œผ๋กœ ํ™œ๋™ํ•˜์‹  ๋ถ„์˜ ์„ฑํ•จ์€ ๊น€๋งˆ๋ฆฌ์•„ ์ด๋‹ค.','O','๊ทธ๋…€๋Š” ๋Œ€ํ•œ๋ฏผ๊ตญ์• ๊ตญ๋ถ€์ธํšŒ ํšŒ์žฅ, ์ƒํ•˜์ด์˜ ๋Œ€ํ•œ๋ฏผ๊ตญ์• ๊ตญ๋ถ€์ธํšŒ ๊ฐ„๋ถ€ ๋“ฑ์„ ์ง€๋ƒˆ์Šต๋‹ˆ๋‹ค. ๋ณธ๊ด€์€ ๊ด‘์‚ฐ์œผ๋กœ, ๋ณธ๋ช…์€ ๊น€์ง„์ƒ์ด๋ฉฐ, ๊น€๊ทผํฌ๋ผ๊ณ ๋„ ํ•˜์˜€์Šต๋‹ˆ๋‹ค.'),('M2','๋งŒ์„ธ์šด๋™์„ ํ•˜๋˜ ๊ตฐ์ค‘๋“ค์ด ๋ฏธ๊ตญ ์˜์‚ฌ๊ด€์„ ์ง€๋‚  ๋•Œ ๋ฏธ๊ตญ ์˜์‚ฌ๊ด€์€ ๋ฌธ์„ ์ž ๊ทธ๊ณ  ๊ตฐ์ค‘๋“ค์ด ๋“ค์–ด์˜ค์ง€ ๋ชปํ•˜๊ฒŒ ๋ง‰์•˜๋‹ค.','X','๋ฏธ๊ตญ ์˜์‚ฌ๊ด€์€ ๊ตฐ์ค‘๋“ค์„ ํ™˜์˜ํ•˜๊ณ  ๊นŠ์€ ๋™์˜๋ฅผ ํ‘œํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M3','๋…๋ฆฝ์šด๋™๊ฐ€ ์ค‘ ๋‚จ์„ฑ์€ \'์˜์‚ฌ\', ์—ฌ์„ฑ์€ \'์—ด์‚ฌ\' ์นญํ˜ธ๋ฅผ ๋ถ™์ธ๋‹ค.','X','์˜์‚ฌ : ๋‚˜๋ผ์™€ ๋ฏผ์กฑ์„ ์œ„ํ•˜์—ฌ ์ œ ๋ชธ์„ ๋ฐ”์ณ ์ผํ•˜๋ ค๋Š” ๋œป์„ ๊ฐ€์ง„ ์˜๋กœ์šด ์‚ฌ๋žŒ,?์—ด์‚ฌ : ๋‚˜๋ผ๋ฅผ ์œ„ํ•˜์—ฌ ์ ˆ์˜๋ฅผ ๊ตณ๊ฒŒ ์ง€ํ‚ค๋ฉฐ ์ถฉ์„ฑ์„ ๋‹คํ•˜์—ฌ ์‹ธ์šด ์‚ฌ๋žŒ ์ž…๋‹ˆ๋‹ค.'),('M4','๋งน์‚ฐ์—์„œ๋Š” ์Šน๋ ค๋“ค์ด ๋งŒ์„ธ์‹œ์œ„๋ฅผ ํ•˜์˜€๋‹ค.','X','๊ธฐ๋…๊ต์ธ๋“ค๊ณผ ์ฒœ๋„๊ต์ธ๋“ค์ด ๋งŒ์„ธ์‹œ์œ„๋ฅผ ๋ฒŒ์˜€์Šต๋‹ˆ๋‹ค.'),('M5','๊น€์šฉํ•ด๋Š” ๋Œ€๊ตฌ์˜ ๋งŒ์„ธ์‚ฌ๊ฑด์—์„œ ์ผ๋ณธ๊ตฐ๊ณผ ๋งจ์†์œผ๋กœ ๋Œ€ํ•ญํ•˜๋‹ค๊ฐ€ ์ด์— ๋งž์•„ ์ฃฝ์—ˆ๋‹ค.','X','์นผ์— ๋งž์•„ ์ค‘์ƒ์„ ์ž…์—ˆ๊ณ , ๋ฉฐ์น  ํ›„ ๊ฐ์˜ฅ์—์„œ ์‚ฌ๋งํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M6','์ „๋ถ์—์„œ๋Š” ๊ด€์ฒญ ํ–‰์‚ฌ์˜€๋˜ ์‹์ˆ˜ ๊ธฐ๋…์‹์ด ๋๋‚˜์ž ๋งŒ์„ธ ์‹œ์œ„๋ฅผ ๋ฒŒ์˜€๋‹ค.','O','๋‚จ์›๊ตฐ ๋•๊ณผ ๋ฉด์žฅ์ด์—ˆ๋˜ ์ด์„๊ธฐ๊ฐ€ ์ด๋ฅผ ๊ณ„ํšํ•˜๊ณ  ๊ตฐ์ค‘ 800์—ฌ๋ช…์„ ๋ชจ์•„ ์‹์ˆ˜๊ธฐ๋…์‹์ด ๋๋‚˜์ž ๋งŒ์„ธ์‹œ์œ„๋ฅผ ๋ฒŒ์˜€์Šต๋‹ˆ๋‹ค.'),('M7','3.1์šด๋™์˜ ์˜ํ–ฅ์œผ๋กœ ์กฐ์„ ์ธ์˜ ๋‹จ์ฒดํ™œ๋™๊ณผ ์–ธ๋ก ํ™œ๋™์ด ์—„๊ฒฉํ•˜๊ฒŒ ๊ธˆ์ง€๋˜์—ˆ๋‹ค.','X','์ผ๋ณธ์€ ๋ฌธํ™”ํ†ต์น˜๋กœ ์ •์ฑ…์„ ๋ฐ”๊พธ๋ฉฐ ๋‹จ์ฒดํ™œ๋™๊ณผ ์–ธ๋ก ํ™œ๋™์„ ํ—ˆ๊ฐ€ํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M8','3.1์šด๋™ ์ดํ›„ ํ—Œ๋ณ‘ ๊ฒฝ์ฐฐ์ œ๋Š” ๋ณดํ†ต ๊ฒฝ์ฐฐ์ œ๋กœ ๋ฐ”๋€Œ์—ˆ๋‹ค.','O','๊ทธ๋Ÿฌ๋‚˜ ์ด๋ฆ„๋งŒ ๋ฐ”๊ฟจ์„ ๋ฟ ์‚ฌ์‹ค์ƒ ๊ฒฝ์ฐฐ๋ ฅ์€ ๋”์šฑ ๊ฐ•ํ™”๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('M9','3.1์šด๋™์€ ์ค‘๊ตญ์˜ 5.4์šด๋™๊ณผ ๋ฐฉ๋ฒ•๊ณผ ์ด์ƒ, ๋ชฉ์ ์ด ๊ฐ™๋‹ค.','X','3.1์šด๋™์ด 5.4์šด๋™์— ์˜ํ–ฅ์„ ๋ผ์นœ ๊ฒƒ์€ ์‚ฌ์‹ค์ด์ง€๋งŒ 5.4์šด๋™์€ ๋Ÿฌ์‹œ์•„ ํ˜๋ช…์˜ ์˜ํ–ฅ์„, 3.1์šด๋™์€ ๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜์™€ ํ‰ํ™”์  ํ•ญ์Ÿ์„ ํŠน์ง•์œผ๋กœ ํ•ฉ๋‹ˆ๋‹ค.'),('M10','3.1์šด๋™์˜ ๋‹น์‹œ ์ƒํ™ฉ์ด ๋‚˜์™€์žˆ๋Š” ์‚ฌ์ง„์ง‘์œผ๋กœ๋Š” <<Korea independence pictures>>๊ฐ€ ์žˆ๋‹ค.','X','<<Korea independence movement>> ์˜€์Šต๋‹ˆ๋‹ค.'),('M11','์ต์‚ฐ์—์„œ๋Š” ๊ต์‚ฌ ๋ฌธ์šฉ๊ธฐ๊ฐ€ ๋…๋ฆฝ์šด๋™์„ ์ฃผ๋™ํ•˜์˜€๋‹ค.','O','1919๋…„ 4์›” 4์ผ์— ์ผ์–ด๋‚ฌ์Šต๋‹ˆ๋‹ค. ์ด๋Š” ์ด๋ฆฌ์žฅ๋‚ ์„ ์ด์šฉํ–ˆ๊ธฐ ๋•Œ๋ฌธ์— ์ต์‚ฐ ์ด๋ฆฌ์žฅ๋‚  ๋งŒ์„ธ์šด๋™์ด๋ผ๊ณ  ๋ถˆ๋ฆฝ๋‹ˆ๋‹ค.'),('M12','๋งŒ์ฃผ ์šฉ์ • ๋งŒ์„ธ์šด๋™์—์„œ๋Š” ์ค‘๊ตญ๊ตฐ๋Œ€๊ฐ€ ์‹œ์œ„๋Œ€๋ฅผ ํ–ฅํ•˜์—ฌ ๋ฐœํฌํ•˜์—ฌ ์‚ฌ์ƒ์ž๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‹ค.','O','๋งŒ์ฃผ์ง€์—ญ์—์„œ ์ผ์–ด๋‚œ ๋Œ€ํ‘œ์ ์ธ ๋งŒ์„ธ์‹œ์œ„๋Š” 3์›” 13์ผ์˜ ์šฉ์ •๋งŒ์„ธ์‹œ์œ„์˜€์Šต๋‹ˆ๋‹ค.'),('M13','์‚ผ์ง„์˜๊ฑฐ๋Š” ๊ฒฝ์ƒ๋‚จ๋„ ์ฐฝ์›์—์„œ ์ผ์–ด๋‚ฌ์œผ๋ฉฐ, 3์›” 28์ผ ํ•˜๋ฃจ๋™์•ˆ ์ผ์–ด๋‚ฌ๋‹ค.','X','3์›” 28์ผ๊ณผ 4์›” 3์ผ 2์ฐจ์— ๊ฑธ์ณ ์ „๊ฐœ๋˜์—ˆ๋‹ค.'),('M14','์‚ฌ์ฒœ์žฅํ„ฐ ์‹œ์œ„์—์„œ๋Š” ํ—Œ๋ณ‘๋ณด์กฐ์› ๋“ฑ์ด ๋ฏธ๋ฆฌ ๋งค๋ณตํ•ด ์žˆ๋‹ค๊ฐ€ ์‹œ์œ„๋Œ€์—๊ฒŒ ์ด๊ฒฉ์„ ๊ฐ€ํ•˜์˜€๋Š”๋ฐ, ์ด ๋•Œ ํ—Œ๋ณ‘ ๋ณด์กฐ์›์—๋Š” ์กฐ์„ ์ธ์ด ์žˆ์—ˆ๋‹ค.','O','๋‹น์‹œ ์กฐ์„ ์ธ ํ—Œ๋ณ‘๋ณด์กฐ์› ๊ฐ•๋ณ‘์ผ, ๊น€์„ฑ๊ทœ, ๋ฐ•์š”์„ญ ๋“ฑ์ด ์žˆ์—ˆ์Šต๋‹ˆ๋‹ค. ์ด๋“ค์€ ๋Œ์„ ๋˜์ง€๋ฉฐ ๋งž์„  ์‹œ์œ„๋Œ€์—๊ฒŒ ๊ทธ ์ž๋ฆฌ์—์„œ ์‚ดํ•ด๋‹นํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M15','ํ‰๋‚จ ๊ฐ•์„œ๊ตฐ ์‚ฌ์ฒœ์žฅํ„ฐ ์‹œ์œ„์—์„œ ๊ต์‚ฌ ๊น€๊ตฌ์‘์˜ ๋ชจ์นœ ์ตœ์”จ๊ฐ€ ์ž์‹์˜ ์‹œ์‹ ์„ ์•ˆ๊ณ  ํ†ต๊ณกํ•˜์ž ์ผ๋ณธ๊ตฐ์€ ๋…ธ๋ชจ๋งˆ์ € ์ฐฝ์œผ๋กœ ์ฐ”๋Ÿฌ ์‚ดํ•ดํ–ˆ๋‹ค.','X','์ด๋Š” ์ฒœ์•ˆ ์•„์šฐ๋‚ด ๋งŒ์„ธ์šด๋™์—์„œ ์ผ์–ด๋‚œ ์ผ์ž…๋‹ˆ๋‹ค.'),('M16','3.1์šด๋™์˜ ๊ณ„๊ธฐ ์ค‘ ํ•˜๋‚˜๋Š” ๊น€๊ทœ์‹์˜ ๋…๋ฆฝ ์‹œ์œ„ ์ฃผ๋ฌธ์ด์—ˆ๋‹ค.','O','๊น€๊ทœ์‹์€ ์‹ ํ•œ์ฒญ๋…„๋‹น ๋‹น์›๋“ค์—๊ฒŒ ๋…๋ฆฝ ์‹œ์œ„์˜ ์ฃผ๋ฌธ์„ ํ•˜์˜€์Šต๋‹ˆ๋‹ค.'),('M17','3.1์šด๋™์€ ๋ฏธ๊ตญ ๋ง์ปจ ๋Œ€ํ†ต๋ น์˜ ๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜๋‹ค.','X','์œŒ์Šจ ๋Œ€ํ†ต๋ น์˜ ๋ฏผ์กฑ์ž๊ฒฐ์ฃผ์˜์˜ ์˜ํ–ฅ์„ ๋ฐ›์•˜์Šต๋‹ˆ๋‹ค.'),('M18','๊ณผ๊ฑฐ ๋™์–‘์—์„œ ๋งŒ์„ธ๋Š” ํ™ฉ์ œ์—๊ฒŒ ๋ฐ”์น˜๋Š” ์ตœ์ƒ์˜ ๊ฒฝ๋ฐฐ ๊ตฌํ˜ธ์˜€๋‹ค.','O','๊ทธ๋ž˜์„œ ๋‹น์‹œ \'์กฐ์„ ๋…๋ฆฝ๋งŒ์„ธ\' ํ˜น์€ \'๋Œ€ํ•œ๋…๋ฆฝ๋งŒ์„ธ\'๋ผ๋Š” ๋ง์„ ์™ธ์ณค์Šต๋‹ˆ๋‹ค.'),('M19','1919๋…„ 2์›” 8์ผ ์ผ๋ณธ ๋„์ฟ„ YMCA ๊ฐ•๋‹น์—์„œ 2.8 ๋…๋ฆฝ ์„ ์–ธ์ด ๋ฐœํ‘œ๋˜์—ˆ๋‹ค.','O','์ด ์—ญ์‹œ 3.1์šด๋™์— ์˜ํ–ฅ์„ ์ฃผ์—ˆ์Šต๋‹ˆ๋‹ค.'),('M20','์ฒœ๋„๊ต์—์„œ๋Š” ๋™ํ•™๋†๋ฏผ์šด๋™์˜ ์—ฐ์žฅ์„ ์ƒ์—์„œ ๋…๋ฆฝ์šด๋™์„ ์ด๋ฏธ ์ค€๋น„ํ•˜๊ณ  ์žˆ์—ˆ๋‹ค.','O','์ด๋ฏธ ์ฒœ๋„๊ต, ๊ธฐ๋…๊ต์—์„œ ๋…๋ฆฝ์šด๋™์„ ์ค€๋น„ํ•˜๊ณ  ์žˆ์—ˆ์œผ๋ฉฐ ๊ณ ์ข…์˜ ๋…์‚ด์„ค ๋“ฑ 1919๋…„ ๋ฐ˜์ผ์˜์‹์ด ์ปค์ง€์ž ๋งŒ์„ธ์šด๋™์ด ์‹œ์ž‘๋ฉ๋‹ˆ๋‹ค.'),('M21','์›๋ž˜ ๋…๋ฆฝ ์„ ์–ธ์„œ ๋Œ€์‹  ์ผ๋ณธ ์ •๋ถ€์— ์กฐ์„  ๋…๋ฆฝ์„ ์š”์ฒญํ•˜๋Š” ๊ฑด์˜๋ฌธ์„ ๋งŒ๋“ค๋ ค๊ณ  ํ–ˆ์—ˆ๋‹ค.','O','๊ทธ๋Ÿฌ๋‚˜ ์ตœ๋ฆฐ์˜ ๊ฐ•๋ ฅํ•œ ์ฃผ์žฅ์œผ๋กœ ๋…๋ฆฝ ์„ ์–ธ์„œ๋ฅผ ๋งŒ๋“ค๊ฒŒ ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('M22','1919๋…„ 3์›” 1์ผ ๋งŒ์„ธ ์‹œ์œ„๋Œ€๋Š” ์˜คํ›„ 6์‹œ์— ์ž์ง„ ํ•ด์‚ฐํ–ˆ๋‹ค.','O ','์ผ๋ณธ๊ตฐ์— ๋งž์„œ๋˜ ์‹œ์œ„๋Œ€๋Š” ์˜คํ›„ 6์‹œ๊ฐ€ ๋˜์ž ์ž์ง„ ํ•ด์‚ฐํ•˜์˜€์Šต๋‹ˆ๋‹ค.'),('M23','๋‹น์‹œ ๋‰ด์š• ํƒ€์ž„์ฆˆ์—์„œ๋„ 3.1์šด๋™์„ ๋ณด๋„ํ–ˆ๋‹ค.','O','๋‰ด์š• ํƒ€์ž„์ฆˆ, APํ†ต์‹ , ์ด๊ทธ์žฌ๋ฏธ๋„ˆ, ์•™ํƒ•ํŠธ, ๋ชจ๋‹ ํฌ์ŠคํŠธ, ๋ฏผ๊ตญ ์ผ๋ณด ๋“ฑ ๊ตญ์™ธ์—์„œ๋„ 3.1์šด๋™์— ๋Œ€ํ•ด ๋ณด๋„ํ–ˆ์Šต๋‹ˆ๋‹ค.'),('M24','3.1์šด๋™ ์ง์ „ ์ธ์‡„์†Œ์—์„œ ๋…๋ฆฝ์„ ์–ธ์„œ๋ฅผ ์ธ์‡„ํ•˜๋˜ ๋„์ค‘ ์ข…๋กœ๊ฒฝ์ฐฐ์„œ ํ˜•์‚ฌ์ธ ์‹ ์ฒ ์—๊ฒŒ ์ด๋ฅผ ๋“คํ‚จ๋‹ค.','O','์ตœ๋ฆฐ์ด ์‹ ์ฒ ์„ ์„ค๋“ํ•˜์—ฌ ์‹ ์ฒ ์€ ์ด๋ฅผ ๋ฌต์ธํ•˜๊ณ  ํ›„์— ์ฒดํฌ๋ น์ด ๋–จ์–ด์ง€์ž ์ž์‚ดํ•ฉ๋‹ˆ๋‹ค. ์•„์ด๋Ÿฌ๋‹ˆํ•˜๊ฒŒ๋„ ์ตœ๋ฆฐ์€ ํ›„์— ๋ณ€์งˆํ•ฉ๋‹ˆ๋‹ค.'),('M25','์›๋ž˜ ๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ์€ ๊ฒฝ๋ณต๊ถ์—์„œ ๋…๋ฆฝ์„ ์–ธ์‹์„ ํ•˜๊ธฐ๋กœ ํ–ˆ์—ˆ๋‹ค.','X','์ด๋“ค์€ ์›๋ž˜ ํƒ‘๊ณจ๊ณต์›์—์„œ ๋ชจ์ด๊ธฐ๋กœ ํ–ˆ์—ˆ์Šต๋‹ˆ๋‹ค.'),('M26','ํƒ‘๊ณจ๊ณต์›์— ๋ฏผ์กฑ๋Œ€ํ‘œ 33์ธ์ด ๋‚˜ํƒ€๋‚˜์ง€ ์•Š์ž ์œ ๊ด€์ˆœ์ด ์ด๋“ค์„ ์ฐพ์œผ๋Ÿฌ ๋‹ค๋…”๋‹ค.','X','๊ฐ•๊ธฐ๋•์ด ์ฐพ์•„๋‹ค๋…”์Šต๋‹ˆ๋‹ค.'),('M27','๋ฏธ๊ตญ์˜ ์‚ฌ์—…๊ฐ€ ๋นŒํ—ฌ๋ฆ„ ์ฃผ๋‹ˆ์–ด๊ฐ€ ๋‹น์‹œ 3.1์šด๋™ ์ดํ›„ ์ผ์ œ์˜ ํ•™์‚ด ์žฅ๋ฉด์„ ์ฐ์€ ์‚ฌ์ง„๊ณผ ๋ชฉ๊ฒฉ๋‹ด์„ ์ œ๊ณตํ–ˆ๋‹ค.','X','๋กœ๋ฒ„ํŠธ ์›Œ๋“œ์˜€์Šต๋‹ˆ๋‹ค.'),('M28','๋ฐฑ๋ฒ” ๊น€๊ตฌ์˜ ์„(้‡‹)์—์„œ ๊น€๊ตฌ ์„ ์ƒ์€ 3.1 ์šด๋™์„ 3.1๋Œ€ํ˜๋ช…์ด๋ผ๊ณ  ํ‘œํ˜„ํ–ˆ๋‹ค.','O','๋ฐฑ๋ฒ” ๊น€๊ตฌ ์„ ์ƒ ์™ธ์—๋„ 3.1์šด๋™์„ 3.1ํ˜๋ช…, 3.1๋Œ€ํ˜๋ช…์œผ๋กœ ๋ณด๋Š” ์ด๋“ค์ด ๋งŽ์ด ์žˆ์Šต๋‹ˆ๋‹ค.'),('M29','3.1์ ˆ์ด ๊ตญ๊ฒฝ์ผ๋กœ ์ง€์ •๋œ ๊ฒƒ์€ 1946๋…„์ด๋‹ค.','X','1949๋…„ 10์›” 1์ผ์ด๋‹ค. 1946๋…„ 3์›” 1์ผ์—๋Š” ๊ตญ๊ฐ€ ๊ฒฝ์ถ•์ผ๋กœ๋งŒ ์ง€์ •๋˜์—ˆ๊ณ  1949๋…„์—์•ผ <๊ตญ๊ฒฝ์ผ์— ๊ด€ํ•œ ๋ฒ•๋ฅ >์— ๊ณตํฌ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('H1','3.1์šด๋™์˜ ๊ณ„๊ธฐ๊ฐ€ ๋œ ๋ฏผ์กฑ ์ž๊ฒฐ์ฃผ์˜๋Š” ํŒŒ๋ฆฌ ๊ฐ•ํ™” ํšŒ์˜์—์„œ 15๊ฐœ์กฐ์˜ ์ „ํ›„ ์ฒ˜๋ฆฌ ์›์น™์œผ๋กœ ์ œ์•ˆ๋˜์—ˆ๋˜ ๊ฒƒ์ด๋‹ค.','X','14๊ฐœ ์˜€์Šต๋‹ˆ๋‹ค.'),('H2','3.1์šด๋™ ์ดํ›„ ๋ฐ๋ผ์šฐ์น˜ ๋งˆ์‚ฌ๋‹ค์ผ€ ์ด๋…์€ ์ผ๋ณธ ์ž๊ตญ๋ฏผ์—๊ฒŒ ๋น„ํŒ์„ ๋ฐ›์•˜๋‹ค.','X','ํ•˜์„ธ๊ฐ€์™€ ์š”์‹œ๋ฏธ์น˜๊ฐ€ ์ด๋…์ด์—ˆ๊ณ , ๋ฐ๋ผ์šฐ์น˜ ๋งˆ์‚ฌ๋‹ค์ผ€๊ฐ€ ๋‚ด๊ฐ์ด์—ˆ์œผ๋ฉฐ ๊ทธ๋“ค์€ ์กฐ์„ ์ธ ๊ด€๋ฆฌ์— ๋Œ€ํ•ด ๋งŽ์€ ๋น„ํŒ์„ ๋ฐ›์•˜๊ณ  ์ดํ›„ ์ด๋…์€ ์‚ฌ์งํ•˜๊ธฐ์— ์ด๋ฆ…๋‹ˆ๋‹ค.'),('H3','์ •์น˜์ธ ๊น€๋ฌด์„ฑ์€ ๋…๋ฆฝ์šด๋™๊ฐ€์˜ ํ›„์†์ด๋‹ค.','X','์ด์ข…๊ฑธ ๋“ฑ์ด ๋…๋ฆฝ์šด๋™๊ฐ€์˜ ํ›„์†์ธ ์ •์น˜์ธ์ž…๋‹ˆ๋‹ค.'),('H4','3์›” 1์ผ ํƒ‘๊ณจ๊ณต์›์— ๋ชจ์ธ ํ•™์ƒ๋“ค์€ ๋ชจ๋‘ ํ•™๊ต๋ฅผ ๋น ์ง€๊ณ  ๋™๋งน ํœดํ•™์„ ํ–ˆ๋‹ค.','X','์ด๋“ค์€ ๋Œ€๋ถ€๋ถ„ ์˜ค์ „์ˆ˜์—…์„ ๋งˆ์น˜๊ณ  ์™”์Šต๋‹ˆ๋‹ค.'),('H5','1919๋…„ 5์›” 30์ผ๋ถ€ํ„ฐ ๋ฏธ๊ตญ์˜ํšŒ์—์„œ๋„ ์กฐ์„ ์˜ ๋…๋ฆฝ ๋ฌธ์ œ๊ฐ€ ๊ฑฐ๋ก ๋˜์—ˆ๋‹ค.','X','6์›” 30์ผ๋ถ€ํ„ฐ 3๊ฐœ์›”๊ฐ„ ๊ฑฐ๋ก ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.'),('H6','ํ•œ๊ฐ• ์ด๋‚จ ์ง€์—ญ์—์„œ ์ตœ์ดˆ๋กœ ๋ฒŒ์–ด์ง„ ๋งŒ์„ธ์šด๋™์€ ๊ตฐ์‚ฐ 3. 5 ๋งŒ์„ธ์šด๋™์ด๋‹ค.','O','๊ทธ๋ฆฌํ•˜์—ฌ ๊ตฐ์‚ฐ ๋งŒ์„ธ์šด๋™์€ ํฐ ์˜๋ฏธ๋ฅผ ์ง€๋‹™๋‹ˆ๋‹ค.'),('H7','๋งŒ์„ธ์‹œ์œ„๋Š” 3์›” ํ•˜์ˆœ๋ถ€ํ„ฐ 4์›” ์ดˆ์ˆœ๊นŒ์ง€ ๋งค์ผ 50~60์—ฌํšŒ๊ฐ€ ์ผ์–ด๋‚ฌ๋‹ค.','O','์ด๋•Œ๊ฐ€ ๋งŒ์„ธ์šด๋™์˜ ์ ˆ์ •๊ธฐ์˜€์Šต๋‹ˆ๋‹ค.'),('H8','3์›” 3์ผ ์ผ๋ณธ์˜ ๋‚ด๊ฐ, ์ค‘์˜์› ๋“ฑ์— ๋…๋ฆฝ์„ ์–ธ์„œ, ์กฐ์„ ๋…๋ฆฝํ†ต๊ณ ๋ฌธ ์šฐ์†ก๊ณผ ๊ฒฝ์‹œ์ด๊ฐ ๊ณผ์˜ ๊ณต์‹์ ์ธ ํŽธ์ฐฌ์‹์ด ์‹œํ–‰๋ฌ๋‹ค','X','3์›” 3์ผ์—” ์ผ๋ณธ์˜ ๋‚ด๊ฐ, ๊ท€์กฑ์›, ์ค‘์˜์› ๋“ฑ์— ๋…๋ฆฝ์„ ์–ธ์„œ, ์กฐ์„ ๋…๋ฆฝํ†ต๊ณ ๋ฌธ ์šฐ์†ก๊ณผ ๊ฒฝ์‹œ์ด๊ฐ๊ณผ์˜ ๋ฉด๋‹ด์ด ์žˆ์—ˆ๋‹ค.'),('H9','์œ ๊ด€์ˆœ์˜ 1์‹ฌ ์„ ๊ณ ํ˜•์— ๋Œ€ํ•ด์„œ๋Š” ์ง•์—ญ 7๋…„์„ค์„ ๊ฑฐ๋ก ํ–ˆ์œผ๋‚˜, 2000๋…„๋Œ€ ์ค‘๋ฐ˜์— \'๋ณ‘์ฒœยท๋™๋ฉด ์ง€์—ญ ํ˜•์‚ฌ์‚ฌ๊ฑด๋ถ€\'๊ฐ€ ๋ฐœ๊ฒฌ๋˜์–ด ๊ณต์ฃผ์ง€๋ฐฉ ๋ฒ•์›์—์„œ 5๋…„ํ˜•์„ ์„ ๊ณ ๋ฐ›์•˜์Œ์ด ํ™•์ธ๋˜์—ˆ๋‹ค.','O','์œ ๊ด€์ˆœ์˜ 1์‹ฌ ์„ ๊ณ ํ˜•์— ๋Œ€ํ•ด์„œ๋Š” ํ•ด๋ฐฉ ์งํ›„ ์ „์˜ํƒ ๋“ฑ์ด ์ง•์—ญ 7๋…„์„ค์„ ๊ฑฐ๋ก ํ–ˆ์œผ๋‚˜, 2000๋…„๋Œ€ ์ค‘๋ฐ˜์— \'๋ณ‘์ฒœยท๋™๋ฉด ์ง€์—ญ ํ˜•์‚ฌ์‚ฌ๊ฑด๋ถ€\'๊ฐ€ ๋ฐœ๊ฒฌ๋˜์–ด ๊ณต์ฃผ์ง€๋ฐฉ ๋ฒ•์›์—์„œ 5๋…„ํ˜•์„ ์„ ๊ณ ๋ฐ›์•˜์Œ์ด ํ™•์ธ๋˜์—ˆ๋‹ค 1920๋…„ 4์›” 28์ผ์— ์˜์นœ์™•์ด ์ผ๋ณธ ์™•์กฑ ์ด๋ฐฉ์ž์™€ ๊ฒฐํ˜ผํ•˜๋ฉด์„œ, ํŠน์‚ฌ๋กœ ํ˜•์ด 1๋…„ 6๊ฐœ์›”๋กœ ๊ฐํ˜•๋˜์—ˆ๋‹ค.'),('H10','์ „๋ถ ๋‚จ์›์—์„œ ์žฅ๋‚  ์˜คํ›„ ๋Œ€๊ทœ๋ชจ ๋งŒ์„ธ ์‹œ์œ„๊ฐ€ ๋ฒŒ์–ด์ง€์ž ์ผ๋ณธ์€ ์‹œ์œ„๋Œ€์— ์ด๊ฒฉ์„ ๊ฐ€ํ•ด ํ™ฉ์ผํ™˜, ์ด์„ฑ๊ธฐ, ํ˜•๊ฐ‘์ˆ˜ ๋“ฑ 20์—ฌ๋ช…์ด ์ฆ‰์‚ฌํ–ˆ๋‹ค.','X','๊ทธ๋“ค์€ ์ฒดํฌ๋˜์—ˆ๊ณ , ๋ฐฉ์ง„ํ˜•, ๋ฐฉ๋ช…์ˆ™ ๋“ฑ 8๋ช…์ด ํ˜„์žฅ์—์„œ ์ฆ‰์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค.'); /*!40000 ALTER TABLE `question` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; /*!40000 ALTER TABLE `user` 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(11) NOT NULL AUTO_INCREMENT, `name` varchar(10) DEFAULT NULL, `phone` varchar(11) DEFAULT NULL, `ip` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,NULL,'','10.1.20.119, 10.1.20.90'),(2,NULL,'0','10.1.20.119, 10.1.20.90'),(3,NULL,'','10.1.21.186, 10.1.21.16'),(4,NULL,'432','10.1.21.186, 10.1.21.16'),(5,NULL,'13','10.1.20.119, 10.1.20.90'),(6,NULL,'2','10.1.20.119, 10.1.20.90'),(7,NULL,'1','10.1.20.119, 10.1.20.90'),(8,'๊ฐ•์ฐฝ์™„','01027845259','10.1.20.119, 10.1.21.16'),(9,'Kang','01027845259','10.1.21.186, 10.1.21.16'),(10,'gd','0','172.16.58.3'),(11,'๊ฐ•์ฐฝ์™„','01027845259','172.16.58.3'),(12,'','','192.168.3.11'); /*!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 2020-02-29 12:36:14
INSERT INTO department (name) VALUES ( 'Human Resources' ), ( 'Finance' ); INSERT INTO role (title, salary, department_id) VALUES ( 'Cashier', 75000, 2 ), ( 'Human Resources Coordinator', 100000, 1 ), ( 'Accountant', 80000, 2 ); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ("Newman", "Norman", 2, 2)
/** * PostgreSQL's Public schema, common Library (pubLib) * Module: general. (simple aliases and basic functions) * * Complementing https://www.postgresql.org/docs/current/functions-array.html */ -- -- -- -- -- -- -- -- -- -- -- -- Helper functions: avoid. CREATE or replace FUNCTION iIF( condition boolean, -- IF condition true_result anyelement, -- THEN false_result anyelement -- ELSE -- See https://stackoverflow.com/a/53750984/287948 ) RETURNS anyelement AS $f$ SELECT CASE WHEN condition THEN true_result ELSE false_result END $f$ LANGUAGE SQL IMMUTABLE; COMMENT ON FUNCTION iif IS 'Immediate IF. Sintax sugar for the most frequent CASE-WHEN. Avoid with text, need explicit cast.' ;
CREATE USER IF NOT EXISTS AcmeDemoAdmin;
CREATE OR REPLACE FUNCTION test_comments_table() RETURNS SETOF TEXT LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT has_table('comments'); -- Columns RETURN QUERY SELECT columns_are('comments', ARRAY['id', 'patchset_id', 'submitter_id', 'content', 'type', 'status', 'last_modif_or_publication_timestamp', 'line_range', 'file_path', 'parent_id' ]); RETURN QUERY SELECT col_is_pk('comments', 'id'); RETURN QUERY SELECT indexes_are('comments', ARRAY['comments_pkey', 'patchset_id_file_path_idx', 'parent_id_idx']); END; $$;
ALTER TABLE `kwf_pages_history` DROP FOREIGN KEY `kwf_pages_history_ibfk_1` ; ALTER TABLE `kwf_pages_history` DROP FOREIGN KEY `kwf_pages_history_ibfk_2` ;
<reponame>Zhaojia2019/cubrid-testcases<filename>sql/_13_issues/_15_1h/cases/bug_bts_14840.sql AUtocommit off; drop table if exists t; create table t(id int primary key,col varchar(10)) partition by range(id)(partition p1 values less than (100),partition p2 values less than (500)); INSERT INTO t SELECT rownum,rownum||'abcdef' FROM db_class a,db_class b limit 500; INSERT INTO t SELECT rownum,rownum||'abcdef' FROM db_class a,db_class b limit 499; select count(*) from t; drop table t; drop table if exists t1; create table t1 (id int auto_increment primary key,name char(20)); insert into t1 values(4000,'afsddddddddddddddddddddddddd'); insert into t1(id,name) select rownum,rownum||'asdfffffffffffffffafds' from db_class a,db_class b,db_class c limit 4001; insert into t1(id,name) select rownum,rownum||'asdfffffffffffffffafds' from db_class a,db_class b,db_class c limit 3998; select count(*) from t1; drop table t1; commit; AUtocommit on;
drop if exists t1,t2; create table t1 (a int, b varchar(32)); insert into t1 values(1,'ccc'); insert into t1 values(3,'eee'); create table t2 (c int); insert into t2 values(3); --Expect return error: CUBRID allow only UNION ALL in recursive CTE insert into t2 ( with recursive subquery_t1 as(select a from t1 where t1.a<3 UNION select a+1 from subquery_t1 where a<10)select * from subquery_t1); --Expect return OK insert into t2 ( with recursive subquery_t1 as(select a from t1 where t1.a<3 UNION ALL select a+1 from subquery_t1 where a<10)select * from subquery_t1); select * from t2 order by 1; drop if exists t1,t2;