SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
-- Database: `webmaillite980`
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_addressbookchanges`
CREATE TABLE `[[dbprefix]]adav_addressbookchanges` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(255) NOT NULL,
`synctoken` int(11) unsigned NOT NULL,
`addressbookid` int(11) unsigned NOT NULL,
`operation` tinyint(1) NOT NULL,
KEY `addressbookid_synctoken` (`addressbookid`,`synctoken`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_addressbooks`
CREATE TABLE `[[dbprefix]]adav_addressbooks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`principaluri` varbinary(255) DEFAULT NULL,
`displayname` varchar(255) DEFAULT NULL,
`uri` varbinary(255) DEFAULT NULL,
`synctoken` int(11) unsigned NOT NULL DEFAULT '1',
UNIQUE KEY `principaluri` (`principaluri`(100),`uri`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_cache`
CREATE TABLE `[[dbprefix]]adav_cache` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user` varchar(255) DEFAULT NULL,
`calendaruri` varchar(255) DEFAULT NULL,
`type` tinyint(4) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
`starttime` int(11) DEFAULT NULL,
`eventid` varchar(45) DEFAULT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_calendarchanges`
CREATE TABLE `[[dbprefix]]adav_calendarchanges` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(255) NOT NULL,
`synctoken` int(11) unsigned NOT NULL,
`calendarid` int(11) unsigned NOT NULL,
`operation` tinyint(1) NOT NULL,
KEY `calendarid_synctoken` (`calendarid`,`synctoken`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_calendarinstances`
CREATE TABLE `[[dbprefix]]adav_calendarinstances` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`calendarid` int(10) unsigned NOT NULL,
`principaluri` varbinary(100) DEFAULT NULL,
`access` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 = owner, 2 = read, 3 = readwrite',
`displayname` varchar(100) DEFAULT NULL,
`uri` varbinary(255) DEFAULT NULL,
`calendarorder` int(11) unsigned NOT NULL DEFAULT '0',
`calendarcolor` varbinary(10) DEFAULT NULL,
`transparent` tinyint(1) NOT NULL DEFAULT '0',
`share_href` varbinary(100) DEFAULT NULL,
`share_displayname` varchar(100) DEFAULT NULL,
`share_invitestatus` tinyint(1) NOT NULL DEFAULT '2' COMMENT '1 = noresponse, 2 = accepted, 3 = declined, 4 = invalid',
`public` tinyint(1) NOT NULL DEFAULT '0',
UNIQUE KEY `principaluri` (`principaluri`,`uri`),
UNIQUE KEY `calendarid` (`calendarid`,`principaluri`),
UNIQUE KEY `calendarid_2` (`calendarid`,`share_href`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_calendarobjects`
CREATE TABLE `[[dbprefix]]adav_calendarobjects` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`calendardata` mediumblob,
`uri` varbinary(255) DEFAULT NULL,
`calendarid` int(10) unsigned NOT NULL,
`lastmodified` int(11) unsigned DEFAULT NULL,
`etag` varbinary(32) DEFAULT NULL,
`size` int(11) unsigned NOT NULL,
`componenttype` varbinary(8) DEFAULT NULL,
`firstoccurence` int(11) unsigned DEFAULT NULL,
`lastoccurence` int(11) unsigned DEFAULT NULL,
`uid` varbinary(255) DEFAULT NULL,
UNIQUE KEY `calendarid` (`calendarid`,`uri`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_calendars`
CREATE TABLE `[[dbprefix]]adav_calendars` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`synctoken` int(10) unsigned NOT NULL DEFAULT '1',
`components` varbinary(21) DEFAULT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_calendarsubscriptions`
CREATE TABLE `[[dbprefix]]adav_calendarsubscriptions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(255) NOT NULL,
`principaluri` varbinary(100) NOT NULL,
`displayname` varchar(100) DEFAULT NULL,
`refreshrate` varchar(10) DEFAULT NULL,
`calendarorder` int(11) unsigned NOT NULL DEFAULT '0',
`calendarcolor` varbinary(10) DEFAULT NULL,
`striptodos` tinyint(1) DEFAULT NULL,
`stripalarms` tinyint(1) DEFAULT NULL,
`stripattachments` tinyint(1) DEFAULT NULL,
`lastmodified` int(11) unsigned DEFAULT NULL,
UNIQUE KEY `principaluri` (`principaluri`,`uri`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_cards`
CREATE TABLE `[[dbprefix]]adav_cards` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`addressbookid` int(11) unsigned NOT NULL,
`uri` varbinary(255) DEFAULT NULL,
`lastmodified` int(11) unsigned DEFAULT NULL,
`etag` varbinary(32) DEFAULT NULL,
`size` int(11) unsigned NOT NULL,
KEY `addressbookid_index` (`addressbookid`),
KEY `lastmodified_index` (`lastmodified`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_groupmembers`
CREATE TABLE `[[dbprefix]]adav_groupmembers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`principal_id` int(11) unsigned NOT NULL,
`member_id` int(11) unsigned NOT NULL,
UNIQUE KEY `[[dbprefix]]ADAV_GROUPMEMBERS_MEMBER_ID_PRINCIPAL_ID_INDEX` (`principal_id`,`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_locks`
CREATE TABLE `[[dbprefix]]adav_locks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`owner` varchar(100) DEFAULT NULL,
`timeout` int(10) unsigned DEFAULT NULL,
`created` int(11) DEFAULT NULL,
`token` varbinary(100) DEFAULT NULL,
`scope` tinyint(4) DEFAULT NULL,
`depth` tinyint(4) DEFAULT NULL,
`uri` varbinary(1000) DEFAULT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_propertystorage`
CREATE TABLE `[[dbprefix]]adav_propertystorage` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varbinary(1024) NOT NULL,
`name` varbinary(100) NOT NULL,
`valuetype` int(10) unsigned DEFAULT NULL,
UNIQUE KEY `path_property` (`path`(600),`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_reminders`
CREATE TABLE `[[dbprefix]]adav_reminders` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user` varchar(100) NOT NULL,
`calendaruri` varchar(255) DEFAULT NULL,
`eventid` varchar(255) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
`starttime` int(11) DEFAULT NULL,
`allday` tinyint(1) NOT NULL DEFAULT '0',
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]adav_schedulingobjects`
CREATE TABLE `[[dbprefix]]adav_schedulingobjects` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`principaluri` varbinary(255) DEFAULT NULL,
`calendardata` mediumblob,
`uri` varbinary(255) DEFAULT NULL,
`lastmodified` int(11) unsigned DEFAULT NULL,
`etag` varbinary(32) DEFAULT NULL,
`size` int(11) unsigned NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts`
CREATE TABLE `[[dbprefix]]contacts` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`UUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`IdUser` int(11) NOT NULL DEFAULT '0',
`IdTenant` int(11) NOT NULL DEFAULT '0',
`Storage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`AddressBookId` int(11) DEFAULT NULL,
`FullName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`UseFriendlyName` tinyint(1) NOT NULL DEFAULT '1',
`PrimaryEmail` int(11) NOT NULL DEFAULT '0',
`PrimaryPhone` int(11) NOT NULL DEFAULT '1',
`PrimaryAddress` int(11) NOT NULL DEFAULT '0',
`ViewEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`FirstName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`LastName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`NickName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Skype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Facebook` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalAddress` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalCity` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalState` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalZip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalCountry` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalWeb` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalFax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalPhone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalMobile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessCompany` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessAddress` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessCity` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessState` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessZip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessCountry` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessJobTitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessDepartment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessOffice` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessPhone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessFax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessWeb` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`OtherEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Notes` text COLLATE utf8mb4_unicode_ci,
`BirthDay` int(11) NOT NULL DEFAULT '0',
`BirthMonth` int(11) NOT NULL DEFAULT '0',
`BirthYear` int(11) NOT NULL DEFAULT '0',
`ETag` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Auto` tinyint(1) NOT NULL DEFAULT '0',
`Frequency` int(11) NOT NULL DEFAULT '0',
`DateModified` datetime DEFAULT NULL,
`Properties` json DEFAULT NULL,
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
KEY `contacts_iduser_index` (`IdUser`),
KEY `contacts_idtenant_index` (`IdTenant`),
KEY `contacts_uuid_index` (`UUID`),
KEY `contacts_storage_index` (`Storage`),
KEY `contacts_frequency_index` (`Frequency`),
FULLTEXT KEY `contacts_fullname_index` (`FullName`),
FULLTEXT KEY `contacts_viewemail_index` (`ViewEmail`),
FULLTEXT KEY `contacts_personalemail_index` (`PersonalEmail`),
FULLTEXT KEY `contacts_businessemail_index` (`BusinessEmail`),
FULLTEXT KEY `contacts_businesscompany_index` (`BusinessCompany`),
FULLTEXT KEY `contacts_otheremail_index` (`OtherEmail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_addressbooks`
CREATE TABLE `[[dbprefix]]contacts_addressbooks` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`UUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`UserId` int(11) NOT NULL DEFAULT '0',
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
KEY `contacts_addressbooks_userid_index` (`UserId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_cards`
CREATE TABLE `[[dbprefix]]contacts_cards` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`CardId` int(11) NOT NULL DEFAULT '0',
`AddressBookId` int(11) NOT NULL DEFAULT '0',
`FullName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PrimaryEmail` int(11) NOT NULL DEFAULT '0',
`ViewEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`FirstName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`LastName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`PersonalEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`OtherEmail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`BusinessCompany` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Frequency` int(11) NOT NULL DEFAULT '0',
`IsGroup` tinyint(1) NOT NULL DEFAULT '0',
`Properties` json DEFAULT NULL,
KEY `contacts_cards_cardid_index` (`CardId`),
KEY `contacts_cards_addressbookid_index` (`AddressBookId`),
KEY `contacts_cards_isgroup_index` (`IsGroup`),
KEY `contacts_cards_frequency_index` (`Frequency`),
FULLTEXT KEY `contacts_cards_fullname_index` (`FullName`),
FULLTEXT KEY `contacts_cards_viewemail_index` (`ViewEmail`),
FULLTEXT KEY `contacts_cards_personalemail_index` (`PersonalEmail`),
FULLTEXT KEY `contacts_cards_businessemail_index` (`BusinessEmail`),
FULLTEXT KEY `contacts_cards_businesscompany_index` (`BusinessCompany`),
FULLTEXT KEY `contacts_cards_otheremail_index` (`OtherEmail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_ctags`
CREATE TABLE `[[dbprefix]]contacts_ctags` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`UserId` int(11) NOT NULL DEFAULT '0',
`Storage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`CTag` int(11) NOT NULL DEFAULT '0',
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
KEY `contacts_ctags_userid_index` (`UserId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_groups`
CREATE TABLE `[[dbprefix]]contacts_groups` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`UUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`IdUser` int(11) NOT NULL DEFAULT '0',
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`IsOrganization` tinyint(1) NOT NULL DEFAULT '0',
`Email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Company` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`City` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`State` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Fax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Web` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Events` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Properties` json DEFAULT NULL,
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
KEY `contacts_groups_iduser_index` (`IdUser`),
FULLTEXT KEY `contacts_groups_name_index` (`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_group_contact`
CREATE TABLE `[[dbprefix]]contacts_group_contact` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`GroupId` int(10) unsigned NOT NULL,
`ContactId` int(10) unsigned NOT NULL,
KEY `contacts_group_contact_groupid_index` (`GroupId`),
KEY `contacts_group_contact_contactid_index` (`ContactId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]contacts_group_events`
CREATE TABLE `[[dbprefix]]contacts_group_events` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`GroupUUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`CalendarUUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`EventUUID` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]core_auth_tokens`
CREATE TABLE `[[dbprefix]]core_auth_tokens` (
`Id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`UserId` int(11) NOT NULL DEFAULT '0',
`Token` text COLLATE utf8mb4_unicode_ci NOT NULL,
`LastUsageDateTime` int(11) NOT NULL DEFAULT '0',
`CreatedAt` timestamp NULL DEFAULT NULL,
`UpdatedAt` timestamp NULL DEFAULT NULL,
KEY `core_auth_tokens_userid_index` (`UserId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]core_channels`
CREATE TABLE `[[dbprefix]]core_channels` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,