2017-09-07 09:28:08 +00:00
-- MySQL dump 10.15 Distrib 10.0.31-MariaDB, for debian-linux-gnu (x86_64)
2015-02-02 21:58:08 +00:00
--
-- Host: localhost Database: friendica
-- ------------------------------------------------------
2017-09-07 09:28:08 +00:00
-- Server version 10.0.31-MariaDB-0ubuntu0.16.04.2
2015-02-02 21:58:08 +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 */ ;
2017-04-16 13:53:48 +00:00
/* !40101 SET NAMES utf8mb4 */ ;
2015-02-02 21:58:08 +00:00
/* !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 `addon`
--
DROP TABLE IF EXISTS ` addon ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` addon ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` name ` varchar ( 190 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` version ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` installed ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` hidden ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` timestamp ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
` plugin_admin ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
PRIMARY KEY ( ` id ` ) ,
UNIQUE KEY ` name ` ( ` name ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `addon`
--
LOCK TABLES ` addon ` WRITE ;
/* !40000 ALTER TABLE `addon` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `addon` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `attach`
--
DROP TABLE IF EXISTS ` attach ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` attach ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` hash ` varchar ( 64 ) NOT NULL DEFAULT ' ' ,
` filename ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` filetype ` varchar ( 64 ) NOT NULL DEFAULT ' ' ,
` filesize ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` data ` longblob NOT NULL ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` edited ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` allow_cid ` mediumtext ,
` allow_gid ` mediumtext ,
` deny_cid ` mediumtext ,
` deny_gid ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `attach`
--
LOCK TABLES ` attach ` WRITE ;
/* !40000 ALTER TABLE `attach` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `attach` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `auth_codes`
--
DROP TABLE IF EXISTS ` auth_codes ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` auth_codes ` (
` id ` varchar ( 40 ) NOT NULL ,
` client_id ` varchar ( 20 ) NOT NULL DEFAULT ' ' ,
` redirect_uri ` varchar ( 200 ) NOT NULL DEFAULT ' ' ,
` expires ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` scope ` varchar ( 250 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `auth_codes`
--
LOCK TABLES ` auth_codes ` WRITE ;
/* !40000 ALTER TABLE `auth_codes` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `auth_codes` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS ` cache ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` cache ` (
2017-09-07 09:28:08 +00:00
` k ` varbinary ( 255 ) NOT NULL ,
` v ` mediumtext ,
` expire_mode ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` updated ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` k ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` expire_mode_updated ` ( ` expire_mode ` , ` updated ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `cache`
--
LOCK TABLES ` cache ` WRITE ;
/* !40000 ALTER TABLE `cache` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` cache ` VALUES ( ' about::http://friendica.dev/profile/friendica1 ' , ' s:0:\"\"; ' , 0 , ' 2017-09-07 09:09:50 ' ) , ( ' about::http://friendica.dev/profile/friendica2 ' , ' s:0:\"\"; ' , 0 , ' 2017-09-07 09:09:50 ' ) , ( ' about::http://friendica.dev/profile/friendica4 ' , ' s:0:\"\"; ' , 0 , ' 2017-09-07 09:13:25 ' ) , ( ' app:proc_run:started ' , ' i:1504775968; ' , 7 , ' 2017-09-07 09:19:28 ' ) , ( ' diaspora:construct_comment:758d682b1059b10ee096f38798595234 ' , ' a:6:{s:6:\"author\";s:24:\"friendica3@friendica.dev\";s:4:\"guid\";s:32:\"758d682b1059b10ee096f38798595234\";s:10:\"created_at\";s:20:\"2017-09-07T09:18:24Z\";s:11:\"parent_guid\";s:32:\"758d682b1859b10ebd6abab685903735\";s:4:\"text\";s:5:\"Cool!\";s:16:\"author_signature\";s:0:\"\";} ' , 5 , ' 2017-09-07 09:18:24 ' ) , ( ' diaspora:construct_comment:758d682b2059b10f204f9c2684001373 ' , ' a:6:{s:6:\"author\";s:24:\"friendica2@friendica.dev\";s:4:\"guid\";s:32:\"758d682b2059b10f204f9c2684001373\";s:10:\"created_at\";s:20:\"2017-09-07T09:19:28Z\";s:11:\"parent_guid\";s:32:\"758d682b1459b10f0be17c3206121357\";s:4:\"text\";s:4:\"Yay!\";s:16:\"author_signature\";s:0:\"\";} ' , 5 , ' 2017-09-07 09:19:28 ' ) , ( ' probe_url::friendica2@friendica.dev ' , ' a:21:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:4:\"guid\";s:32:\"758d682b1359b10a3a54a8c301503194\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica2\";s:4:\"addr\";s:24:\"friendica2@friendica.dev\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:40:\"http://friendica.dev/photo/profile/3.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica2\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica2\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica2\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica2\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica2\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://friendica.dev\";} ' , 2 , ' 2017-09-07 09:03:39 ' ) , ( ' probe_url::friendica3@friendica.dev ' , ' a:21:{s:4:\"name\";s:10:\"friendica3\";s:4:\"nick\";s:10:\"friendica3\";s:4:\"guid\";s:32:\"758d682b1359b10a642ef08222820194\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica3\";s:4:\"addr\";s:24:\"friendica3@friendica.dev\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:40:\"http://friendica.dev/photo/profile/4.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica3\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica3\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica3\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica3\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica3\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2No
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `cache` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `challenge`
--
DROP TABLE IF EXISTS ` challenge ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` challenge ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` challenge ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` dfrn - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` expire ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` type ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` last_update ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` )
2017-09-07 09:28:08 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `challenge`
--
LOCK TABLES ` challenge ` WRITE ;
/* !40000 ALTER TABLE `challenge` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `challenge` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `clients`
--
DROP TABLE IF EXISTS ` clients ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` clients ` (
` client_id ` varchar ( 20 ) NOT NULL ,
` pw ` varchar ( 20 ) NOT NULL DEFAULT ' ' ,
` redirect_uri ` varchar ( 200 ) NOT NULL DEFAULT ' ' ,
` name ` text ,
` icon ` text ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` client_id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `clients`
--
LOCK TABLES ` clients ` WRITE ;
/* !40000 ALTER TABLE `clients` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `clients` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `config`
--
DROP TABLE IF EXISTS ` config ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` config ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` cat ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` k ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` v ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` cat_k ` ( ` cat ` , ` k ` )
) ENGINE = InnoDB AUTO_INCREMENT = 17 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `config`
--
LOCK TABLES ` config ` WRITE ;
/* !40000 ALTER TABLE `config` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` config ` VALUES ( 1 , ' system ' , ' maintenance ' , ' 0 ' ) , ( 2 , ' system ' , ' maintenance_reason ' , ' ' ) , ( 3 , ' system ' , ' dbupdate ' , ' 1 ' ) , ( 4 , ' system ' , ' url ' , ' http://friendica.dev ' ) , ( 5 , ' system ' , ' build ' , ' 1234 ' ) , ( 6 , ' system ' , ' temppath ' , ' /tmp/friendica.dev ' ) , ( 7 , ' system ' , ' itemcache ' , ' /tmp/friendica.dev/itemcache ' ) , ( 8 , ' system ' , ' cache_cleared_day ' , ' 1504774549 ' ) , ( 9 , ' system ' , ' cache_cleared_hour ' , ' 1504774549 ' ) , ( 10 , ' system ' , ' cache_cleared_half_hour ' , ' 1504774549 ' ) , ( 11 , ' system ' , ' cache_cleared_quarter_hour ' , ' 1504775460 ' ) , ( 12 , ' system ' , ' cache_cleared_five_minute ' , ' 1504775835 ' ) , ( 13 , ' system ' , ' cache_cleared_minute ' , ' 1504775968 ' ) , ( 14 , ' system ' , ' poller_last_cleaned ' , ' 1504775768 ' ) , ( 15 , ' system ' , ' site_prvkey ' , ' -----BEGIN PRIVATE KEY-----\nMIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBAKt55CWxHK15VG/X\nnUyQhm+1ZQnLcjsBQowmbWjJdZdPq/5ID5elVMj5VGwZ8gkZFUASS7c1kK+ZvFgi\nTc4j8c2vjbjGhZ5yee/9zGkZcUu/ZC1QVXNwlw/M25Fzu1iB53xH8BiqHNFY/88Y\n6f+wvWKgTP1Z3SmgOb2pDcfxd90nAgMBAAECgYBRmPU6AmfVHNFTT1To5DU03yqv\nWIKJFXZnXrndjVBJqn37yKqyzNflss+7iTUloyv7izlAe1rYVN3NSrWfjHc5U4Y3\nTRRsKcl3EhA1ExI6LGWCfCEstpHq8Ix78cASKAm2rC+Jfnn7Vssuunii7bDvplZi\n/pNl9hEuTwwSEBaF4QJBAOGysKq228c6c7Jzl8/huzXfygPqAw2M//gfVJcMCRs7\nyYPbyLXGkry/73e5InrjaYfQVGKv/jm8Wviq9bQ+468CQQDCf5QoH4Zht2z20Ysb\noUkQ7qsYgoxQun1ZYMVnzsAsPc8vh+2H2oGnT4o2K2sa7XuKJVcVO+AUp6yZaiab\npuQJAkBxQ5SHR5cJ51qSjpH8ICMsSS9/QVvg3AbFBSwVVVPol9tsUcrq9klDcesC\nISWdmCyonLMMh5fEb7MTofAGUZ0/AkEAqlNvO3PgCtLG6Z63Y4rqoZlg3CX3Gvs1\nqn/EYBP+1r+KIOW4bbA8ung9YRLEyOAPv/rTOBUnNu9fhzoedVDBgQJBAI0Vb7kQ\nd9O7cMNoeNkU1z3D19jl8OOqUx1RFHF/ZforUfLhTctDOmkJi+lCtjL59MUtToUw\nR+aGkzhkzkFDDR4=\n-----END PRIVATE KEY-----\n ' ) , ( 16 , ' system ' , ' site_pubkey ' , ' -----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCreeQlsRyteVRv151MkIZvtWUJ\ny3I7AUKMJm1oyXWXT6v+SA+XpVTI+VRsGfIJGRVAEku3NZCvmbxYIk3OI/HNr424\nxoWecnnv/cxpGXFLv2QtUFVzcJcPzNuRc7tYged8R/AYqhzRWP/PGOn/sL1ioEz9\nWd0poDm9qQ3H8XfdJwIDAQAB\n-----END PUBLIC KEY-----\n ' ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `config` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `contact`
--
DROP TABLE IF EXISTS ` contact ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` contact ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` self ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` remote_self ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` rel ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` duplex ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` network ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nick ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` location ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` about ` text ,
` keywords ` text ,
2015-02-02 21:58:08 +00:00
` gender ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` xmpp ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` attag ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` avatar ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` photo ` text ,
` thumb ` text ,
` micro ` text ,
` site - pubkey ` text ,
2015-02-02 21:58:08 +00:00
` issued - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` dfrn - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nurl ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` addr ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` alias ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` pubkey ` text ,
` prvkey ` text ,
2015-02-02 21:58:08 +00:00
` batch ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` request ` text ,
` notify ` text ,
` poll ` text ,
` confirm ` text ,
` poco ` text ,
2015-02-02 21:58:08 +00:00
` aes_allow ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` ret - aes ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` usehub ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` subhub ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` hub - verify ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` last - update ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` success_update ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` failure_update ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-04-11 21:00:45 +00:00
` name - date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` uri - date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` avatar - date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` term - date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` last - item ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` priority ` tinyint ( 3 ) NOT NULL DEFAULT ' 0 ' ,
` blocked ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` readonly ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` writable ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` forum ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` prv ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` contact - type ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` hidden ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` archive ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` pending ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` rating ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` reason ` text ,
2015-02-02 21:58:08 +00:00
` closeness ` tinyint ( 2 ) NOT NULL DEFAULT ' 99 ' ,
2017-09-07 09:28:08 +00:00
` info ` mediumtext ,
2015-02-02 21:58:08 +00:00
` profile - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` bdyear ` varchar ( 4 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` bd ` date NOT NULL DEFAULT ' 0001-01-01 ' ,
2015-02-02 21:58:08 +00:00
` notify_new_posts ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` fetch_further_information ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` ffi_keyword_blacklist ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_name ` ( ` uid ` , ` name ` ( 190 ) ) ,
KEY ` self_uid ` ( ` self ` , ` uid ` ) ,
KEY ` alias_uid ` ( ` alias ` ( 32 ) , ` uid ` ) ,
KEY ` pending_uid ` ( ` pending ` , ` uid ` ) ,
KEY ` blocked_uid ` ( ` blocked ` , ` uid ` ) ,
KEY ` uid_rel_network_poll ` ( ` uid ` , ` rel ` , ` network ` ( 4 ) , ` poll ` ( 64 ) , ` archive ` ) ,
KEY ` uid_network_batch ` ( ` uid ` , ` network ` ( 4 ) , ` batch ` ( 64 ) ) ,
KEY ` addr_uid ` ( ` addr ` ( 32 ) , ` uid ` ) ,
KEY ` nurl_uid ` ( ` nurl ` ( 32 ) , ` uid ` ) ,
KEY ` nick_uid ` ( ` nick ` ( 32 ) , ` uid ` ) ,
KEY ` dfrn - id ` ( ` dfrn - id ` ( 191 ) ) ,
KEY ` issued - id ` ( ` issued - id ` ( 191 ) )
) ENGINE = InnoDB AUTO_INCREMENT = 23 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `contact`
--
LOCK TABLES ` contact ` WRITE ;
/* !40000 ALTER TABLE `contact` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` contact ` VALUES ( 1 , 1 , ' 2017-09-07 08:55:42 ' , 1 , 0 , 0 , 0 , ' ' , ' admin ' , ' admin ' , ' ' , NULL , NULL , ' ' , ' ' , ' ' , ' ' , ' http://friendica.dev/photo/profile/1.jpg ' , ' http://friendica.dev/photo/avatar/1.jpg ' , ' http://friendica.dev/photo/micro/1.jpg ' , NULL , ' ' , ' ' , ' http://friendica.dev/profile/admin ' , ' http://friendica.dev/profile/admin ' , ' admin@friendica.dev ' , ' ' , NULL , NULL , ' ' , ' http://friendica.dev/dfrn_request/admin ' , ' http://friendica.dev/dfrn_notify/admin ' , ' http://friendica.dev/dfrn_poll/admin ' , ' http://friendica.dev/dfrn_confirm/admin ' , ' http://friendica.dev/poco/admin ' , 0 , 0 , 0 , 0 , ' ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 08:55:42 ' , ' 2017-09-07 08:55:42 ' , ' 2017-09-07 08:55:42 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , NULL , 0 , NULL , 0 , ' ' , ' 0001-01-01 ' , 0 , 0 , NULL ) , ( 2 , 2 , ' 2017-09-07 08:56:53 ' , 1 , 0 , 0 , 0 , ' ' , ' friendica1 ' , ' friendica1 ' , ' ' , NULL , NULL , ' ' , ' ' , ' ' , ' http://friendica.dev/photo/f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108 ' , ' http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575 ' , ' http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575 ' , ' http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-6.jpg?ts=1504775575 ' , NULL , ' ' , ' ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' friendica1@friendica.dev ' , ' ' , NULL , NULL , ' ' , ' http://friendica.dev/dfrn_request/friendica1 ' , ' http://friendica.dev/dfrn_notify/friendica1 ' , ' http://friendica.dev/dfrn_poll/friendica1 ' , ' http://friendica.dev/dfrn_confirm/friendica1 ' , ' http://friendica.dev/poco/friendica1 ' , 0 , 0 , 0 , 0 , ' ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 08:56:53 ' , ' 2017-09-07 08:56:53 ' , ' 2017-09-07 09:12:55 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , NULL , 0 , NULL , 0 , ' ' , ' 0001-01-01 ' , 0 , 0 , NULL ) , ( 3 , 3 , ' 2017-09-07 08:58:34 ' , 1 , 0 , 0 , 0 , ' ' , ' friendica2 ' , ' friendica2 ' , ' ' , NULL , NULL , ' ' , ' ' , ' ' , ' ' , ' http://friendica.dev/photo/profile/3.jpg ' , ' http://friendica.dev/photo/avatar/3.jpg ' , ' http://friendica.dev/photo/micro/3.jpg ' , NULL , ' ' , ' ' , ' http://friendica.dev/profile/friendica2 ' , ' http://friendica.dev/profile/friendica2 ' , ' friendica2@friendica.dev ' , ' ' , NULL , NULL , ' ' , ' http://friendica.dev/dfrn_request/friendica2 ' , ' http://friendica.dev/dfrn_notify/friendica2 ' , ' http://friendica.dev/dfrn_poll/friendica2 ' , ' http://friendica.dev/dfrn_confirm/friendica2 ' , ' http://friendica.dev/poco/friendica2 ' , 0 , 0 , 0 , 0 , ' ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:16:41 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 08:58:34 ' , ' 2017-09-07 08:58:34 ' , ' 2017-09-07 08:58:34 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:16:41 ' , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , NULL , 0 , NULL , 0 , ' ' , ' 0001-01-01 ' , 0 , 0 , NULL ) , ( 4 , 4 , ' 2017-09-07 08:59:16 ' , 1 , 0 , 0 , 0 , ' ' , ' friendica3 ' , ' friendica3 ' , ' ' , NULL , NULL , ' ' , ' ' , ' ' , ' ' , ' http://friendica.dev/photo/profile/4.jpg ' , ' http://friendica.dev/photo/avatar/4.jpg ' , ' http://friendica.dev/photo/micro/4.jpg ' , NULL , ' ' , ' ' , ' http://friendica.dev/profile/friendica3 ' , ' http://friendica.dev/profile/friendica3 ' , ' friendica3@friendica.dev ' , ' ' , NULL , NULL , ' ' , ' http://friendica.dev/dfrn_request/friendica3 ' , ' http://friendica.dev/dfrn_notify/friendica3 ' , ' http://friendica.dev/dfrn_poll/friendica3 ' , ' http://friendica.dev/dfrn_confirm/friendica3 ' , ' http://friendica.dev/poco/friendica3 ' , 0 , 0 , 0 , 0 , ' ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 08:59:16 ' , ' 2017-09-07 08:59:16 ' , ' 2017-09-07 08:59:16 ' , ' 0001-01-01 00:00:00 ' , ' 0001-01-01 00:00:00 ' , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , NULL , 0 , NULL , 0 , ' ' , ' 0001-01-01 ' , 0 , 0 , NULL ) , ( 5 , 5 , ' 2017-09-07 08:59:53 ' , 1 , 0 , 0 , 0 , ' ' , ' friendica4 ' , ' friendica4 ' , ' ' , NULL , NULL , ' ' , ' ' , ' ' , ' ' , ' http://friendica.dev/photo/profile/5.jpg ' , ' http://friendica.dev/photo/avatar/5.jpg ' , ' http://friendica.dev/photo/micro/5.jpg ' , NULL , ' ' , ' ' , ' http://friendica.dev/profile/friendica4 ' , ' http://friendica.dev/profile/friendica4 ' , ' friendica4@friendica.dev ' , ' ' , NULL , NULL , ' ' , ' http://friendica.dev/dfrn_request/friendica4 ' , ' http://friendica.dev/dfrn_notify/friendica4 ' , ' http://friendica.dev/dfrn_poll/friendica4 ' , ' http://friendica.dev/dfrn_confirm/friendica4 ' , ' http://friendica.dev/poco/friendica4 ' , 0 , 0 , 0 , 0 , ' ' , ' 0001-01-01 00:00:00 ' , ' 0001-01
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `contact` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `conv`
--
DROP TABLE IF EXISTS ` conv ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` conv ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` recips ` text ,
2015-02-02 21:58:08 +00:00
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` creator ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` updated ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` subject ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `conv`
--
LOCK TABLES ` conv ` WRITE ;
/* !40000 ALTER TABLE `conv` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `conv` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
2017-09-07 09:28:08 +00:00
-- Table structure for table `conversation`
2015-02-02 21:58:08 +00:00
--
2017-09-07 09:28:08 +00:00
DROP TABLE IF EXISTS ` conversation ` ;
2015-02-02 21:58:08 +00:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` conversation ` (
` item - uri ` varbinary ( 255 ) NOT NULL ,
` reply - to - uri ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` conversation - uri ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` conversation - href ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` protocol ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` source ` mediumtext ,
` received ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
PRIMARY KEY ( ` item - uri ` ) ,
KEY ` conversation - uri ` ( ` conversation - uri ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
2017-09-07 09:28:08 +00:00
-- Dumping data for table `conversation`
2015-02-02 21:58:08 +00:00
--
2017-09-07 09:28:08 +00:00
LOCK TABLES ` conversation ` WRITE ;
/* !40000 ALTER TABLE `conversation` DISABLE KEYS */ ;
INSERT INTO ` conversation ` VALUES ( ' urn:X-dfrn:friendica.dev:2:758d682b1459b10f0be17c3206121357 ' , ' ' , ' http://friendica.dev/display/friendica1/15 ' , ' http://friendica.dev/display/friendica1/15 ' , 1 , ' <?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n <id>http://friendica.dev/profile/friendica1</id>\n <title>friendica1</title>\n <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.dev/profile/friendica1\"/>\n <dfrn:account_type>0</dfrn:account_type>\n <updated>2017-09-07T09:19:08Z</updated>\n <dfrn:owner>\n <name dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1</name>\n <uri dfrn:updated=\"2017-09-07T08:56:53Z\">http://friendica.dev/profile/friendica1</uri>\n <dfrn:handle dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1@friendica.dev</dfrn:handle>\n <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n <dfrn:hide>true</dfrn:hide>\n <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n <poco:displayName>friendica1</poco:displayName>\n <poco:updated>2017-09-07T08:56:53Z</poco:updated>\n <poco:note/>\n <poco:preferredUsername>friendica1</poco:preferredUsername>\n <poco:utcOffset>+00:00</poco:utcOffset>\n </dfrn:owner>\n <entry>\n <author>\n <name>friendica1</name>\n <uri>http://friendica.dev/profile/friendica1</uri>\n <dfrn:handle>friendica1@friendica.dev</dfrn:handle>\n <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n </author>\n <dfrn:owner>\n <name>friendica1</name>\n <uri>http://friendica.dev/profile/friendica1</uri>\n <dfrn:handle>friendica1@friendica.dev</dfrn:handle>\n <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.dev/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n </dfrn:owner>\n <ostatus:conversation href=\"http://friendica.dev/display/friendica1/15\" ref=\"http://friendica.dev/display/friendica1/15\">http://friendica.dev/display/friendica1/15</ostatus:conversation>\n <id>urn:X-dfrn:friendica.dev:2:758d682b1459b10f0be17c3206121357</id>\n <title/>\n <published>2017-09-07T09:19:07Z</published>\n <updated>2017-09-07T09:19:07Z</updated>\n <dfrn:env>QW5kIHRoaXMgcG9zdCBnb2VzIHRvIGdyb3VwMSBvbmx5IQ</dfrn:env>\n <content type=\"text\">And this post goes to group1 only!</content>\n <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.dev/display/758d682b1459b10f0be17c3206121357\"/>\n <dfrn:comment-allow>1</dfrn:comment-allow>\n <dfrn:private>1</dfrn:private>\n <dfrn:diaspora_guid>758d682b1459b10f0be17c3206121357</d
/* !40000 ALTER TABLE `conversation` ENABLE KEYS */ ;
2015-02-02 21:58:08 +00:00
UNLOCK TABLES ;
--
-- Table structure for table `event`
--
DROP TABLE IF EXISTS ` event ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` event ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` cid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` uri ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` edited ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` start ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` finish ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` summary ` text ,
` desc ` text ,
` location ` text ,
2015-02-02 21:58:08 +00:00
` type ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nofinish ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` adjust ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` ignore ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` allow_cid ` mediumtext ,
` allow_gid ` mediumtext ,
` deny_cid ` mediumtext ,
` deny_gid ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_start ` ( ` uid ` , ` start ` )
) ENGINE = InnoDB AUTO_INCREMENT = 10 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `event`
--
LOCK TABLES ` event ` WRITE ;
/* !40000 ALTER TABLE `event` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` event ` VALUES ( 1 , ' ' , 2 , 14 , ' ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2018-01-01 00:00:00 ' , ' 2018-01-02 00:00:00 ' , ' friendica5\\\ ' s birthday ' , ' Happy Birthday [ url = http : / / friendica . dev / profile / friendica5 ] friendica5 [ / url ] ' ,NULL, ' birthday ' ,0,1,0,NULL,NULL,NULL,NULL),(2, '' ,5,18, '' , ' 2017 - 09 - 07 09 : 16 : 08 ' , ' 2017 - 09 - 07 09 : 16 : 08 ' , ' 2018 - 01 - 01 00 : 00 : 00 ' , ' 2018 - 01 - 02 00 : 00 : 00 ' , ' friendica5 \ \ \ ' s birthday ' , ' Happy Birthday [url=http://friendica.dev/profile/friendica5]friendica5[/url] ' , NULL , ' birthday ' , 0 , 1 , 0 , NULL , NULL , NULL , NULL ) , ( 3 , ' ' , 2 , 8 , ' ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:42 ' , ' 2018-01-01 00:00:00 ' , ' 2018-01-02 00:00:00 ' , ' friendica2\\\ ' s birthday ' , ' Happy Birthday [ url = http : / / friendica . dev / profile / friendica2 ] friendica2 [ / url ] ' ,NULL, ' birthday ' ,0,1,0,NULL,NULL,NULL,NULL),(4, '' ,4,15, '' , ' 2017 - 09 - 07 09 : 16 : 42 ' , ' 2017 - 09 - 07 09 : 16 : 42 ' , ' 2018 - 01 - 01 00 : 00 : 00 ' , ' 2018 - 01 - 02 00 : 00 : 00 ' , ' friendica2 \ \ \ ' s birthday ' , ' Happy Birthday [url=http://friendica.dev/profile/friendica2]friendica2[/url] ' , NULL , ' birthday ' , 0 , 1 , 0 , NULL , NULL , NULL , NULL ) , ( 5 , ' ' , 4 , 9 , ' ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:17:49 ' , ' 2018-01-01 00:00:00 ' , ' 2018-01-02 00:00:00 ' , ' friendica1\\\ ' s birthday ' , ' Happy Birthday [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] ' ,NULL, ' birthday ' ,0,1,0,NULL,NULL,NULL,NULL),(6, '' ,6,13, '' , ' 2017 - 09 - 07 09 : 17 : 49 ' , ' 2017 - 09 - 07 09 : 17 : 49 ' , ' 2018 - 01 - 01 00 : 00 : 00 ' , ' 2018 - 01 - 02 00 : 00 : 00 ' , ' friendica1 \ \ \ ' s birthday ' , ' Happy Birthday [url=http://friendica.dev/profile/friendica1]friendica1[/url] ' , NULL , ' birthday ' , 0 , 1 , 0 , NULL , NULL , NULL , NULL ) , ( 7 , ' ' , 2 , 10 , ' ' , ' 2017-09-07 09:18:24 ' , ' 2017-09-07 09:18:24 ' , ' 2018-01-01 00:00:00 ' , ' 2018-01-02 00:00:00 ' , ' friendica3\\\ ' s birthday ' , ' Happy Birthday [ url = http : / / friendica . dev / profile / friendica3 ] friendica3 [ / url ] ' ,NULL, ' birthday ' ,0,1,0,NULL,NULL,NULL,NULL),(8, '' ,3,7, '' , ' 2017 - 09 - 07 09 : 19 : 08 ' , ' 2017 - 09 - 07 09 : 19 : 08 ' , ' 2018 - 01 - 01 00 : 00 : 00 ' , ' 2018 - 01 - 02 00 : 00 : 00 ' , ' friendica1 \ \ \ ' s birthday ' , ' Happy Birthday [url=http://friendica.dev/profile/friendica1]friendica1[/url] ' , NULL , ' birthday ' , 0 , 1 , 0 , NULL , NULL , NULL , NULL ) , ( 9 , ' ' , 5 , 11 , ' ' , ' 2017-09-07 09:19:08 ' , ' 2017-09-07 09:19:08 ' , ' 2018-01-01 00:00:00 ' , ' 2018-01-02 00:00:00 ' , ' friendica1\\\ ' s birthday ' , ' Happy Birthday [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] ' ,NULL, ' birthday ' ,0,1,0,NULL,NULL,NULL,NULL);
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `event` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `fcontact`
--
DROP TABLE IF EXISTS ` fcontact ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` fcontact ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` request ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nick ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` addr ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` batch ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` notify ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` poll ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` confirm ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` priority ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` network ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` alias ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` pubkey ` text ,
2017-04-11 21:00:45 +00:00
` updated ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` url ` ( ` url ` ( 190 ) ) ,
KEY ` addr ` ( ` addr ` ( 32 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `fcontact`
--
LOCK TABLES ` fcontact ` WRITE ;
/* !40000 ALTER TABLE `fcontact` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `fcontact` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `ffinder`
--
DROP TABLE IF EXISTS ` ffinder ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` ffinder ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` cid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` fid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `ffinder`
--
LOCK TABLES ` ffinder ` WRITE ;
/* !40000 ALTER TABLE `ffinder` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `ffinder` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `fserver`
--
DROP TABLE IF EXISTS ` fserver ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` fserver ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` server ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` posturl ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` key ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` server ` ( ` server ` ( 32 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `fserver`
--
LOCK TABLES ` fserver ` WRITE ;
/* !40000 ALTER TABLE `fserver` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `fserver` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `fsuggest`
--
DROP TABLE IF EXISTS ` fsuggest ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` fsuggest ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` cid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` request ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` note ` text ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `fsuggest`
--
LOCK TABLES ` fsuggest ` WRITE ;
/* !40000 ALTER TABLE `fsuggest` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `fsuggest` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `gcign`
--
DROP TABLE IF EXISTS ` gcign ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` gcign ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` gcid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` ) ,
KEY ` gcid ` ( ` gcid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `gcign`
--
LOCK TABLES ` gcign ` WRITE ;
/* !40000 ALTER TABLE `gcign` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `gcign` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `gcontact`
--
DROP TABLE IF EXISTS ` gcontact ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` gcontact ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` nick ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nurl ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` connect ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-04-11 21:00:45 +00:00
` updated ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` last_contact ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
` last_failure ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` location ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` about ` text ,
` keywords ` text ,
2015-02-02 21:58:08 +00:00
` gender ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` birthday ` varchar ( 32 ) NOT NULL DEFAULT ' 0001-01-01 ' ,
` community ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` contact - type ` tinyint ( 1 ) NOT NULL DEFAULT ' -1 ' ,
` hide ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` nsfw ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` network ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` addr ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` notify ` text ,
` alias ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` generation ` tinyint ( 3 ) NOT NULL DEFAULT ' 0 ' ,
` server_url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` nurl ` ( ` nurl ` ( 190 ) ) ,
KEY ` name ` ( ` name ` ( 64 ) ) ,
KEY ` nick ` ( ` nick ` ( 32 ) ) ,
KEY ` addr ` ( ` addr ` ( 64 ) ) ,
KEY ` hide_network_updated ` ( ` hide ` , ` network ` ( 4 ) , ` updated ` ) ,
KEY ` updated ` ( ` updated ` )
) ENGINE = InnoDB AUTO_INCREMENT = 6 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `gcontact`
--
LOCK TABLES ` gcontact ` WRITE ;
/* !40000 ALTER TABLE `gcontact` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` gcontact ` VALUES ( 1 , ' friendica1 ' , ' friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/photo/profile/2.jpg ' , ' friendica1@friendica.dev ' , ' 2017-09-07 09:02:27 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:02:28 ' , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , ' ' , ' 0001-01-01 ' , 0 , - 1 , 1 , 0 , ' dfrn ' , ' friendica1@friendica.dev ' , ' http://friendica.dev/dfrn_notify/friendica1 ' , ' ' , 1 , ' http://friendica.dev ' ) , ( 2 , ' friendica2 ' , ' friendica2 ' , ' http://friendica.dev/profile/friendica2 ' , ' http://friendica.dev/profile/friendica2 ' , ' http://friendica.dev/photo/profile/3.jpg ' , ' friendica2@friendica.dev ' , ' 2017-09-07 09:06:02 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:06:02 ' , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , ' ' , ' 0001-01-01 ' , 0 , - 1 , 1 , 0 , ' dfrn ' , ' friendica2@friendica.dev ' , ' http://friendica.dev/dfrn_notify/friendica2 ' , ' ' , 1 , ' http://friendica.dev ' ) , ( 3 , ' friendica3 ' , ' friendica3 ' , ' http://friendica.dev/profile/friendica3 ' , ' http://friendica.dev/profile/friendica3 ' , ' http://friendica.dev/photo/profile/4.jpg ' , ' friendica3@friendica.dev ' , ' 2017-09-07 09:09:50 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:09:50 ' , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , ' ' , ' 0001-01-01 ' , 0 , - 1 , 1 , 0 , ' dfrn ' , ' friendica3@friendica.dev ' , ' http://friendica.dev/dfrn_notify/friendica3 ' , ' ' , 1 , ' http://friendica.dev ' ) , ( 4 , ' friendica4 ' , ' friendica4 ' , ' http://friendica.dev/profile/friendica4 ' , ' http://friendica.dev/profile/friendica4 ' , ' http://friendica.dev/photo/profile/5.jpg ' , ' friendica4@friendica.dev ' , ' 2017-09-07 09:11:41 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:11:41 ' , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , ' ' , ' 0001-01-01 ' , 0 , - 1 , 1 , 0 , ' dfrn ' , ' friendica4@friendica.dev ' , ' http://friendica.dev/dfrn_notify/friendica4 ' , ' ' , 1 , ' http://friendica.dev ' ) , ( 5 , ' friendica5 ' , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/profile/6.jpg ' , ' friendica5@friendica.dev ' , ' 2017-09-07 09:13:25 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:13:25 ' , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , ' ' , ' 0001-01-01 ' , 0 , - 1 , 1 , 0 , ' dfrn ' , ' friendica5@friendica.dev ' , ' http://friendica.dev/dfrn_notify/friendica5 ' , ' ' , 1 , ' http://friendica.dev ' ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `gcontact` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `glink`
--
DROP TABLE IF EXISTS ` glink ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` glink ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` cid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` gcid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` zcid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` updated ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` cid_uid_gcid_zcid ` ( ` cid ` , ` uid ` , ` gcid ` , ` zcid ` ) ,
KEY ` gcid ` ( ` gcid ` )
) ENGINE = InnoDB AUTO_INCREMENT = 10 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `glink`
--
LOCK TABLES ` glink ` WRITE ;
/* !40000 ALTER TABLE `glink` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` glink ` VALUES ( 1 , 14 , 2 , 5 , 0 , ' 2017-09-07 09:16:08 ' ) , ( 2 , 18 , 5 , 5 , 0 , ' 2017-09-07 09:16:09 ' ) , ( 3 , 8 , 2 , 2 , 0 , ' 2017-09-07 09:19:28 ' ) , ( 4 , 15 , 4 , 2 , 0 , ' 2017-09-07 09:16:42 ' ) , ( 5 , 9 , 4 , 1 , 0 , ' 2017-09-07 09:18:24 ' ) , ( 6 , 13 , 6 , 1 , 0 , ' 2017-09-07 09:18:24 ' ) , ( 7 , 10 , 2 , 3 , 0 , ' 2017-09-07 09:18:24 ' ) , ( 8 , 7 , 3 , 1 , 0 , ' 2017-09-07 09:19:28 ' ) , ( 9 , 11 , 5 , 1 , 0 , ' 2017-09-07 09:19:28 ' ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `glink` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `group`
--
DROP TABLE IF EXISTS ` group ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` group ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` visible ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` deleted ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 9 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `group`
--
LOCK TABLES ` group ` WRITE ;
/* !40000 ALTER TABLE `group` DISABLE KEYS */ ;
INSERT INTO ` group ` VALUES ( 1 , 1 , 0 , 0 , ' Friends ' ) , ( 2 , 2 , 0 , 0 , ' Friends ' ) , ( 3 , 3 , 0 , 0 , ' Friends ' ) , ( 4 , 4 , 0 , 0 , ' Friends ' ) , ( 5 , 5 , 0 , 0 , ' Friends ' ) , ( 6 , 6 , 0 , 0 , ' Friends ' ) , ( 7 , 2 , 0 , 0 , ' group1 ' ) , ( 8 , 2 , 0 , 0 , ' group2 ' ) ;
/* !40000 ALTER TABLE `group` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `group_member`
--
DROP TABLE IF EXISTS ` group_member ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` group_member ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` gid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` contact - id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` uid_gid_contactid ` ( ` uid ` , ` gid ` , ` contact - id ` ) ,
KEY ` contactid ` ( ` contact - id ` ) ,
KEY ` gid_contactid ` ( ` gid ` , ` contact - id ` )
) ENGINE = InnoDB AUTO_INCREMENT = 18 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `group_member`
--
LOCK TABLES ` group_member ` WRITE ;
/* !40000 ALTER TABLE `group_member` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` group_member ` VALUES ( 1 , 2 , 2 , 8 ) , ( 2 , 2 , 2 , 10 ) , ( 3 , 2 , 2 , 12 ) , ( 4 , 2 , 2 , 14 ) , ( 13 , 2 , 7 , 8 ) , ( 14 , 2 , 7 , 12 ) , ( 16 , 2 , 8 , 10 ) , ( 17 , 2 , 8 , 14 ) , ( 5 , 3 , 3 , 7 ) , ( 6 , 3 , 3 , 16 ) , ( 7 , 4 , 4 , 9 ) , ( 8 , 4 , 4 , 15 ) , ( 9 , 5 , 5 , 11 ) , ( 10 , 5 , 5 , 18 ) , ( 11 , 6 , 6 , 13 ) , ( 12 , 6 , 6 , 17 ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `group_member` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
2017-09-07 09:28:08 +00:00
-- Table structure for table `gserver`
2015-02-02 21:58:08 +00:00
--
2017-09-07 09:28:08 +00:00
DROP TABLE IF EXISTS ` gserver ` ;
2015-02-02 21:58:08 +00:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` gserver ` (
2015-02-02 21:58:08 +00:00
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nurl ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` version ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` site_name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` info ` text ,
` register_policy ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` poco ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` noscrape ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` network ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` platform ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` last_poco_query ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
` last_contact ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
` last_failure ` datetime DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` nurl ` ( ` nurl ` ( 190 ) )
) ENGINE = InnoDB AUTO_INCREMENT = 2 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
2017-09-07 09:28:08 +00:00
-- Dumping data for table `gserver`
2015-02-02 21:58:08 +00:00
--
2017-09-07 09:28:08 +00:00
LOCK TABLES ` gserver ` WRITE ;
/* !40000 ALTER TABLE `gserver` DISABLE KEYS */ ;
INSERT INTO ` gserver ` VALUES ( 1 , ' http://friendica.dev ' , ' http://friendica.dev ' , ' 3.5.3-dev ' , ' My Friend Network ' , ' ' , 2 , ' ' , ' http://friendica.dev/noscrape ' , ' dfrn ' , ' Friendica ' , ' 2017-09-07 09:02:27 ' , ' 0001-01-01 00:00:00 ' , ' 2017-09-07 09:13:25 ' , ' 0001-01-01 00:00:00 ' ) ;
/* !40000 ALTER TABLE `gserver` ENABLE KEYS */ ;
2015-02-02 21:58:08 +00:00
UNLOCK TABLES ;
--
-- Table structure for table `hook`
--
DROP TABLE IF EXISTS ` hook ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` hook ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` hook ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` file ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` function ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` priority ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` hook_file_function ` ( ` hook ` ( 50 ) , ` file ` ( 80 ) , ` function ` ( 60 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `hook`
--
LOCK TABLES ` hook ` WRITE ;
/* !40000 ALTER TABLE `hook` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `hook` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `intro`
--
DROP TABLE IF EXISTS ` intro ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` intro ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` fid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` contact - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` knowyou ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` duplex ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` note ` text ,
2015-02-02 21:58:08 +00:00
` hash ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` datetime ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` blocked ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` ignore ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` )
2017-09-07 09:28:08 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `intro`
--
LOCK TABLES ` intro ` WRITE ;
/* !40000 ALTER TABLE `intro` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `intro` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `item`
--
DROP TABLE IF EXISTS ` item ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` item ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` uri ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` contact - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` gcontact - id ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` type ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` wall ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` gravity ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` parent ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` parent - uri ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` extid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` thr - parent ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` edited ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` commented ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` received ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` changed ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` owner - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` owner - name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` owner - link ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` owner - avatar ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` author - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` author - name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` author - link ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` author - avatar ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` title ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` body ` mediumtext ,
2015-02-02 21:58:08 +00:00
` app ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` verb ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` object - type ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` object ` text ,
2015-02-02 21:58:08 +00:00
` target - type ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` target ` text ,
` postopts ` text ,
2015-02-02 21:58:08 +00:00
` plink ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` resource - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` event - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` tag ` mediumtext ,
` attach ` mediumtext ,
` inform ` mediumtext ,
` file ` mediumtext ,
2015-02-02 21:58:08 +00:00
` location ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` coord ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` allow_cid ` mediumtext ,
` allow_gid ` mediumtext ,
` deny_cid ` mediumtext ,
` deny_gid ` mediumtext ,
2015-02-02 21:58:08 +00:00
` private ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` pubmail ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` moderated ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` visible ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` spam ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` starred ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` bookmark ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` unseen ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` deleted ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` origin ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` forum_mode ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` last - child ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` mention ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` network ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` rendered - hash ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` rendered - html ` mediumtext ,
` global ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` guid ` ( ` guid ` ( 191 ) ) ,
KEY ` uri ` ( ` uri ` ( 191 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` parent ` ( ` parent ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` parent - uri ` ( ` parent - uri ` ( 191 ) ) ,
KEY ` extid ` ( ` extid ` ( 191 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` uid_id ` ( ` uid ` , ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_contactid_id ` ( ` uid ` , ` contact - id ` , ` id ` ) ,
2015-02-02 21:58:08 +00:00
KEY ` uid_created ` ( ` uid ` , ` created ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_unseen_contactid ` ( ` uid ` , ` unseen ` , ` contact - id ` ) ,
KEY ` uid_network_received ` ( ` uid ` , ` network ` ( 4 ) , ` received ` ) ,
KEY ` uid_network_commented ` ( ` uid ` , ` network ` ( 4 ) , ` commented ` ) ,
KEY ` uid_thrparent ` ( ` uid ` , ` thr - parent ` ( 190 ) ) ,
KEY ` uid_parenturi ` ( ` uid ` , ` parent - uri ` ( 190 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` uid_contactid_created ` ( ` uid ` , ` contact - id ` , ` created ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` authorid_created ` ( ` author - id ` , ` created ` ) ,
KEY ` ownerid ` ( ` owner - id ` ) ,
KEY ` uid_uri ` ( ` uid ` , ` uri ` ( 190 ) ) ,
KEY ` resource - id ` ( ` resource - id ` ( 191 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` contactid_allowcid_allowpid_denycid_denygid ` ( ` contact - id ` , ` allow_cid ` ( 10 ) , ` allow_gid ` ( 10 ) , ` deny_cid ` ( 10 ) , ` deny_gid ` ( 10 ) ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_type_changed ` ( ` uid ` , ` type ` ( 190 ) , ` changed ` ) ,
KEY ` contactid_verb ` ( ` contact - id ` , ` verb ` ( 190 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` deleted_changed ` ( ` deleted ` , ` changed ` ) ,
KEY ` uid_wall_changed ` ( ` uid ` , ` wall ` , ` changed ` ) ,
KEY ` uid_eventid ` ( ` uid ` , ` event - id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_authorlink ` ( ` uid ` , ` author - link ` ( 190 ) ) ,
KEY ` uid_ownerlink ` ( ` uid ` , ` owner - link ` ( 190 ) )
) ENGINE = InnoDB AUTO_INCREMENT = 21 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item`
--
LOCK TABLES ` item ` WRITE ;
/* !40000 ALTER TABLE `item` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` item ` VALUES ( 1 , ' 758d682b1559b10e589ca69032940355 ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , 6 , 6 , 5 , ' wall ' , 1 , 0 , 1 , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/avatar/6.jpg ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/avatar/6.jpg ' , ' ' , ' Hi, my name is friendica5, I am new here! ' , ' ' , ' http://activitystrea.ms/schema/1.0/post ' , ' http://activitystrea.ms/schema/1.0/note ' , ' ' , ' ' , NULL , ' lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667 ' , ' http://friendica.dev/display/758d682b1559b10e589ca69032940355 ' , ' ' , 0 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , ' dfrn ' , ' f6e9f0ecd605b649f4bb2f9025ef7132 ' , ' Hi, my name is friendica5, I am new here! ' , 1 ) , ( 2 , ' 758d682b1559b10e589ca69032940355 ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , 0 , 19 , 5 , ' remote ' , 0 , 0 , 2 , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/avatar/6.jpg ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/avatar/6.jpg ' , ' ' , ' Hi, my name is friendica5, I am new here! ' , ' ' , ' http://activitystrea.ms/schema/1.0/post ' , ' http://activitystrea.ms/schema/1.0/note ' , ' ' , ' ' , ' ' , ' lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667 ' , ' http://friendica.dev/display/758d682b1559b10e589ca69032940355 ' , ' ' , 0 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , ' dfrn ' , ' f6e9f0ecd605b649f4bb2f9025ef7132 ' , ' Hi, my name is friendica5, I am new here! ' , 1 ) , ( 3 , ' 758d682b1559b10e589ca69032940355 ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , 2 , 14 , 5 , ' remote ' , 0 , 0 , 3 , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/profile/6.jpg ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/profile/6.jpg ' , ' ' , ' Hi, my name is friendica5, I am new here! ' , ' ' , ' http://activitystrea.ms/schema/1.0/post ' , ' http://activitystrea.ms/schema/1.0/note ' , ' ' , ' ' , ' ' , ' lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667 ' , ' http://friendica.dev/display/758d682b1559b10e589ca69032940355 ' , ' ' , 0 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , ' dfrn ' , ' f6e9f0ecd605b649f4bb2f9025ef7132 ' , ' Hi, my name is friendica5, I am new here! ' , 1 ) , ( 4 , ' 758d682b1559b10e589ca69032940355 ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , 5 , 18 , 5 , ' remote ' , 0 , 0 , 4 , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' ' , ' urn:X-dfrn:friendica.dev:6:758d682b1559b10e589ca69032940355 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:09 ' , ' 2017-09-07 09:16:09 ' , ' 2017-09-07 09:16:09 ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/profile/6.jpg ' , 19 , ' friendica5 ' , ' http://friendica.dev/profile/friendica5 ' , ' http://friendica.dev/photo/profile/6.jpg ' , ' ' , ' Hi, my name is friendica5, I am new here! ' , ' ' , ' http://activitystrea.ms/schema/1.0/post ' , ' http://activitystrea.ms/schema/1.0/note ' , ' ' , ' ' , ' ' , ' lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667 ' , ' http://friendica.dev/display/758d682b1559b10e589ca69032940355 ' , ' ' , 0 , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , 0 , ' dfrn ' , ' f6e9f0ecd605b649f4bb2f9025ef7132 ' , ' Hi, my name is friendica5, I am new here! ' , 1 ) , ( 5 , ' 758d682b1359b10e79d3f8f310513025 ' , ' urn:X-dfrn:friendica.dev:3:758d682b
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `item` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `item_id`
--
DROP TABLE IF EXISTS ` item_id ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` item_id ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` iid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` sid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` service ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` sid ` ( ` sid ` ( 191 ) ) ,
KEY ` service ` ( ` service ` ( 32 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` iid ` ( ` iid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_id`
--
LOCK TABLES ` item_id ` WRITE ;
/* !40000 ALTER TABLE `item_id` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_id` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `locks`
--
DROP TABLE IF EXISTS ` locks ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` locks ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` name ` varchar ( 128 ) NOT NULL DEFAULT ' ' ,
` locked ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` pid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `locks`
--
LOCK TABLES ` locks ` WRITE ;
/* !40000 ALTER TABLE `locks` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `locks` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `mail`
--
DROP TABLE IF EXISTS ` mail ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` mail ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` from - name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` from - photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` from - url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` contact - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` convid ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` title ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` body ` mediumtext ,
2015-02-02 21:58:08 +00:00
` seen ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` reply ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` replied ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` unknown ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` uri ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` parent - uri ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_seen ` ( ` uid ` , ` seen ` ) ,
2015-02-02 21:58:08 +00:00
KEY ` convid ` ( ` convid ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uri ` ( ` uri ` ( 64 ) ) ,
KEY ` parent - uri ` ( ` parent - uri ` ( 64 ) ) ,
KEY ` contactid ` ( ` contact - id ` ( 191 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `mail`
--
LOCK TABLES ` mail ` WRITE ;
/* !40000 ALTER TABLE `mail` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `mail` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `mailacct`
--
DROP TABLE IF EXISTS ` mailacct ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` mailacct ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` server ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` port ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` ssltype ` varchar ( 16 ) NOT NULL DEFAULT ' ' ,
` mailbox ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` user ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` pass ` text ,
2015-02-02 21:58:08 +00:00
` reply_to ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` action ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` movetofolder ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` pubmail ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` last_check ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `mailacct`
--
LOCK TABLES ` mailacct ` WRITE ;
/* !40000 ALTER TABLE `mailacct` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `mailacct` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `manage`
--
DROP TABLE IF EXISTS ` manage ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` manage ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` mid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` uid_mid ` ( ` uid ` , ` mid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `manage`
--
LOCK TABLES ` manage ` WRITE ;
/* !40000 ALTER TABLE `manage` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `manage` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `notify`
--
DROP TABLE IF EXISTS ` notify ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` notify ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` hash ` varchar ( 64 ) NOT NULL DEFAULT ' ' ,
` type ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` msg ` mediumtext ,
2015-02-02 21:58:08 +00:00
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` link ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` iid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` parent ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` seen ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` verb ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` otype ` varchar ( 16 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` name_cache ` tinytext ,
` msg_cache ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` hash_uid ` ( ` hash ` , ` uid ` ) ,
KEY ` seen_uid_date ` ( ` seen ` , ` uid ` , ` date ` ) ,
KEY ` uid_date ` ( ` uid ` , ` date ` ) ,
KEY ` uid_type_link ` ( ` uid ` , ` type ` , ` link ` ( 190 ) )
) ENGINE = InnoDB AUTO_INCREMENT = 15 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `notify`
--
LOCK TABLES ` notify ` WRITE ;
/* !40000 ALTER TABLE `notify` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` notify ` VALUES ( 1 , ' 8b9091886bbc8ede3fd0759c41eb855ed76ed1a4840dc75851e6a311f929bfcf ' , 1 , ' friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/photo/18a7495723879503dac64b352e245508-4.jpg?ts=1504775047 ' , ' 2017-09-07 09:04:08 ' , ' You\ ' ve received [ url = ] an introduction [ / url ] from [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] . ' ,3, ' http : / / friendica . dev / notifications / intros ' ,0,0,0, ' http : / / activitystrea . ms / schema / 1 . 0 / request - friend ' , ' intro ' , ' friendica1 ' , ' You \ ' ve received an introduction from {0}. ' ) , ( 2 , ' 0185ee6a3b89d4f753fa981223fb1c625ac77889c888286fefdb4b8bae4a7e46 ' , 1 , ' friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/photo/adef541d0f334352940ad40251e15158-4.jpg?ts=1504775078 ' , ' 2017-09-07 09:04:38 ' , ' You\ ' ve received [ url = ] an introduction [ / url ] from [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] . ' ,4, ' http : / / friendica . dev / notifications / intros ' ,0,0,0, ' http : / / activitystrea . ms / schema / 1 . 0 / request - friend ' , ' intro ' , ' friendica1 ' , ' You \ ' ve received an introduction from {0}. ' ) , ( 3 , ' 3f85ccadc16c9dfbd8cf3e224632a008a95bda2aea4608ff1a64ca8771e3bb5d ' , 1 , ' friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/photo/01ebf2eb957e5aef5463ba5ae6510ef5-4.jpg?ts=1504775093 ' , ' 2017-09-07 09:04:53 ' , ' You\ ' ve received [ url = ] an introduction [ / url ] from [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] . ' ,5, ' http : / / friendica . dev / notifications / intros ' ,0,0,0, ' http : / / activitystrea . ms / schema / 1 . 0 / request - friend ' , ' intro ' , ' friendica1 ' , ' You \ ' ve received an introduction from {0}. ' ) , ( 4 , ' 8403fa566bec0ae4c56d639aeb46e907451725f3f3288c1dd77e9c3ec8de6477 ' , 1 , ' friendica1 ' , ' http://friendica.dev/profile/friendica1 ' , ' http://friendica.dev/photo/f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108 ' , ' 2017-09-07 09:05:09 ' , ' You\ ' ve received [ url = ] an introduction [ / url ] from [ url = http : / / friendica . dev / profile / friendica1 ] friendica1 [ / url ] . ' ,6, ' http : / / friendica . dev / notifications / intros ' ,0,0,0, ' http : / / activitystrea . ms / schema / 1 . 0 / request - friend ' , ' intro ' , ' friendica1 ' , ' You \ ' ve received an introduction from {0}. ' ) , ( 5 , ' a4ed1cf044ad062c2b4215bf1a3e3974df4dae11c20a966a25f962dde1c769f0 ' , 2 , ' friendica2 ' , ' http://friendica.dev/profile/friendica2 ' , ' http://friendica.dev/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-4.jpg?ts=1504775178 ' , ' 2017-09-07 09:06:18 ' , ' [url=http://friendica.dev/profile/friendica2]friendica2[/url] has accepted your [url=]connection request[/url]. ' , 2 , ' http://friendica.dev/contacts/8 ' , 0 , 0 , 1 , ' http://activitystrea.ms/schema/1.0/make-friend ' , ' intro ' , ' friendica2 ' , ' {0} has accepted your connection request. ' ) , ( 6 , ' 7adb52b4277d2ed6bba91b37dd1339b2f9d3fd91235170568d64101e89e96292 ' , 1 , ' friendica2 ' , ' http://friendica.dev/profile/friendica2 ' , ' http://friendica.dev/photo/22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775234 ' , ' 2017-09-07 09:07:14 ' , ' You\ ' ve received [ url = ] an introduction [ / url ] from [ url = http : / / friendica . dev / profile / friendica2 ] friendica2 [ / url ] . ' ,4, ' http : / / friendica . dev / notifications / intros ' ,0,0,0, ' http : / / activitystrea . ms / schema / 1 . 0 / request - friend ' , ' intro ' , ' friendica2 ' , ' You \ ' ve received an introduction from {0}. ' ) , ( 7 , ' f6d4c03380e095b388c5980deb0e0ac7b3602781bf93d728d89b63819943e7c6 ' , 2 , ' friendica3 ' , ' http://friendica.dev/profile/friendica3 ' , ' http://friendica.dev/photo/01ff45af20fe4c6fb230e6fc773f3ef8-4.jpg?ts=1504775360 ' , ' 2017-09-07 09:09:20 ' , ' [url=http://friendica.dev/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url]. ' , 2 , ' http://friendica.dev/contacts/10 ' , 0 , 0 , 1 , ' http://activitystrea.ms/schema/1.0/make-friend ' , ' intro ' , ' friendica3 ' , ' {0} has accepted your connection request. ' ) , ( 8 , ' f0dab05c5fbbc4e332289bca702c1ee568e6eb1600ce06a8930246403bd7fa1f ' , 2 , ' friendica3 ' , ' http://friendica.dev/profile/friendica3 ' , ' http://friendica.dev/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775369 ' , ' 2017-09-07 09:09:29 ' , ' [url=http://friendica.dev/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url]. ' , 3 , ' http://friendica.dev/contacts/16 ' , 0 , 0 , 1 , ' http://activitystrea.ms/schema/1.0/make-friend ' , ' intro ' , ' friendica3 ' , ' {0} has accepted y
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `notify` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `notify-threads`
--
DROP TABLE IF EXISTS ` notify - threads ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` notify - threads ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` notify - id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` master - parent - item ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` parent - item ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` receiver - uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 3 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `notify-threads`
--
LOCK TABLES ` notify - threads ` WRITE ;
/* !40000 ALTER TABLE `notify-threads` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` notify - threads ` VALUES ( 1 , 13 , 9 , 0 , 2 ) , ( 2 , 14 , 15 , 0 , 2 ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `notify-threads` ENABLE KEYS */ ;
UNLOCK TABLES ;
2017-09-07 09:28:08 +00:00
--
-- Table structure for table `oembed`
--
DROP TABLE IF EXISTS ` oembed ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` oembed ` (
` url ` varbinary ( 255 ) NOT NULL ,
` content ` mediumtext ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
PRIMARY KEY ( ` url ` ) ,
KEY ` created ` ( ` created ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `oembed`
--
LOCK TABLES ` oembed ` WRITE ;
/* !40000 ALTER TABLE `oembed` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `oembed` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `parsed_url`
--
DROP TABLE IF EXISTS ` parsed_url ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` parsed_url ` (
` url ` varbinary ( 255 ) NOT NULL ,
` guessing ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` oembed ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` content ` mediumtext ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
PRIMARY KEY ( ` url ` , ` guessing ` , ` oembed ` ) ,
KEY ` created ` ( ` created ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `parsed_url`
--
LOCK TABLES ` parsed_url ` WRITE ;
/* !40000 ALTER TABLE `parsed_url` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `parsed_url` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-02-02 21:58:08 +00:00
--
-- Table structure for table `pconfig`
--
DROP TABLE IF EXISTS ` pconfig ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` pconfig ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` cat ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` k ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` v ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` uid_cat_k ` ( ` uid ` , ` cat ` , ` k ` )
) ENGINE = InnoDB AUTO_INCREMENT = 63 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `pconfig`
--
LOCK TABLES ` pconfig ` WRITE ;
/* !40000 ALTER TABLE `pconfig` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` pconfig ` VALUES ( 1 , 2 , ' network.view ' , ' group.selected ' , ' 0 ' ) , ( 2 , 2 , ' network.view ' , ' net.selected ' , ' all ' ) , ( 3 , 2 , ' network.view ' , ' tab.selected ' , ' a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";} ' ) , ( 4 , 2 , ' expire ' , ' items ' , ' 1 ' ) , ( 5 , 2 , ' expire ' , ' notes ' , ' 1 ' ) , ( 6 , 2 , ' expire ' , ' starred ' , ' 1 ' ) , ( 7 , 2 , ' expire ' , ' photos ' , ' 0 ' ) , ( 8 , 2 , ' expire ' , ' network_only ' , ' 0 ' ) , ( 9 , 2 , ' system ' , ' suggestme ' , ' 0 ' ) , ( 10 , 2 , ' system ' , ' post_newfriend ' , ' 0 ' ) , ( 11 , 2 , ' system ' , ' post_joingroup ' , ' 0 ' ) , ( 12 , 2 , ' system ' , ' post_profilechange ' , ' 0 ' ) , ( 13 , 2 , ' system ' , ' email_textonly ' , ' 0 ' ) , ( 14 , 3 , ' expire ' , ' items ' , ' 1 ' ) , ( 15 , 3 , ' expire ' , ' notes ' , ' 1 ' ) , ( 16 , 3 , ' expire ' , ' starred ' , ' 1 ' ) , ( 17 , 3 , ' expire ' , ' photos ' , ' 0 ' ) , ( 18 , 3 , ' expire ' , ' network_only ' , ' 0 ' ) , ( 19 , 3 , ' system ' , ' suggestme ' , ' 0 ' ) , ( 20 , 3 , ' system ' , ' post_newfriend ' , ' 0 ' ) , ( 21 , 3 , ' system ' , ' post_joingroup ' , ' 0 ' ) , ( 22 , 3 , ' system ' , ' post_profilechange ' , ' 0 ' ) , ( 23 , 3 , ' system ' , ' email_textonly ' , ' 0 ' ) , ( 24 , 4 , ' expire ' , ' items ' , ' 1 ' ) , ( 25 , 4 , ' expire ' , ' notes ' , ' 1 ' ) , ( 26 , 4 , ' expire ' , ' starred ' , ' 1 ' ) , ( 27 , 4 , ' expire ' , ' photos ' , ' 0 ' ) , ( 28 , 4 , ' expire ' , ' network_only ' , ' 0 ' ) , ( 29 , 4 , ' system ' , ' suggestme ' , ' 0 ' ) , ( 30 , 4 , ' system ' , ' post_newfriend ' , ' 0 ' ) , ( 31 , 4 , ' system ' , ' post_joingroup ' , ' 0 ' ) , ( 32 , 4 , ' system ' , ' post_profilechange ' , ' 0 ' ) , ( 33 , 4 , ' system ' , ' email_textonly ' , ' 0 ' ) , ( 34 , 5 , ' expire ' , ' items ' , ' 1 ' ) , ( 35 , 5 , ' expire ' , ' notes ' , ' 1 ' ) , ( 36 , 5 , ' expire ' , ' starred ' , ' 1 ' ) , ( 37 , 5 , ' expire ' , ' photos ' , ' 0 ' ) , ( 38 , 5 , ' expire ' , ' network_only ' , ' 0 ' ) , ( 39 , 5 , ' system ' , ' suggestme ' , ' 0 ' ) , ( 40 , 5 , ' system ' , ' post_newfriend ' , ' 0 ' ) , ( 41 , 5 , ' system ' , ' post_joingroup ' , ' 0 ' ) , ( 42 , 5 , ' system ' , ' post_profilechange ' , ' 0 ' ) , ( 43 , 5 , ' system ' , ' email_textonly ' , ' 0 ' ) , ( 44 , 6 , ' expire ' , ' items ' , ' 1 ' ) , ( 45 , 6 , ' expire ' , ' notes ' , ' 1 ' ) , ( 46 , 6 , ' expire ' , ' starred ' , ' 1 ' ) , ( 47 , 6 , ' expire ' , ' photos ' , ' 0 ' ) , ( 48 , 6 , ' expire ' , ' network_only ' , ' 0 ' ) , ( 49 , 6 , ' system ' , ' suggestme ' , ' 0 ' ) , ( 50 , 6 , ' system ' , ' post_newfriend ' , ' 0 ' ) , ( 51 , 6 , ' system ' , ' post_joingroup ' , ' 0 ' ) , ( 52 , 6 , ' system ' , ' post_profilechange ' , ' 0 ' ) , ( 53 , 6 , ' system ' , ' email_textonly ' , ' 0 ' ) , ( 54 , 4 , ' network.view ' , ' group.selected ' , ' 0 ' ) , ( 55 , 4 , ' network.view ' , ' net.selected ' , ' all ' ) , ( 56 , 4 , ' network.view ' , ' tab.selected ' , ' a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";} ' ) , ( 57 , 3 , ' network.view ' , ' group.selected ' , ' 0 ' ) , ( 58 , 3 , ' network.view ' , ' net.selected ' , ' all ' ) , ( 59 , 3 , ' network.view ' , ' tab.selected ' , ' a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";} ' ) , ( 60 , 1 , ' network.view ' , ' group.selected ' , ' 0 ' ) , ( 61 , 1 , ' network.view ' , ' net.selected ' , ' all ' ) , ( 62 , 1 , ' network.view ' , ' tab.selected ' , ' a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";} ' ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `pconfig` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `photo`
--
DROP TABLE IF EXISTS ` photo ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` photo ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` contact - id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` guid ` varchar ( 64 ) NOT NULL DEFAULT ' ' ,
` resource - id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` edited ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` title ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` desc ` text ,
2015-02-02 21:58:08 +00:00
` album ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` filename ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` type ` varchar ( 128 ) NOT NULL DEFAULT ' image/jpeg ' ,
` height ` smallint ( 6 ) NOT NULL DEFAULT ' 0 ' ,
` width ` smallint ( 6 ) NOT NULL DEFAULT ' 0 ' ,
` datasize ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` data ` mediumblob NOT NULL ,
` scale ` tinyint ( 3 ) NOT NULL DEFAULT ' 0 ' ,
` profile ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` allow_cid ` mediumtext ,
` allow_gid ` mediumtext ,
` deny_cid ` mediumtext ,
` deny_gid ` mediumtext ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` contactid ` ( ` contact - id ` ) ,
KEY ` uid_contactid ` ( ` uid ` , ` contact - id ` ) ,
KEY ` uid_profile ` ( ` uid ` , ` profile ` ) ,
KEY ` uid_album_scale_created ` ( ` uid ` , ` album ` ( 32 ) , ` scale ` , ` created ` ) ,
KEY ` uid_album_resource - id_created ` ( ` uid ` , ` album ` ( 32 ) , ` resource - id ` ( 64 ) , ` created ` ) ,
KEY ` resource - id ` ( ` resource - id ` ( 64 ) )
) ENGINE = InnoDB AUTO_INCREMENT = 82 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `photo`
--
LOCK TABLES ` photo ` WRITE ;
/* !40000 ALTER TABLE `photo` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` photo ` VALUES ( 1 , 1 , 0 , ' 75859b1098e38271 ' , ' 676c41a6030639fa07634741242d99de ' , ' 2017-09-07 08:55:42 ' , ' 2017-09-07 08:55:42 ' , ' ' , ' ' , ' Profile photos ' , ' person-175.jpg ' , ' image/jpeg ' , 175 , 175 , 5476 , ' <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> \0 JFIF\0 \0H\0H\0\0<> <30> Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n<> <6E> \0C\0<01> <> \0 \0<> \0<> \0<> <30> \0 \0 \0 \0 \0\0\0\0\0\0\0\0\0\n <06> <> \0A \0\0 \0\0\0\0\0 !\n 1A \"Q<> 2aq<61> #%3<> <33> <EFBFBD> $&5BR<42> <52> Es<45> <73> <EFBFBD> <EFBFBD> \0 \0\0?\0<> <30> \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն<> <D586> <EFBFBD> <EFBFBD> X g<> <67> <EFBFBD> p|L<> sN<73> <4E> <EFBFBD> <1E> }<7D> Y%ZR|<7C> 1(<28> J*I&+<2B> r$0G<30> <47> <EFBFBD> )%l<> Z<EFBFBD> ,:<3A> <> <EFBFBD> i<EFBFBD> (<28> <> ϥ<EFBFBD> )<29> <> <EFBFBD> J<EFBFBD> <4A> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> *hχ oSмI<D0BC> <49> <EFBFBD> <EFBFBD> $<24> Dj.T<> \n1PȌ<50> 4<EFBFBD> <34> ?<3F> {e<> <65> <EFBFBD> Ӧx<D3A6> )ж }t<> ^x\\~<18> s<EFBFBD> <73> 2<EFBFBD> {<7B> <> <EFBFBD> ml&<17> <> \0<> T2#3<> <33> ږ_<17> ،<EFBFBD> <D88C> ûU<C3BB> Y<EFBFBD> f<> $<24> <> <EFBFBD> 1.<2E> `w<> <77> )rr<72> ǒ<> <C792> $g<> boqd<71> \Z7\"<22> i,<2C> 0g<30> <67> #<23> }<7D> G<EFBFBD> <47> <EFBFBD> !<21> \0\0\0\0\0\0\0 *|z<> B<EFBFBD> <42> 6<> Zp<5A> ]<5D> s\"<22> A<EFBFBD> <41> ڝ\r<> E \r<> <72> {<7B> b<EFBFBD> <1D> Z<EFBFBD> HI<48> <49> j<EFBFBD> <6A> >Eq<45> E<EFBFBD> ˒S.:t<> 7<19> Vg<56> 5<15> u;<3B> <> Ys=<3D> YFZ<46> Rk<52> <6B> }<7D> <> <EFBFBD> <j<> <6A> ʮHnl<6E> <6C> Ifh<66> <68> <EFBFBD> M6& \";M<13> D<EFBFBD> O.<2E> <> <EFBFBD> <EFBFBD> _<EFBFBD> <5F> )Y 1<C28E> \r<> X!M\nm<6E> <6D> y<EFBFBD> Kl<4B> R<07> #<23> k<EFBFBD> M&<26> ^<5E> o |M L}Ij<49> <6A> <EFBFBD> O<EFBFBD> <4F> D><3E> <> OJ<4F> <4A> \Z<1C> m<EFBFBD> <0E> i<EFBFBD> <69> v2<76> <32> r<EFBFBD> VӍB<D38D> l[<5B> rd<72> <64> D<EFBFBD> ; k<> )^<5E> 2-gQ~ E SA<53> j<EFBFBD> ƴ S<> <53> <<3C> <> <EFBFBD> 0\0\0\0\0\0\0\0 v<> Sę<53> <C499> ><3E> \' 9 <EFBFBD> <EFBFBD> خ <EFBFBD> <EFBFBD> 豆 <EFBFBD> 8 $ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> U <EFBFBD> <EFBFBD> Y ) <EFBFBD> O <EFBFBD> & DH ] 6 B <EFBFBD> & <EFBFBD> KMeN <EFBFBD> D <EFBFBD> SL <EFBFBD> 8 <EFBFBD> d <EFBFBD> <EFBFBD> #z<> <7A> 9<EFBFBD> ۔ <EFBFBD> g,<2C> ܮ<EFBFBD> <DCAE> G w<> 7GggU)F<> ]Es<45> i-<2D> <> D Rd<52> {-<2D> <> e<> |jw<14> K P<> <50> <EFBFBD> 䗴[<5B> <<3C> PU<50> &<26> Jw<4A> <77> <EFBFBD> iU4<55> L<EFBFBD> <4C> \Zno5i)i<> <69> <EFBFBD> <18> ud<75> :d.-<2D> n<EFBFBD> <6E> <EFBFBD> =9<> tр <74> <D180> Z!<21> kj<6B> /<2F> Z<EFBFBD> <5A> <EFBFBD> rL<72> S<D7B9> <53> d<EFBFBD> ]<5D> Wg<57> \Z<> <5A> M(R<> <52> <EFBFBD> %<25> #<15> <> <EFBFBD> <EFBFBD> <EFBFBD> F<EFBFBD> <46> ʧJZT}<7D> <> $<24> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <7F> |<7C> <> <EFBFBD> <EFBFBD> 7<EFBFBD> <37> <EFBFBD> <EFBFBD> u<EFBFBD> ç(\' I<> ]_<> <5F> <EFBFBD> <EFBFBD> /<05> Yk1<6B> S<05> <> <EFBFBD> Q<EFBFBD> <51> \"<22> x<EFBFBD> <Q<> e\'e<> <65> 9$<24> <> <EFBFBD> <EFBFBD> 9YQZ̏D<CC8F> <44> m<EFBFBD> _<EFBFBD> ֖<EFBFBD> <D696> <EFBFBD> <EFBFBD> n<EFBFBD> ;p{:=a<> <61> <EFBFBD> <EFBFBD> <EFBFBD> c<EFBFBD> <63> ^<14> 1H<31> <48> <EFBFBD> [ J#;<3B> <> u\'b<12> <> <EFBFBD> <EFBFBD> <EFBFBD> C<EFBFBD> NX<4E> <58> tהQ<D794> <51> ;M7I<37> <13> ڔ+-ì<> G<EFBFBD> <47> bƺ<62> <C6BA> M<0B> S<EFBFBD> nC&<26> s<19> UHˑ=J<> W<EFBFBD> <57> <EFBFBD> O_<4F> .<2E> c<EFBFBD> \0\0\0\0\0<02> ><3E> f<EFBFBD> \\r<> <72> <EFBFBD> Z\\kp<6B> q Ҿ.oU<6F> u<EFBFBD> <75> <EFBFBD> <05> <> <EFBFBD> Z<EFBFBD> n<> <6E> <EFBFBD> )<29> <> <EFBFBD> <EFBFBD> X<EFBFBD> Fd<46> <64> 5 Q 1e<31> c<EFBFBD> @<40> <> <EFBFBD> J<13> {LX(<28> GԽ<47> <D4BD> 3 \\<5C> [<5B> <> <EFBFBD> a,|<7C> M.<2E> kQ<6B> &_<> ,<2C> <> <EFBFBD> R<EFBFBD> \ZK<5A> <4B> 6>i#2Y*h@ Wu+<2B> <> <11> <> -.<2E> <> <EFBFBD> q<EFBFBD> \'c)<29> Z<EFBFBD> ]X<> <58> <EFBFBD> \'f<> I<EFBFBD> Q<EFBFBD> <51> 0<EFBFBD> J<EFBFBD> <<3C> H<18> j<EFBFBD> RC Z$1<> <31> .<2E> ˟<EFBFBD> <CB9F> 4<EFBFBD> ?¿ <20> <> գ <EFBFBD> \"t]<5D> <> N<> <4E> &z}Ȩ<> 4<14> <1F> <> \0*<2A> <> <EFBFBD> <EFBFBD> AMq<4D> <71> <EFBFBD> %<25> <> <EFBFBD> %[1<> PT<50> ɩ <EFBFBD> <C9A9> Æ3<C386> R<EFBFBD> <52> R<EFBFBD> <52> l14z<34> Y\"<02> d<EFBFBD> <17> G<EFBFBD> N<EFBFBD> <4E> <EFBFBD> <EFBFBD> Jː <4A> <CB90> <EFBFBD> m\'ʢS-BU5!j/<2F> Iܭ<49> <DCAD> <EFBFBD> <EFBFBD> 1<> /FQ\\<5C> ^<5E> <> .h<> ] P0<50> <30> ohϐY<CF90> )<29> ^\Z)<29> T<EFBFBD> <54> U<> G Q<11> <> <EFBFBD> <EFBFBD> ,fJ<66> <4A> Gِ\0\0\0\0\0<14> q<EFBFBD> <71> <EFBFBD> d -<2D> B \\*<2A> u<EFBFBD> <75> <EFBFBD> D<EFBFBD> Z<EFBFBD> <5A> nǮ~<7E> 4<19> <> $<24> ̏2<CC8F> .<2E> <> -m<> ݯ<EFBFBD> m(ָ<> <D6B8> <EFBFBD> <EFBFBD> m<EFBFBD> <6D> <EFBFBD> <EFBFBD> WW<57> <57> <EFBFBD> IoԺ<6F> <D4BA> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> w2I<18> <> HX%<25> Lza<7A> ֞X<D69E> <58> Z6<5A> <36> ;<01> <<3C> <> $<24> <> <EFBFBD> % jhvs2R<32> f<EFBFBD> <66> <EFBFBD> :>-DdJZ<4A> <5A> )%<11> <> \0#[ڋѓN<D193> <4E> Ve<56> <65> M<EFBFBD> <4D> |<7C> <> <EFBFBD> <EFBFBD> <<3C> qE<71> <45> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> K>Yk<59> [\ZYN<0C> <> \"ZyTGV\ZĢ5 MGR<47> OO<4F> <4F> &7<> <37> <EFBFBD> <0B> ;_<> <5F> Ou<4F> <75> [7<> <37> <EFBFBD> Q<EFBFBD> <51> ?<3F> <> 0<EFBFBD> Rv<52> Vg #۔ <> <DB94> +<2B> <> <EFBFBD> E<EFBFBD> 1<11> <16> vl<76> \0\0\0\0\0<> <30> <EFBFBD> <EFBFBD> ?<3F> Ɯ^<5E> <> 0<EFBFBD> R<EFBFBD> lw<6C> <77> <EFBFBD> έ<EFBFBD> <CEAD> lFݒRב<52> ̋<EFBFBD> rK<12> 3=<3D> 2###<23> h<EFBFBD> <68> ,<2C> <1C> I<EFBFBD> <06> 7_<37> <5F> Cku齒笩Y<19> <> ;<3B> <> <EFBFBD> a{`\0\0<> \'uXh<58> <68> <EFBFBD> <EFBFBD> Y\'q<> E<EFBFBD> <45> Ix<49> <78> }<7D> RÓ I _/_#<23> qG<71> OO<4F> <4F> %<25> <> <EFBFBD> <EFBFBD> <EFBFBD> 3.\'<27> \\<5C> m<EFBFBD> <6D> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ><3E> t<EFBFBD> <74> 2<EFBFBD> 7<0C> <> <10> 36(<28> FffJw_C4<43> 4 y Z*\0\0\0\0\0<02> <> <EFBFBD> <06> \\<5C> <> <EFBFBD> 1.<2E> ۷ <> <DBB7> C<1C> <> <EFBFBD> 6<> <36> <EFBFBD> <EFBFBD> yC<11> <> 2t2$<24> <> 3<> K<EFBFBD> <4B> <EFBFBD> <1B> <> <EFBFBD> <1F> <0F> \\<5C> <> .<2E> K<EFBFBD> \r^\'<17> G<EFBFBD> <47> <EFBFBD> E<EFBFBD> <45> <19> );S/<2F> ҟ<EFBFBD> <D29F> <EFBFBD> <EFBFBD> E<EFBFBD> <45> s ,<2C> <> f/qB<71> 5<EFBFBD> q<EFBFBD> C\"Ǯm̕gx<67> /<2F> <> <EFBFBD> 6l<36> 5|*<2A> <> <EFBFBD> Io<49> $<24> <> <EFBFBD> <EFBFBD> }X\0 ]<5D> Uz<55> a<EFBFBD> <61> <0C> <> jv<6A> C0<43> )<29> 8<EFBFBD> .<2E> op<6F> <70> <EFBFBD> cև6<D687> <36> <EFBFBD> \'R (W<> <57> <EFBFBD> <EFBFBD> <EFBFBD> J<EFBFBD> \"<22> Sf><3E> <> <EFBFBD> UKS<4B> <53> <EFBFBD> *T<> Φ<EFBFBD> =72<37> <32> ?<3F> <> <EFBFBD> [ َ<> <D98E> <EFBFBD> \0<> <30> <10> <> <EFBFBD> u<EFBFBD> <75> &|<7C> 5<EFBFBD> \"<22> -Uh<55> ǭ \nV#<23> 9 Mԗ<4D> <D497> ;<3B> H<EFBFBD> $i5\"<22> ̢<EFBFBD> :<3A> <> g&<26> \0\0\0\0\0<1C> <> <1F> ك<EFBFBD> <D983> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> F<> <46> &7<> <37> < !<21> E4<45> <34> /<2F> R<EFBFBD> <52> <EFBFBD> 5U*<2A> <> <EFBFBD> \n*:<3A> $<24> N<EFBFBD> <4E> <EFBFBD> <EFBFBD> <EFBFBD> $\ZҎ<5A> <D28E> l<EFBFBD> <6C> <EFBFBD> <EFBFBD> <EFBFBD> k/<2F> <> <09> <> )=<3D> <> 9<EFBFBD> &Q<> <51> eؽ<65> <D8BD> \r ><12> <> <EFBFBD> <EFBFBD> 1\Z<17> T|<7C> J<EFBFBD> m<EFBFBD> <6D> F<EFBFBD> <46> <15> J<EFBFBD> <4A> n<EFBFBD> <6E> w<EFBFBD> i<EFBFBD> N<EFBFBD> o[/<2F> <> <EFBFBD> 8<EFBFBD> <38> <EFBFBD> <EFBFBD> <EFBFBD> &<26> <0C> q,<2C> <> <EFBFBD> <EFBFBD> <EFBFBD> K\r5<<3C> <> <EFBFBD> Gݢ ʥ<> <CAA5> <EFBFBD> <EFBFBD> *T<> <54> <EFBFBD> <EFBFBD> \0/<2F> <<3C> |{9e<39> .<2E> <> <EFBFBD> L<EFBFBD> y-ؙ<> <D899> <EFBFBD> \r\"ȳ .<2E> <> Q<EFBFBD> <51> j<EFBFBD> [o<> <6F> <EFBFBD> OB<4F> g<EFBFBD> <67> &f)<29> <> e<EFBFBD> +/<2F> 4<EFBFBD> \\<5C> Q<EFBFBD> j<EFBFBD> <6A> <EFBFBD> <EFBFBD> <EFBFBD> Ѱ<EFBFBD> <D1B0> ~wh<77> c<EFBFBD> 8<EFBFBD> <38> <EFBFBD> ڤF<08> gT<67> ճ<EFBFBD> G<EFBFBD> [<5B> M\')<29> <> ?J<14> UDR)6v[<5B> \"<22> 3<EFBFBD> <33> <EFBFBD> <1C> $n<> <6E> =<3D> J<EFBFBD> <4A> K<EFBFBD> \'<27> D<EFBFBD> <44> q1<71> 8<EFBFBD> <38> <EFBFBD> <F284A9B4> 7<EFBFBD> (<28> <> U<1F> <> <EFBFBD> <EFBFBD> ueL<65> <4C> <EFBFBD> <EFBFBD> <EFBFBD> t<EFBFBD> v2ҤT<D2A4> K<EFBFBD> [o<> <6F> <EFBFBD> |<7C> <> <EFBFBD> \0\0\0\0\0<1C> <> <EFBFBD> \0/<2F> !3ڕ<33> <DA95> \Z˘<5A> <20> .<2E> <> <EFBFBD> <EFBFBD> s.b<> <62> <EFBFBD> <EFBFBD> <13> <> U<EFBFBD> ~T<> <54> 22T<32> <54> <<3C> )<29> <aI&<26> <> L<EFBFBD> *Ҕ<> <D294> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <0B> !<21> K<EFBFBD> f<EFBFBD> z<> <7A> <EFBFBD> o<EFBFBD> <6F> <1B> <EFBFBD> \0K<30> <4B> <EFBFBD> d<EFBFBD> Z<EFBFBD> <5A> <EFBFBD> <EFBFBD> gM<67> bw%%<25> A }<7D> #<23> JZ<18> <> t<74> <07> 莠p<E88EA0> &<26> pJ<70> <4A> <EFBFBD> y<EFBFBD> D2<44> ><3E> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <1C> qv<71> s\'<27> <> \ZPH<50> <48> GzjY<19> <> |<7C> F<EFBFBD> 2<EFBFBD> <32> <EFBFBD> <EFBFBD> <EFBFBD> ?jj|<7C> \0 \nLK<4C> c<EFBFBD> <63> <EFBFBD> A_.(\Z<0E> <> <EFBFBD> <EFBFBD> J <20> <> <EFBFBD> <11> <> <EFBFBD> <EFBFBD> Lj<4C> <6A> Ȫ\Zy<5A> <79> \"<22> }<7D> <> <EFBFBD> <EFBFBD> ݽ<EFBFBD> <DDBD> ε<EFBFBD> <CEB5> Ճe<D583> S5:<3A> $<24> n<EFBFBD> \Z<> <5A> <EFBFBD> [<5B> <> δ<> <CEB4> \"<22> d<EFBFBD> <64> <02> <> F<EFBFBD> <46> (<28> <1F> ( Y<> <59> \ZQvL<76> <4C> <EFBFBD> <EFBFBD> GM<47> <4D> <EFBFBD> y!z\'G<> ǾƷ u(<28> <> <EFBFBD> %;<\0\0\0\0\0?<05> յ<EFBFBD> <D5B5> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> n<EFBFBD> n<EFBFBD> \n<> <6E> <EFBFBD> <EFBFBD> m<EFBFBD> <6D> <EFBFBD> 3\"\"\"=<3D> ؼ<EFBFBD> <D8BC> <EFBFBD> <EFBFBD> \'<18> x<EFBFBD> <78> 8x<38> -<2D> <> a<> <61> <16> <> <EFBFBD> ES<45> <53> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> l13K<33> <0B> Yx%<25> <> <EFBFBD> <EFBFBD> rJ<72> <4A> rR<72> Y<EFBFBD> 5B$<24> E<EFBFBD> =4k_<6B> <5F> ć<EFBFBD> &<26> <> N\Z_<5A> <5F> <EFBFBD> <EFBFBD> <EFBFBD> k<EFBFBD> <1C> <> H<EFBFBD> <48> Q;wdW)%<25> / y}\'<27> <> )5<13> <> <EFBFBD> i<17> (<28> <> <11> [<5B> <> <EFBFBD> xr<78> <72> I<EFBFBD> W<EFBFBD> +<2B> ]}f,<2C> \n<> <6E> ^G<> <47> ,s<> <73> <EFBFBD> <13> <> <EFBFBD> J\'8ӫ<38> <04> zLKZ<4B> %l<> <6C> <EFBFBD> <EFBFBD> $<24> Y<EFBFBD> (<28> :<3A> <19> <> <EFBFBD> ]<5D> <> 6<EFBFBD> <36> \0<> 㴒<EFBFBD> Mʮ<4D> %y<> 2=<3D> ޟ<EFBFBD> $<24> <> {<7B> <> ;<3B> SؔI-<2D> <> m<EFBFBD> z<EFBFBD> Ѹ<EFBFBD> U<EFBFBD> <55> ) h<> c<EFBFBD> <63> <EFBFBD> ,X<> ۭ<> ѹ<EFBFBD> <D1B9> <EFBFBD> C;ccg)<29> -TZS<5A> <53> BV<42> ^S2% l<> <6C> @ro<72> <6F> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> W8 &ا i<D8A7> <69> ;<3B> <> 6<> {{<7B> <> IY<49> \\J6ڒ\"<22> <> <EFBFBD> \"J<> |<7C> <> w\"-<2D> )<29> `t<> <74> J<19> <> K<EFBFBD> q<EFBFBD> <71> <EFBFBD> :<1D> }<7D> 7<06> 4<EFBFBD> <34> QoӕI<D395> <49> <EFBFBD> 4<EFBFBD> <34> {u<> <75> <05> H<EFBFBD> n<EFBFBD> <18> 0B<1C> <> a<EFBFBD> G<1C> \'<27> w ~<7E> x<EFBFBD> -<2D> <> <EFBFBD> 5<1E> :<3A> <1D> <> <EFBFBD>
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `photo` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `poll`
--
DROP TABLE IF EXISTS ` poll ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` poll ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` q0 ` text ,
` q1 ` text ,
` q2 ` text ,
` q3 ` text ,
` q4 ` text ,
` q5 ` text ,
` q6 ` text ,
` q7 ` text ,
` q8 ` text ,
` q9 ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `poll`
--
LOCK TABLES ` poll ` WRITE ;
/* !40000 ALTER TABLE `poll` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `poll` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `poll_result`
--
DROP TABLE IF EXISTS ` poll_result ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` poll_result ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` poll_id ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` choice ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` poll_id ` ( ` poll_id ` ) ,
KEY ` choice ` ( ` choice ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `poll_result`
--
LOCK TABLES ` poll_result ` WRITE ;
/* !40000 ALTER TABLE `poll_result` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `poll_result` ENABLE KEYS */ ;
UNLOCK TABLES ;
2017-09-07 09:28:08 +00:00
--
-- Table structure for table `process`
--
DROP TABLE IF EXISTS ` process ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` process ` (
` pid ` int ( 10 ) unsigned NOT NULL ,
` command ` varbinary ( 32 ) NOT NULL DEFAULT ' ' ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
PRIMARY KEY ( ` pid ` ) ,
KEY ` command ` ( ` command ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `process`
--
LOCK TABLES ` process ` WRITE ;
/* !40000 ALTER TABLE `process` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `process` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-02-02 21:58:08 +00:00
--
-- Table structure for table `profile`
--
DROP TABLE IF EXISTS ` profile ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` profile ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` profile - name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` is - default ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` hide - friends ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` pdesc ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` dob ` varchar ( 32 ) NOT NULL DEFAULT ' 0001-01-01 ' ,
2015-02-02 21:58:08 +00:00
` address ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` locality ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` region ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` postal - code ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` country - name ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` hometown ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` gender ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` marital ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` with ` text ,
2017-04-11 21:00:45 +00:00
` howlong ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` sexual ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` politic ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` religion ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` pub_keywords ` text ,
` prv_keywords ` text ,
` likes ` text ,
` dislikes ` text ,
` about ` text ,
2015-02-02 21:58:08 +00:00
` summary ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` music ` text ,
` book ` text ,
` tv ` text ,
` film ` text ,
` interest ` text ,
` romance ` text ,
` work ` text ,
` education ` text ,
` contact ` text ,
2015-02-02 21:58:08 +00:00
` homepage ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` xmpp ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2015-02-02 21:58:08 +00:00
` photo ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` thumb ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` publish ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` net - publish ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_is - default ` ( ` uid ` , ` is - default ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `profile`
--
LOCK TABLES ` profile ` WRITE ;
/* !40000 ALTER TABLE `profile` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` profile ` VALUES ( 1 , 1 , ' default ' , 1 , 0 , ' admin ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/1.jpg ' , ' http://friendica.dev/photo/avatar/1.jpg ' , 0 , 0 ) , ( 2 , 2 , ' default ' , 1 , 0 , ' friendica1 ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/2.jpg ' , ' http://friendica.dev/photo/avatar/2.jpg ' , 0 , 0 ) , ( 3 , 3 , ' default ' , 1 , 0 , ' friendica2 ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/3.jpg ' , ' http://friendica.dev/photo/avatar/3.jpg ' , 0 , 0 ) , ( 4 , 4 , ' default ' , 1 , 0 , ' friendica3 ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/4.jpg ' , ' http://friendica.dev/photo/avatar/4.jpg ' , 0 , 0 ) , ( 5 , 5 , ' default ' , 1 , 0 , ' friendica4 ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/5.jpg ' , ' http://friendica.dev/photo/avatar/5.jpg ' , 0 , 0 ) , ( 6 , 6 , ' default ' , 1 , 0 , ' friendica5 ' , ' ' , ' 0001-01-01 ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , NULL , ' 0001-01-01 00:00:00 ' , ' ' , ' ' , ' ' , NULL , NULL , NULL , NULL , NULL , ' ' , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , ' ' , ' ' , ' http://friendica.dev/photo/profile/6.jpg ' , ' http://friendica.dev/photo/avatar/6.jpg ' , 0 , 0 ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `profile` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `profile_check`
--
DROP TABLE IF EXISTS ` profile_check ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` profile_check ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` cid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` dfrn_id ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` sec ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` expire ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `profile_check`
--
LOCK TABLES ` profile_check ` WRITE ;
/* !40000 ALTER TABLE `profile_check` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `profile_check` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `push_subscriber`
--
DROP TABLE IF EXISTS ` push_subscriber ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` push_subscriber ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` callback_url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` topic ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nickname ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` push ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` last_update ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` secret ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `push_subscriber`
--
LOCK TABLES ` push_subscriber ` WRITE ;
/* !40000 ALTER TABLE `push_subscriber` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `push_subscriber` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `queue`
--
DROP TABLE IF EXISTS ` queue ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` queue ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` cid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` network ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` last ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2017-09-07 09:28:08 +00:00
` content ` mediumtext ,
2015-02-02 21:58:08 +00:00
` batch ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` cid ` ( ` cid ` ) ,
KEY ` created ` ( ` created ` ) ,
KEY ` last ` ( ` last ` ) ,
KEY ` network ` ( ` network ` ) ,
KEY ` batch ` ( ` batch ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `queue`
--
LOCK TABLES ` queue ` WRITE ;
/* !40000 ALTER TABLE `queue` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `queue` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `register`
--
DROP TABLE IF EXISTS ` register ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` register ` (
` id ` int ( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
` hash ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` uid ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` password ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` language ` varchar ( 16 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` note ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `register`
--
LOCK TABLES ` register ` WRITE ;
/* !40000 ALTER TABLE `register` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `register` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `search`
--
DROP TABLE IF EXISTS ` search ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` search ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` term ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid ` ( ` uid ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `search`
--
LOCK TABLES ` search ` WRITE ;
/* !40000 ALTER TABLE `search` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `search` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `session`
--
DROP TABLE IF EXISTS ` session ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` session ` (
` id ` bigint ( 20 ) unsigned NOT NULL AUTO_INCREMENT ,
2017-09-07 09:28:08 +00:00
` sid ` varbinary ( 255 ) NOT NULL DEFAULT ' ' ,
` data ` text ,
2015-02-02 21:58:08 +00:00
` expire ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` sid ` ( ` sid ` ( 64 ) ) ,
2015-02-02 21:58:08 +00:00
KEY ` expire ` ( ` expire ` )
2017-09-07 09:28:08 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 88 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `session`
--
LOCK TABLES ` session ` WRITE ;
/* !40000 ALTER TABLE `session` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` session ` VALUES ( 74 , ' 5rl3d8078ac0sls01ppupet6g7 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776068 ) , ( 75 , ' rjf14g3p0uuat2osmm7gbj1nr7 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776068 ) , ( 76 , ' v5f8njmbdl519nscsm5qv5uk96 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776068 ) , ( 77 , ' a28an1q2tt22orpej8c5frsf94 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776101 ) , ( 78 , ' q1lfibeog56et85jpcn9f6erb3 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776102 ) , ( 79 , ' rgltohu3322ndt89els0ihpbj5 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776102 ) , ( 81 , ' h5l510son1mr019j19ph7rqcu0 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776169 ) , ( 82 , ' n748aact1vvotfhtbq007ht3s7 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776204 ) , ( 83 , ' jthe9pfisfe9urj1fnhjsra1r2 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{} ' , 1504776204 ) , ( 85 , ' c2n4jols70ctvq4bt5045psn65 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\"; ' , 1504955989 ) , ( 86 , ' k2csn2mrorl3vcl5vf5i9m7li2 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\"; ' , 1504955996 ) , ( 87 , ' 688cugkgr5iuqlklrincrnvgq0 ' , ' sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\"; ' , 1504956003 ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `session` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `sign`
--
DROP TABLE IF EXISTS ` sign ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` sign ` (
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` iid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` signed_text ` mediumtext ,
` signature ` text ,
2015-02-02 21:58:08 +00:00
` signer ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
UNIQUE KEY ` iid ` ( ` iid ` )
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `sign`
--
LOCK TABLES ` sign ` WRITE ;
/* !40000 ALTER TABLE `sign` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` sign ` VALUES ( 1 , 12 , ' {\"author\":\"friendica3@friendica.dev\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"} ' , NULL , ' ' ) , ( 2 , 13 , ' {\"author\":\"friendica3@friendica.dev\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"} ' , ' ' , ' ' ) , ( 3 , 14 , ' {\"author\":\"friendica3@friendica.dev\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"} ' , ' ' , ' ' ) , ( 4 , 18 , ' {\"author\":\"friendica2@friendica.dev\",\"guid\":\"758d682b2059b10f204f9c2684001373\",\"created_at\":\"2017-09-07T09:19:28Z\",\"parent_guid\":\"758d682b1459b10f0be17c3206121357\",\"text\":\"Yay!\",\"author_signature\":\"Ty4OnkZUFKgrVkF0kN5J+21bjVCoyOwljoj68gwWQR3XETAJ4v\\/O1yFypLyzbrOZCBWzC9e9Wg3g+FT6oKdYLBzMR6Qu2VrAFYM5JI9e0G8IIVWWFGD2zFyhAhJLwzy93BqzCTTD5+3s5P2quTJkJyJqweGczNlLk2em26WShG9VpcgFuQAyVcQGAlTaUBqFYn7Mo3D5xWPgrhWEzU8AU1i3lKr7dBekcEMvFF5h51DebYCMmuMvyjBMWEDjv8cbm0ve\\/4uo0uU0D9vik3oCTAzZCV3rcLkthp0MFI1sxGepHzkk\\/HJSMkyB\\/VqDNgPdeMTtbCBCdKr0NmSim2dTlOVascmsvpQoy1tXDwv1+PMs2tET4O1+JrvRFJ6VNK9lKPs59RZ1YhFfLIneKn616mcJm9ZbHDi6y1uQRIGtDjLGgvs69TqVI028jRU2KhlvrNM8SktvRSfbHu8Dpj1n1xmedOwmdlJsJvzGMOd2fNr\\/EXg6mY7YpgYPBt7T42MfRqajaqDUjeN1XKnfvprODUDNhGmol2f7mMLi4RpQySPFjDCC+4vh6y8q6yc4T2CVzEMZXIrBeE3QW46HSgqVmrEpVP72VL4LSWGS46M8CmBXp9c+gf07C59dklSPgGa0D+5Z768L25tJPqAvlVJShSq1hQVVTW4qjNAfdvKGI90=\"} ' , NULL , ' ' ) , ( 5 , 19 , ' {\"author\":\"friendica2@friendica.dev\",\"guid\":\"758d682b2059b10f204f9c2684001373\",\"created_at\":\"2017-09-07T09:19:28Z\",\"parent_guid\":\"758d682b1459b10f0be17c3206121357\",\"text\":\"Yay!\",\"author_signature\":\"Ty4OnkZUFKgrVkF0kN5J+21bjVCoyOwljoj68gwWQR3XETAJ4v\\/O1yFypLyzbrOZCBWzC9e9Wg3g+F
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `sign` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `spam`
--
DROP TABLE IF EXISTS ` spam ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` spam ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spam ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` ham ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` term ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-04-11 21:00:45 +00:00
` date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` id ` ) ,
KEY ` uid ` ( ` uid ` ) ,
KEY ` spam ` ( ` spam ` ) ,
KEY ` ham ` ( ` ham ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` term ` ( ` term ` ( 191 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `spam`
--
LOCK TABLES ` spam ` WRITE ;
/* !40000 ALTER TABLE `spam` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `spam` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `term`
--
DROP TABLE IF EXISTS ` term ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` term ` (
` tid ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
` oid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` otype ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` type ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` term ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` url ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` guid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` received ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` global ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` aid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` tid ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` oid_otype_type_term ` ( ` oid ` , ` otype ` , ` type ` , ` term ` ( 32 ) ) ,
KEY ` uid_otype_type_term_global_created ` ( ` uid ` , ` otype ` , ` type ` , ` term ` ( 32 ) , ` global ` , ` created ` ) ,
KEY ` uid_otype_type_url ` ( ` uid ` , ` otype ` , ` type ` , ` url ` ( 64 ) ) ,
KEY ` guid ` ( ` guid ` ( 64 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `term`
--
LOCK TABLES ` term ` WRITE ;
/* !40000 ALTER TABLE `term` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `term` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `thread`
--
DROP TABLE IF EXISTS ` thread ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` thread ` (
` iid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` uid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` contact - id ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` gcontact - id ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` owner - id ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` author - id ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` edited ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` commented ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` received ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` changed ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` wall ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` private ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` pubmail ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` moderated ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` visible ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` spam ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` starred ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` ignored ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` bookmark ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` unseen ` tinyint ( 1 ) NOT NULL DEFAULT ' 1 ' ,
` deleted ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` origin ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` forum_mode ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` mention ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` network ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` iid ` ) ,
KEY ` uid_network_commented ` ( ` uid ` , ` network ` , ` commented ` ) ,
KEY ` uid_network_created ` ( ` uid ` , ` network ` , ` created ` ) ,
KEY ` uid_contactid_commented ` ( ` uid ` , ` contact - id ` , ` commented ` ) ,
KEY ` uid_contactid_created ` ( ` uid ` , ` contact - id ` , ` created ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` contactid ` ( ` contact - id ` ) ,
KEY ` ownerid ` ( ` owner - id ` ) ,
KEY ` authorid ` ( ` author - id ` ) ,
2015-02-02 21:58:08 +00:00
KEY ` uid_created ` ( ` uid ` , ` created ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` uid_commented ` ( ` uid ` , ` commented ` ) ,
KEY ` uid_wall_created ` ( ` uid ` , ` wall ` , ` created ` ) ,
KEY ` private_wall_received ` ( ` private ` , ` wall ` , ` received ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `thread`
--
LOCK TABLES ` thread ` WRITE ;
/* !40000 ALTER TABLE `thread` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` thread ` VALUES ( 1 , 6 , 6 , 5 , 19 , 19 , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , ' dfrn ' ) , ( 2 , 0 , 19 , 5 , 19 , 19 , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 3 , 2 , 14 , 5 , 19 , 19 , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 4 , 5 , 18 , 5 , 19 , 19 , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:08 ' , ' 2017-09-07 09:16:09 ' , ' 2017-09-07 09:16:09 ' , ' 2017-09-07 09:16:09 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 5 , 3 , 3 , 2 , 20 , 20 , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , 1 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , ' dfrn ' ) , ( 6 , 0 , 20 , 2 , 20 , 20 , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:42 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 7 , 2 , 8 , 2 , 20 , 20 , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:42 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 8 , 4 , 15 , 2 , 20 , 20 , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:41 ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:42 ' , ' 2017-09-07 09:16:42 ' , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 9 , 2 , 2 , 1 , 21 , 21 , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:24 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:24 ' , 1 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , ' dfrn ' ) , ( 10 , 4 , 9 , 1 , 21 , 21 , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:24 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:24 ' , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , ' dfrn ' ) , ( 11 , 6 , 13 , 1 , 21 , 21 , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:25 ' , ' 2017-09-07 09:17:49 ' , ' 2017-09-07 09:18:25 ' , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) , ( 15 , 2 , 2 , 1 , 21 , 21 , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:28 ' , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:28 ' , 1 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , ' dfrn ' ) , ( 16 , 3 , 7 , 1 , 21 , 21 , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:28 ' , ' 2017-09-07 09:19:08 ' , ' 2017-09-07 09:19:28 ' , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 1 , ' dfrn ' ) , ( 17 , 5 , 11 , 1 , 21 , 21 , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:07 ' , ' 2017-09-07 09:19:28 ' , ' 2017-09-07 09:19:08 ' , ' 2017-09-07 09:19:28 ' , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , ' dfrn ' ) ;
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `thread` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `tokens`
--
DROP TABLE IF EXISTS ` tokens ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` tokens ` (
` id ` varchar ( 40 ) NOT NULL ,
2017-09-07 09:28:08 +00:00
` secret ` text ,
2015-02-02 21:58:08 +00:00
` client_id ` varchar ( 20 ) NOT NULL DEFAULT ' ' ,
` expires ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` scope ` varchar ( 200 ) NOT NULL DEFAULT ' ' ,
` uid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `tokens`
--
LOCK TABLES ` tokens ` WRITE ;
/* !40000 ALTER TABLE `tokens` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `tokens` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS ` user ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` user ` (
` uid ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` guid ` varchar ( 64 ) NOT NULL DEFAULT ' ' ,
` username ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` password ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` nickname ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` email ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` openid ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` timezone ` varchar ( 128 ) NOT NULL DEFAULT ' ' ,
` language ` varchar ( 32 ) NOT NULL DEFAULT ' en ' ,
2017-04-11 21:00:45 +00:00
` register_date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` login_date ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` default - location ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` allow_location ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` theme ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2017-09-07 09:28:08 +00:00
` pubkey ` text ,
` prvkey ` text ,
` spubkey ` text ,
` sprvkey ` text ,
2015-02-02 21:58:08 +00:00
` verified ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` blocked ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` blockwall ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` hidewall ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` blocktags ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` unkmail ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` cntunkmail ` int ( 11 ) NOT NULL DEFAULT ' 10 ' ,
` notify - flags ` int ( 11 ) unsigned NOT NULL DEFAULT ' 65535 ' ,
` page - flags ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` account - type ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-02-02 21:58:08 +00:00
` prvnets ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` pwdreset ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` maxreq ` int ( 11 ) NOT NULL DEFAULT ' 10 ' ,
` expire ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` account_removed ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` account_expired ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
2017-04-11 21:00:45 +00:00
` account_expires_on ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` expire_notification_sent ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
2015-02-02 21:58:08 +00:00
` service_class ` varchar ( 32 ) NOT NULL DEFAULT ' ' ,
` def_gid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2017-09-07 09:28:08 +00:00
` allow_cid ` mediumtext ,
` allow_gid ` mediumtext ,
` deny_cid ` mediumtext ,
` deny_gid ` mediumtext ,
` openidserver ` text ,
2015-02-02 21:58:08 +00:00
PRIMARY KEY ( ` uid ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` nickname ` ( ` nickname ` ( 32 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `user`
--
LOCK TABLES ` user ` WRITE ;
/* !40000 ALTER TABLE `user` DISABLE KEYS */ ;
2017-09-07 09:28:08 +00:00
INSERT INTO ` user ` VALUES ( 1 , ' 758d682b8759b1098e3044f007138090 ' , ' admin ' , ' 6a4e012bd9583858a5a6fa15f58bd86a25af266d3a4344f1ec2018b778f29ba83be86eb45e6dc204e11276f4a99eff4e2144fbe15e756c2c88e999649aae7d94 ' , ' admin ' , ' admin@friendica.dev ' , ' ' , ' UTC ' , ' en ' , ' 2017-09-07 08:55:42 ' , ' 2017-09-07 09:19:43 ' , ' ' , 0 , ' ' , ' -----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwQg7HphhbaW2328hhUgS\n9sxr551Y3jTlBR5zqxpYHcW4X0h0STElurfVgsDZldgUGNUh6hQDBpoeRQ+Fxi6X\nFRGd76BBlW9wXAoq/oxpezUgD3UWVBc1eybc4ChSexlBhB2PcDbymjaTDji1XoYf\nxDfdKyawCtnjOhvOqWKIjhpVlT10/1taqYSfVNHh3RyIAXKr5gdKKZibBN0DuMbI\ngR4UuD4GhdVtGvYamjEwf8z2beJYwTmkvInf1V0MyLr6wEMj7FerAoe59bng6GjL\nB8DvRyg38iST0SZfSXOeinaEbum6gFuRGdLS3Yz2e+yk4OxOoY/mXP3yjodCu0Ld\nU6Ld+y0qMw2AKewQBl7+BM0utgbZXmmX1RcHL/NrLsM2FS9626tUGMWwUnSOAP85\nIHMuODjDYgud14m6AgD1eOI0Rcm36QpM+YqcXvllCSR8aRdqX6yyjYdkDmAeHrPl\nHJos5usizcQGivq7QZU+svWq1tAt1BQLelXtmcoZpmHSaUNOYSlWekdWiouSmyZ8\nD9EhfIZhbw/nEyKmayh5mxSP4VxT+hW/l/6x2E75azpDo+oSj1vgBi8zg4d0NIIe\n6PNjZm+MP2JSyZs/hnTWAxGyVVQuvSjnqv+CM2KHKdBSZ7mNVi/mbK8ZFwtLX3qy\n84tUkMsLqWcBG29JDamlq8UCAwEAAQ==\n-----END PUBLIC KEY-----\n ' , ' -----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQDBCDsemGFtpbbf\nbyGFSBL2zGvnnVjeNOUFHnOrGlgdxbhfSHRJMSW6t9WCwNmV2BQY1SHqFAMGmh5F\nD4XGLpcVEZ3voEGVb3BcCir+jGl7NSAPdRZUFzV7JtzgKFJ7GUGEHY9wNvKaNpMO\nOLVehh/EN90rJrAK2eM6G86pYoiOGlWVPXT/W1qphJ9U0eHdHIgBcqvmB0opmJsE\n3QO4xsiBHhS4PgaF1W0a9hqaMTB/zPZt4ljBOaS8id/VXQzIuvrAQyPsV6sCh7n1\nueDoaMsHwO9HKDfyJJPRJl9Jc56KdoRu6bqAW5EZ0tLdjPZ77KTg7E6hj+Zc/fKO\nh0K7Qt1Tot37LSozDYAp7BAGXv4EzS62BtleaZfVFwcv82suwzYVL3rbq1QYxbBS\ndI4A/zkgcy44OMNiC53XiboCAPV44jRFybfpCkz5ipxe+WUJJHxpF2pfrLKNh2QO\nYB4es+Ucmizm6yLNxAaK+rtBlT6y9arW0C3UFAt6Ve2ZyhmmYdJpQ05hKVZ6R1aK\ni5KbJnwP0SF8hmFvD+cTIqZrKHmbFI/hXFP6Fb+X/rHYTvlrOkOj6hKPW+AGLzOD\nh3Q0gh7o82Nmb4w/YlLJmz+GdNYDEbJVVC69KOeq/4IzYocp0FJnuY1WL+ZsrxkX\nC0tferLzi1SQywupZwEbb0kNqaWrxQIDAQABAoICADPBpTha2ySvHg1imrZF0O/j\nd7sucTmDLTTmKVVjRuUUso65upQ1XUxnJhRc6PpIaXsPCnzcyMLoZ91UgCXXMCMy\nCgrKCUusCZBkGYsO0ul6IRKD7my1nF1c2jQwG41uBCcMVf1cfkfjAiL6CYdCpxnR\ncLe1M9Z0/XwDILJB/SM85F2TkN82+2Qgbygq7kh+8eiReo2+vp/QjyAKsojEo9Ya\n3qtX1h/kTdDA0/kr3zklF5325p1Ie2ciAKYQwPDBUaJjXipshymygqXkJO2ry2RU\n0tNdcUK3k/qsMzhai9PMW03x1VO9OXaXFHra5OvtU3gLZDnlf3rHjFWy5q2XDAh9\nj/vGv6mG8rq8CkJ4qbJ8RfhXEpMkLKhOAeAyiZpQ8qUtD3ASOErmcSyChkFTuAgd\n3JSf2QWIFT+/baU2H/yC/+YoKfzEbngzQGJZlvCpH8c1rx8CnqWp1sDICYjw2NtP\n5BgCx2UD+Zh9yoJJrG1tIkXMpb/evgM+/h+wH/bJ2n4n+AQ2KKjMapPAoj3oY3lK\n8rQOhbTP87cL1WqdbnvQzHY4LwkB1UjKbUaqk052UXgMeeN1I+s1bXrO3XkgyEO+\nmPEcoVddPUDpETM4CgiocqWrPkebBKSfQzjLzyOuPIozqKg5zduxgFBGGwZlliUn\nCCuMGyG4vM/oLDkWqOMBAoIBAQDj7Gg19t/W3IincZ0rJ4RKa+ALw/BFDuiQx55h\n7Dda/JkUmly/Xz0w2GUqWkHiJ4E0YPntIYx22VNePBcnGmKSofvR/L9fjJGpBoCK\n1UgGtzIabKt6T+08dSE3at3Ro459334U2ZI08WFGcsGHmtEApsYSngd2K5NBYU/g\nmoPUv2YQYWG20vo+w9Rj0mdxgu6xYtXK2w2OidmPWlXoX0aH+bD+YnGCPD/wQiyj\nDT+mCCJAhTMc7M81m1SKy/pPxsMBuCABvfgKsrCpJ88U/bO4a/kusYC7qJPNZhed\naXgrYwvjGbLLMvqbyGxmxq3+18oTCkMvGV4xh/M8YeusGJIVAoIBAQDYz4Wyj6+o\nNmYjJ5xiGvyqQ7rtHRcZSnJXmNAmL7NdFIH+uK2EZbgcVKZQ3QlErPv9pAHM3HA5\nwrZVmqMtOq1fiF2MCaUdkEMG0Hg/dPk71WkGVtqTCd6ymP3X1vYkI2zEQhsOloH2\ntwrxuBhDgSoFGqIXxvpL+LLaBTpDAujVMxA3cIVUmyy+VycLZnr/IvItf2ExcmcE\nanfCyME8PaBf8cClMejVRYjlB/v53XhNi+QPRXNWNe8aVbBZ81fiQT0YeEoE4Dox\nY2b/7mU/XigJGWZCOCOkIy6uhzdZE3HuH+UhLSC0vWOEIm3Tux1IZEziNs1I3cEo\njsR6Dd3xKw7xAoIBAHt6iyaZPcFYrswQODa17OyorrORDm1LW2F8U+j3ITIw4PoR\neqfPAAajZYNhbIoKHuxykVQPtdp5eLn30g9EMxz/lr63sDIipJMuy5rrW18QBpvc\nPbZA8OStDDbKtauqcTruRo8jJBt8ndedug0uKYax02MorCAwEVH9V1n2O++ZVcEQ\nEPEMMbipPTprNdGAPrJpOivxKtILCouoRBxk6YAnHOVkDdyhqX4PS8F2HwJjK7NK\ntls4TDXdlhqv0UdBBkq7JtPqyCN7lUu/Hmhf3erOzCuozHZeKNzBL4//ILRYr4r0\nVDHTx4N4PIodnwwOehKAn883bhllbrhK0HPmx9UCggEAPCc/me4ht1L4fZJ04gdI\nyNin2Tez+/FazhD4109uvUl+U7Tbd5tdPIcD6fWZp7My6wmA8lzKykvKmO+hjF/2\nUEYeZkcax5wJ7K8UXc7Pg5lPXVHlrNwVLIokC6l5e0dU2xLYPPDnOBNK9wuzt67z\ngJ0GEgDD2yYyQSkoJAV/of9b5XXTmEjBXkIB9DjHsVf5x0PLLJPoHyKG/cUDT/pt\nL5F8eJjjV6DGPX08nPOkeCdy7AXB3U5ze2QA3MQWQxEEqXBeYQHxQ1in8CQtdSpj\ngzrH02GOCfE093lOkulBN+cjhFPn+h19qeB/hjopArfJWQ4JYMkd2Wna+14zkMD4\nkQKCAQAaIlKP37v4MVohzMD/5u3ICy3742m1G+gy0cRdf
2015-02-02 21:58:08 +00:00
/* !40000 ALTER TABLE `user` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `userd`
--
DROP TABLE IF EXISTS ` userd ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
2017-09-07 09:28:08 +00:00
/* !40101 SET character_set_client = utf8 */ ;
2015-02-02 21:58:08 +00:00
CREATE TABLE ` userd ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` username ` varchar ( 255 ) NOT NULL ,
PRIMARY KEY ( ` id ` ) ,
2017-09-07 09:28:08 +00:00
KEY ` username ` ( ` username ` ( 32 ) )
2017-04-16 13:53:48 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 ;
2015-02-02 21:58:08 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `userd`
--
LOCK TABLES ` userd ` WRITE ;
/* !40000 ALTER TABLE `userd` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `userd` ENABLE KEYS */ ;
UNLOCK TABLES ;
2017-09-07 09:28:08 +00:00
--
-- Table structure for table `workerqueue`
--
DROP TABLE IF EXISTS ` workerqueue ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` workerqueue ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT ,
` parameter ` text ,
` priority ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` created ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` pid ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` executed ` datetime NOT NULL DEFAULT ' 0001-01-01 00:00:00 ' ,
` done ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` pid ` ( ` pid ` ) ,
KEY ` parameter ` ( ` parameter ` ( 64 ) ) ,
KEY ` priority_created ` ( ` priority ` , ` created ` ) ,
KEY ` executed ` ( ` executed ` )
) ENGINE = InnoDB AUTO_INCREMENT = 46 DEFAULT CHARSET = utf8mb4 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `workerqueue`
--
LOCK TABLES ` workerqueue ` WRITE ;
/* !40000 ALTER TABLE `workerqueue` DISABLE KEYS */ ;
INSERT INTO ` workerqueue ` VALUES ( 1 , ' [\"include\\/profile_update.php\",2] ' , 40 , ' 2017-09-07 09:02:27 ' , 1811 , ' 2017-09-07 09:02:27 ' , 1 ) , ( 2 , ' [\"include\\/gprobe.php\",\"http:\\/\\/friendica.dev\\/profile\\/friendica1\"] ' , 40 , ' 2017-09-07 09:02:27 ' , 1811 , ' 2017-09-07 09:02:27 ' , 1 ) , ( 3 , ' [\"include\\/discover_poco.php\",\"poco_load\",0,0,1,\"http:\\/\\/friendica.dev\\/poco\\/friendica1\"] ' , 40 , ' 2017-09-07 09:02:28 ' , 1811 , ' 2017-09-07 09:02:28 ' , 1 ) , ( 4 , ' [\"include\\/profile_update.php\",3] ' , 40 , ' 2017-09-07 09:06:02 ' , 1864 , ' 2017-09-07 09:06:02 ' , 1 ) , ( 5 , ' [\"include\\/gprobe.php\",\"http:\\/\\/friendica.dev\\/profile\\/friendica2\"] ' , 40 , ' 2017-09-07 09:06:02 ' , 1864 , ' 2017-09-07 09:06:02 ' , 1 ) , ( 6 , ' [\"include\\/discover_poco.php\",\"poco_load\",0,0,2,\"http:\\/\\/friendica.dev\\/poco\\/friendica2\"] ' , 40 , ' 2017-09-07 09:06:02 ' , 1864 , ' 2017-09-07 09:06:02 ' , 1 ) , ( 7 , ' [\"include\\/profile_update.php\",4] ' , 40 , ' 2017-09-07 09:09:50 ' , 1960 , ' 2017-09-07 09:09:50 ' , 1 ) , ( 8 , ' [\"include\\/gprobe.php\",\"http:\\/\\/friendica.dev\\/profile\\/friendica3\"] ' , 40 , ' 2017-09-07 09:09:50 ' , 1960 , ' 2017-09-07 09:09:50 ' , 1 ) , ( 9 , ' [\"include\\/discover_poco.php\",\"poco_load\",0,0,3,\"http:\\/\\/friendica.dev\\/poco\\/friendica3\"] ' , 40 , ' 2017-09-07 09:09:50 ' , 1960 , ' 2017-09-07 09:09:50 ' , 1 ) , ( 10 , ' [\"include\\/profile_update.php\",5] ' , 40 , ' 2017-09-07 09:11:41 ' , 1977 , ' 2017-09-07 09:11:41 ' , 1 ) , ( 11 , ' [\"include\\/gprobe.php\",\"http:\\/\\/friendica.dev\\/profile\\/friendica4\"] ' , 40 , ' 2017-09-07 09:11:41 ' , 1977 , ' 2017-09-07 09:11:41 ' , 1 ) , ( 12 , ' [\"include\\/discover_poco.php\",\"poco_load\",0,0,4,\"http:\\/\\/friendica.dev\\/poco\\/friendica4\"] ' , 40 , ' 2017-09-07 09:11:41 ' , 1977 , ' 2017-09-07 09:11:41 ' , 1 ) , ( 13 , ' [\"include\\/profile_update.php\",6] ' , 40 , ' 2017-09-07 09:13:25 ' , 1999 , ' 2017-09-07 09:13:25 ' , 1 ) , ( 14 , ' [\"include\\/gprobe.php\",\"http:\\/\\/friendica.dev\\/profile\\/friendica5\"] ' , 40 , ' 2017-09-07 09:13:25 ' , 1999 , ' 2017-09-07 09:13:25 ' , 1 ) , ( 15 , ' [\"include\\/discover_poco.php\",\"poco_load\",0,0,5,\"http:\\/\\/friendica.dev\\/poco\\/friendica5\"] ' , 40 , ' 2017-09-07 09:13:25 ' , 1999 , ' 2017-09-07 09:13:25 ' , 1 ) , ( 16 , ' [\"include\\/create_shadowentry.php\",\"1\"] ' , 20 , ' 2017-09-07 09:16:08 ' , 2016 , ' 2017-09-07 09:16:08 ' , 1 ) , ( 17 , ' [\"include\\/notifier.php\",\"wall-new\",\"1\"] ' , 20 , ' 2017-09-07 09:16:08 ' , 2016 , ' 2017-09-07 09:16:08 ' , 1 ) , ( 18 , ' [\"include\\/delivery.php\",\"wall-new\",1,13] ' , 20 , ' 2017-09-07 09:16:08 ' , 2016 , ' 2017-09-07 09:16:08 ' , 1 ) , ( 19 , ' [\"include\\/delivery.php\",\"wall-new\",1,17] ' , 20 , ' 2017-09-07 09:16:08 ' , 2016 , ' 2017-09-07 09:16:08 ' , 1 ) , ( 20 , ' [\"include\\/pubsubpublish.php\"] ' , 20 , ' 2017-09-07 09:16:08 ' , 2016 , ' 2017-09-07 09:16:08 ' , 1 ) , ( 21 , ' [\"include\\/create_shadowentry.php\",\"5\"] ' , 20 , ' 2017-09-07 09:16:41 ' , 2025 , ' 2017-09-07 09:16:42 ' , 1 ) , ( 22 , ' [\"include\\/notifier.php\",\"wall-new\",\"5\"] ' , 20 , ' 2017-09-07 09:16:41 ' , 2025 , ' 2017-09-07 09:16:42 ' , 1 ) , ( 23 , ' [\"include\\/delivery.php\",\"wall-new\",5,7] ' , 20 , ' 2017-09-07 09:16:41 ' , 2025 , ' 2017-09-07 09:16:42 ' , 1 ) , ( 24 , ' [\"include\\/delivery.php\",\"wall-new\",5,16] ' , 20 , ' 2017-09-07 09:16:41 ' , 2025 , ' 2017-09-07 09:16:42 ' , 1 ) , ( 25 , ' [\"include\\/pubsubpublish.php\"] ' , 20 , ' 2017-09-07 09:16:41 ' , 2025 , ' 2017-09-07 09:16:42 ' , 1 ) , ( 26 , ' [\"include\\/create_shadowentry.php\",\"9\"] ' , 20 , ' 2017-09-07 09:17:49 ' , 2038 , ' 2017-09-07 09:17:49 ' , 1 ) , ( 27 , ' [\"include\\/notifier.php\",\"wall-new\",\"9\"] ' , 20 , ' 2017-09-07 09:17:49 ' , 2038 , ' 2017-09-07 09:17:49 ' , 1 ) , ( 28 , ' [\"include\\/delivery.php\",\"wall-new\",9,10] ' , 20 , ' 2017-09-07 09:17:49 ' , 2038 , ' 2017-09-07 09:17:49 ' , 1 ) , ( 29 , ' [\"include\\/delivery.php\",\"wall-new\",9,14] ' , 20 , ' 2017-09-07 09:17:49 ' , 2038 , ' 2017-09-07 09:17:49 ' , 1 ) , ( 30 , ' [\"include\\/create_shadowentry.php\",\"12\"] ' , 20 , ' 2017-09-07 09:18:24 ' , 2043 , ' 2017-09-07 09:18:24 ' , 1 ) , ( 31 , ' [\"include\\/notifier.php\",\"comment-new\",\"12\"] ' , 20 , ' 2017-09-07 09:18:24 ' , 2043 , ' 2017-09-07 09:18:24 ' , 1 ) , ( 32 , ' [\"include\\/delivery.php\",\"comment-new\",12,9] ' , 20 , ' 2017-09-07 09:18:24 ' , 2043 , ' 2017-09-07 09:18:24 ' , 1 ) , ( 33 , ' [\"include\\/notifier.php\",\"comment-import\",\"13\"] ' , 20 , ' 2017-09-07 09:18:24 ' , 2043 , ' 2017-09-07 09:18:24 ' , 1 ) , ( 34 , ' [\"include\\/delivery.php\",\"comment-import\",13,10] ' , 20 , ' 2017-09-07 09:18:24 ' , 2043 , ' 2017-09-07 09:18:24 ' , 1 ) , ( 35 , ' [\"include\\
/* !40000 ALTER TABLE `workerqueue` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-02-02 21:58:08 +00:00
/* !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 */ ;
2017-09-07 09:28:08 +00:00
-- Dump completed on 2017-09-07 11:21:05