Skip to content

Instantly share code, notes, and snippets.

@trivoallan
Created March 12, 2019 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trivoallan/eadb627a22dc280f0790db9d99cbcb77 to your computer and use it in GitHub Desktop.
Save trivoallan/eadb627a22dc280f0790db9d99cbcb77 to your computer and use it in GitHub Desktop.
-- Adminer 4.7.1 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `artist`;
CREATE TABLE `artist` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`name` varchar(200) DEFAULT NULL COMMENT 'Le nom de l''artiste',
`url` varchar(200) DEFAULT NULL COMMENT 'Un lien vers le site de l''artiste',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `artist` (`id`, `created_by`, `created_on`, `name`, `url`) VALUES
(1, 1, '2019-03-12 16:30:18', 'Goto80', NULL);
DROP TABLE IF EXISTS `broadcaster`;
CREATE TABLE `broadcaster` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'draft',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`nom` varchar(200) DEFAULT NULL COMMENT 'Le nom du diffuseur',
`frequency` varchar(200) DEFAULT NULL COMMENT 'La fréquence, pour les radio hertziennes',
`url` varchar(200) DEFAULT NULL COMMENT 'Un lien vers le site du diffuseur',
`description` varchar(200) DEFAULT NULL COMMENT 'Description du diffuseur, modalités de diffusion',
`since` date DEFAULT NULL COMMENT 'Date de première diffusion par ce diffuseur',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `collection`;
CREATE TABLE `collection` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'draft',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`name` varchar(200) DEFAULT NULL COMMENT 'Le nom de la collection',
`slug` varchar(200) DEFAULT NULL COMMENT 'Le nom de la collections dans les URL',
`description` text COMMENT 'Un texte décrivant la collection',
PRIMARY KEY (`id`),
UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `collection` (`id`, `status`, `created_by`, `created_on`, `modified_by`, `modified_on`, `name`, `slug`, `description`) VALUES
(1, 'published', 1, '2019-03-12 16:29:20', 1, '2019-03-12 16:29:20', 'Ailleurs', 'ailleurs', NULL);
DROP TABLE IF EXISTS `content`;
CREATE TABLE `content` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`about` text,
`credits` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `curator`;
CREATE TABLE `curator` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'published',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`name` varchar(200) DEFAULT NULL COMMENT 'Le nom du curateur',
`email` varchar(200) DEFAULT NULL COMMENT 'Une adresse email, pour communication interne',
`slug` varchar(200) DEFAULT NULL COMMENT 'Le nom du curateur dans les URL du site',
PRIMARY KEY (`id`),
UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `directus_activity`;
CREATE TABLE `directus_activity` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`action` varchar(45) NOT NULL,
`action_by` int(11) unsigned NOT NULL DEFAULT '0',
`action_on` datetime NOT NULL,
`ip` varchar(50) NOT NULL,
`user_agent` varchar(255) NOT NULL,
`collection` varchar(64) NOT NULL,
`item` varchar(255) NOT NULL,
`edited_on` datetime DEFAULT NULL,
`comment` text,
`comment_deleted_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_activity` (`id`, `action`, `action_by`, `action_on`, `ip`, `user_agent`, `collection`, `item`, `edited_on`, `comment`, `comment_deleted_on`) VALUES
(1, 'authenticate', 1, '2019-03-10 01:40:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(2, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '146', NULL, NULL, NULL),
(3, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(4, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '148', NULL, NULL, NULL),
(5, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '149', NULL, NULL, NULL),
(6, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '150', NULL, NULL, NULL),
(7, 'create', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '151', NULL, NULL, NULL),
(8, 'update', 1, '2019-03-10 01:43:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'curator', NULL, NULL, NULL),
(9, 'create', 1, '2019-03-10 01:44:17', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '152', NULL, NULL, NULL),
(10, 'create', 1, '2019-03-10 01:48:16', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '153', NULL, NULL, NULL),
(11, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '154', NULL, NULL, NULL),
(12, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(13, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '156', NULL, NULL, NULL),
(14, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '157', NULL, NULL, NULL),
(15, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '158', NULL, NULL, NULL),
(16, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '159', NULL, NULL, NULL),
(17, 'create', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '160', NULL, NULL, NULL),
(18, 'update', 1, '2019-03-10 01:56:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show', NULL, NULL, NULL),
(19, 'create', 1, '2019-03-10 01:57:11', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '161', NULL, NULL, NULL),
(20, 'create', 1, '2019-03-10 02:00:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '162', NULL, NULL, NULL),
(21, 'create', 1, '2019-03-10 02:10:58', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(22, 'create', 1, '2019-03-10 02:13:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(23, 'update', 1, '2019-03-10 02:14:51', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(24, 'create', 1, '2019-03-10 02:17:44', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '165', NULL, NULL, NULL),
(25, 'create', 1, '2019-03-10 02:19:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '166', NULL, NULL, NULL),
(26, 'upload', 1, '2019-03-10 02:23:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '1', NULL, NULL, NULL),
(27, 'update', 1, '2019-03-10 02:23:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '1', NULL, NULL, NULL),
(28, 'create', 1, '2019-03-10 02:23:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '1', NULL, NULL, NULL),
(29, 'update', 1, '2019-03-10 02:26:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '154', NULL, NULL, NULL),
(30, 'update', 1, '2019-03-10 02:26:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(31, 'update', 1, '2019-03-10 02:26:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '157', NULL, NULL, NULL),
(32, 'update', 1, '2019-03-10 02:26:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '158', NULL, NULL, NULL),
(33, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '159', NULL, NULL, NULL),
(34, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '160', NULL, NULL, NULL),
(35, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '161', NULL, NULL, NULL),
(36, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(37, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '162', NULL, NULL, NULL),
(38, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(39, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '165', NULL, NULL, NULL),
(40, 'update', 1, '2019-03-10 02:26:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '166', NULL, NULL, NULL),
(41, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '15', NULL, NULL, NULL),
(42, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '167', NULL, NULL, NULL),
(43, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '168', NULL, NULL, NULL),
(44, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '16', NULL, NULL, NULL),
(45, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '169', NULL, NULL, NULL),
(46, 'create', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '170', NULL, NULL, NULL),
(47, 'update', 1, '2019-03-10 02:28:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show_directus_curator', NULL, NULL, NULL),
(48, 'create', 1, '2019-03-10 02:29:51', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '1', NULL, NULL, NULL),
(49, 'update', 1, '2019-03-10 02:30:48', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '1', NULL, NULL, NULL),
(50, 'update', 1, '2019-03-10 02:30:48', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '1', NULL, NULL, NULL),
(51, 'create', 1, '2019-03-10 07:30:48', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '1', NULL, NULL, NULL),
(52, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '154', NULL, NULL, NULL),
(53, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(54, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '157', NULL, NULL, NULL),
(55, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '158', NULL, NULL, NULL),
(56, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '159', NULL, NULL, NULL),
(57, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '160', NULL, NULL, NULL),
(58, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '161', NULL, NULL, NULL),
(59, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(60, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '162', NULL, NULL, NULL),
(61, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(62, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '165', NULL, NULL, NULL),
(63, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '167', NULL, NULL, NULL),
(64, 'update', 1, '2019-03-10 02:31:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '166', NULL, NULL, NULL),
(65, 'update', 1, '2019-03-10 02:32:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(66, 'update', 1, '2019-03-10 02:32:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '148', NULL, NULL, NULL),
(67, 'update', 1, '2019-03-10 02:32:19', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '150', NULL, NULL, NULL),
(68, 'update', 1, '2019-03-10 02:32:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '151', NULL, NULL, NULL),
(69, 'update', 1, '2019-03-10 02:32:36', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '152', NULL, NULL, NULL),
(70, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '146', NULL, NULL, NULL),
(71, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(72, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '148', NULL, NULL, NULL),
(73, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '149', NULL, NULL, NULL),
(74, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '150', NULL, NULL, NULL),
(75, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '151', NULL, NULL, NULL),
(76, 'update', 1, '2019-03-10 02:32:37', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '152', NULL, NULL, NULL),
(77, 'update', 1, '2019-03-10 02:32:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '153', NULL, NULL, NULL),
(78, 'update', 1, '2019-03-10 02:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '153', NULL, NULL, NULL),
(79, 'update', 1, '2019-03-10 02:33:36', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '15', NULL, NULL, NULL),
(80, 'update', 1, '2019-03-10 02:33:36', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '16', NULL, NULL, NULL),
(81, 'update', 1, '2019-03-10 02:33:36', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '167', NULL, NULL, NULL),
(82, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '171', NULL, NULL, NULL),
(83, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '172', NULL, NULL, NULL),
(84, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '173', NULL, NULL, NULL),
(85, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '174', NULL, NULL, NULL),
(86, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '175', NULL, NULL, NULL),
(87, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '176', NULL, NULL, NULL),
(88, 'create', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '177', NULL, NULL, NULL),
(89, 'update', 1, '2019-03-10 02:36:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show_sections', NULL, NULL, NULL),
(90, 'create', 1, '2019-03-10 02:37:59', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '178', NULL, NULL, NULL),
(91, 'create', 1, '2019-03-10 02:38:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '179', NULL, NULL, NULL),
(92, 'create', 1, '2019-03-10 02:40:17', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '17', NULL, NULL, NULL),
(93, 'create', 1, '2019-03-10 02:40:17', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(94, 'update', 1, '2019-03-10 02:40:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '17', NULL, NULL, NULL),
(95, 'update', 1, '2019-03-10 02:40:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(96, 'update', 1, '2019-03-10 02:40:51', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show_sections', NULL, NULL, NULL),
(97, 'upload', 1, '2019-03-10 02:41:53', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '2', NULL, NULL, NULL),
(98, 'update', 1, '2019-03-10 02:43:13', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '17', NULL, NULL, NULL),
(99, 'update', 1, '2019-03-10 02:43:13', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(100, 'upload', 1, '2019-03-10 02:43:47', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '3', NULL, NULL, NULL),
(101, 'update', 1, '2019-03-10 02:47:53', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '17', NULL, NULL, NULL),
(102, 'update', 1, '2019-03-10 02:47:53', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(103, 'create', 1, '2019-03-10 02:49:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(104, 'create', 1, '2019-03-10 02:49:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '182', NULL, NULL, NULL),
(105, 'create', 1, '2019-03-10 02:49:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(106, 'create', 1, '2019-03-10 02:49:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(107, 'update', 1, '2019-03-10 02:49:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'track', NULL, NULL, NULL),
(108, 'create', 1, '2019-03-10 02:49:32', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(109, 'create', 1, '2019-03-10 02:51:13', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '186', NULL, NULL, NULL),
(110, 'create', 1, '2019-03-10 02:54:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(111, 'create', 1, '2019-03-10 02:54:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(112, 'create', 1, '2019-03-10 02:56:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '189', NULL, NULL, NULL),
(113, 'create', 1, '2019-03-10 02:56:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '190', NULL, NULL, NULL),
(114, 'create', 1, '2019-03-10 02:56:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '191', NULL, NULL, NULL),
(115, 'update', 1, '2019-03-10 02:56:30', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'author', NULL, NULL, NULL),
(116, 'create', 1, '2019-03-10 02:57:07', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '192', NULL, NULL, NULL),
(117, 'create', 1, '2019-03-10 02:57:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '193', NULL, NULL, NULL),
(118, 'create', 1, '2019-03-10 02:57:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '194', NULL, NULL, NULL),
(119, 'create', 1, '2019-03-10 02:57:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '195', NULL, NULL, NULL),
(120, 'update', 1, '2019-03-10 02:57:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'artist', NULL, NULL, NULL),
(121, 'create', 1, '2019-03-10 02:58:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '196', NULL, NULL, NULL),
(122, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(123, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(124, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(125, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(126, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(127, 'update', 1, '2019-03-10 02:58:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(128, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(129, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '18', NULL, NULL, NULL),
(130, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '198', NULL, NULL, NULL),
(131, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '199', NULL, NULL, NULL),
(132, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '19', NULL, NULL, NULL),
(133, 'create', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '200', NULL, NULL, NULL),
(134, 'update', 1, '2019-03-10 02:59:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'track_artist', NULL, NULL, NULL),
(135, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(136, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(137, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(138, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(139, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(140, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(141, 'update', 1, '2019-03-10 02:59:25', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(142, 'create', 1, '2019-03-10 03:00:44', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '201', NULL, NULL, NULL),
(143, 'create', 1, '2019-03-10 03:00:44', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '20', NULL, NULL, NULL),
(144, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(145, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(146, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(147, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(148, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(149, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(150, 'update', 1, '2019-03-10 03:03:00', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(151, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(152, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(153, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(154, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(155, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(156, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(157, 'update', 1, '2019-03-10 03:03:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(158, 'update', 1, '2019-03-10 03:03:47', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '20', NULL, NULL, NULL),
(159, 'update', 1, '2019-03-10 03:03:47', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '201', NULL, NULL, NULL),
(160, 'create', 1, '2019-03-10 03:06:57', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '202', NULL, NULL, NULL),
(161, 'update', 1, '2019-03-10 03:07:08', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '181', NULL, NULL, NULL),
(162, 'update', 1, '2019-03-10 03:07:08', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '183', NULL, NULL, NULL),
(163, 'update', 1, '2019-03-10 03:07:08', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '184', NULL, NULL, NULL),
(164, 'update', 1, '2019-03-10 03:07:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '202', NULL, NULL, NULL),
(165, 'update', 1, '2019-03-10 03:07:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '185', NULL, NULL, NULL),
(166, 'update', 1, '2019-03-10 03:07:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(167, 'update', 1, '2019-03-10 03:07:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '187', NULL, NULL, NULL),
(168, 'update', 1, '2019-03-10 03:07:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '188', NULL, NULL, NULL),
(169, 'update', 1, '2019-03-10 03:07:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '19', NULL, NULL, NULL),
(170, 'update', 1, '2019-03-10 03:07:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '18', NULL, NULL, NULL),
(171, 'update', 1, '2019-03-10 03:07:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '197', NULL, NULL, NULL),
(172, 'update', 1, '2019-03-10 03:09:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '20', NULL, NULL, NULL),
(173, 'update', 1, '2019-03-10 03:09:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '201', NULL, NULL, NULL),
(174, 'create', 1, '2019-03-10 03:11:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '203', NULL, NULL, NULL),
(175, 'create', 1, '2019-03-10 03:11:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '204', NULL, NULL, NULL),
(176, 'create', 1, '2019-03-10 03:11:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '205', NULL, NULL, NULL),
(177, 'create', 1, '2019-03-10 03:11:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '206', NULL, NULL, NULL),
(178, 'update', 1, '2019-03-10 03:11:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'broadcaster', NULL, NULL, NULL),
(179, 'create', 1, '2019-03-10 03:12:07', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '207', NULL, NULL, NULL),
(180, 'create', 1, '2019-03-10 03:12:50', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '208', NULL, NULL, NULL),
(181, 'create', 1, '2019-03-10 03:13:12', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '209', NULL, NULL, NULL),
(182, 'create', 1, '2019-03-10 03:14:57', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '210', NULL, NULL, NULL),
(183, 'update', 1, '2019-03-10 03:15:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '210', NULL, NULL, NULL),
(184, 'create', 1, '2019-03-10 03:16:03', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '211', NULL, NULL, NULL),
(185, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '212', NULL, NULL, NULL),
(186, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '213', NULL, NULL, NULL),
(187, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '214', NULL, NULL, NULL),
(188, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '215', NULL, NULL, NULL),
(189, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '216', NULL, NULL, NULL),
(190, 'create', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '217', NULL, NULL, NULL),
(191, 'update', 1, '2019-03-10 03:16:46', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'flyers', NULL, NULL, NULL),
(192, 'create', 1, '2019-03-10 03:18:07', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '218', NULL, NULL, NULL),
(193, 'create', 1, '2019-03-10 03:20:19', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '219', NULL, NULL, NULL),
(194, 'create', 1, '2019-03-10 03:20:34', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '220', NULL, NULL, NULL),
(195, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '221', NULL, NULL, NULL),
(196, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '222', NULL, NULL, NULL),
(197, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '223', NULL, NULL, NULL),
(198, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '224', NULL, NULL, NULL),
(199, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '225', NULL, NULL, NULL),
(200, 'create', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '226', NULL, NULL, NULL),
(201, 'update', 1, '2019-03-10 03:21:31', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'illustrators', NULL, NULL, NULL),
(202, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '227', NULL, NULL, NULL),
(203, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '228', NULL, NULL, NULL),
(204, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '229', NULL, NULL, NULL),
(205, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '230', NULL, NULL, NULL),
(206, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '231', NULL, NULL, NULL),
(207, 'create', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '232', NULL, NULL, NULL),
(208, 'update', 1, '2019-03-10 03:22:21', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'illustrator', NULL, NULL, NULL),
(209, 'create', 1, '2019-03-10 03:23:11', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '233', NULL, NULL, NULL),
(210, 'create', 1, '2019-03-10 03:24:01', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '234', NULL, NULL, NULL),
(211, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '21', NULL, NULL, NULL),
(212, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '235', NULL, NULL, NULL),
(213, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '236', NULL, NULL, NULL),
(214, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '237', NULL, NULL, NULL),
(215, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '22', NULL, NULL, NULL),
(216, 'create', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '238', NULL, NULL, NULL),
(217, 'update', 1, '2019-03-10 03:26:09', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'flyers_illustrator', NULL, NULL, NULL),
(218, 'upload', 1, '2019-03-10 03:27:03', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '4', NULL, NULL, NULL),
(219, 'update', 1, '2019-03-10 03:27:17', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '4', NULL, NULL, NULL),
(220, 'create', 1, '2019-03-10 03:27:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '1', NULL, NULL, NULL),
(221, 'create', 1, '2019-03-10 03:27:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '2', NULL, NULL, NULL),
(222, 'create', 1, '2019-03-10 03:27:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '1', NULL, NULL, NULL),
(223, 'create', 1, '2019-03-10 07:27:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers_illustrator', '1', NULL, NULL, NULL),
(224, 'create', 1, '2019-03-10 07:27:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers_illustrator', '2', NULL, NULL, NULL),
(225, 'create', 1, '2019-03-10 03:30:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '23', NULL, NULL, NULL),
(226, 'create', 1, '2019-03-10 03:30:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '239', NULL, NULL, NULL),
(227, 'upload', 1, '2019-03-10 03:32:29', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '5', NULL, NULL, NULL),
(228, 'update', 1, '2019-03-10 03:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '5', NULL, NULL, NULL),
(229, 'create', 1, '2019-03-10 03:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '3', NULL, NULL, NULL),
(230, 'create', 1, '2019-03-10 03:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '4', NULL, NULL, NULL),
(231, 'update', 1, '2019-03-10 03:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(232, 'update', 1, '2019-03-10 07:32:41', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(233, 'update', 1, '2019-03-10 03:32:42', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(234, 'update', 1, '2019-03-10 07:32:42', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(235, 'update', 1, '2019-03-10 03:32:42', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(236, 'update', 1, '2019-03-10 03:32:42', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '1', NULL, NULL, NULL),
(237, 'upload', 1, '2019-03-10 03:34:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '6', NULL, NULL, NULL),
(238, 'update', 1, '2019-03-10 03:35:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '6', NULL, NULL, NULL),
(239, 'create', 1, '2019-03-10 03:35:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '5', NULL, NULL, NULL),
(240, 'create', 1, '2019-03-10 03:35:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '3', NULL, NULL, NULL),
(241, 'create', 1, '2019-03-10 07:35:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers_illustrator', '5', NULL, NULL, NULL),
(242, 'update', 1, '2019-03-10 07:35:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '3', NULL, NULL, NULL),
(243, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(244, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(245, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '6', NULL, NULL, NULL),
(246, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '3', NULL, NULL, NULL),
(247, 'update', 1, '2019-03-10 07:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers_illustrator', '5', NULL, NULL, NULL),
(248, 'create', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '6', NULL, NULL, NULL),
(249, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(250, 'update', 1, '2019-03-10 07:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(251, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(252, 'update', 1, '2019-03-10 07:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(253, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(254, 'update', 1, '2019-03-10 03:35:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '1', NULL, NULL, NULL),
(255, 'update', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(256, 'update', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(257, 'update', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '6', NULL, NULL, NULL),
(258, 'update', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '3', NULL, NULL, NULL),
(259, 'update', 1, '2019-03-10 07:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers_illustrator', '5', NULL, NULL, NULL),
(260, 'create', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'illustrator', '7', NULL, NULL, NULL),
(261, 'update', 1, '2019-03-10 03:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(262, 'update', 1, '2019-03-10 07:36:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(263, 'update', 1, '2019-03-10 03:36:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(264, 'update', 1, '2019-03-10 07:36:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_user_roles', '1', NULL, NULL, NULL),
(265, 'update', 1, '2019-03-10 03:36:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(266, 'update', 1, '2019-03-10 03:36:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '1', NULL, NULL, NULL),
(267, 'soft-delete', 1, '2019-03-10 03:38:53', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '1', NULL, NULL, NULL),
(268, 'upload', 1, '2019-03-10 03:39:24', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(269, 'upload', 1, '2019-03-10 03:39:33', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '8', NULL, NULL, NULL),
(270, 'update', 1, '2019-03-10 03:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(271, 'create', 1, '2019-03-10 03:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '2', NULL, NULL, NULL),
(272, 'update', 1, '2019-03-10 03:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '8', NULL, NULL, NULL),
(273, 'create', 1, '2019-03-10 03:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '1', NULL, NULL, NULL),
(274, 'create', 1, '2019-03-10 03:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(275, 'create', 1, '2019-03-10 07:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(276, 'update', 1, '2019-03-10 07:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(277, 'create', 1, '2019-03-10 07:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '1', NULL, NULL, NULL),
(278, 'update', 1, '2019-03-10 07:39:54', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(279, 'soft-delete', 1, '2019-03-10 03:40:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '1', NULL, NULL, NULL),
(280, 'soft-delete', 1, '2019-03-10 03:40:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '2', NULL, NULL, NULL),
(281, 'soft-delete', 1, '2019-03-10 03:40:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'flyers', '3', NULL, NULL, NULL),
(282, 'update', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(283, 'update', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(284, 'update', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(285, 'update', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(286, 'update', 1, '2019-03-10 07:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(287, 'update', 1, '2019-03-10 07:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(288, 'update', 1, '2019-03-10 07:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(289, 'create', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '3', NULL, NULL, NULL),
(290, 'update', 1, '2019-03-10 03:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(291, 'update', 1, '2019-03-10 07:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(292, 'create', 1, '2019-03-10 07:41:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(293, 'soft-delete', 1, '2019-03-10 03:41:15', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '1', NULL, NULL, NULL),
(294, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(295, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(296, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(297, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(298, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(299, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(300, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(301, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(302, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(303, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(304, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(305, 'update', 1, '2019-03-10 03:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(306, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(307, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(308, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(309, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(310, 'create', 1, '2019-03-10 03:41:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '4', NULL, NULL, NULL),
(311, 'create', 1, '2019-03-10 03:41:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '5', NULL, NULL, NULL),
(312, 'update', 1, '2019-03-10 03:41:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(313, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(314, 'update', 1, '2019-03-10 07:41:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(315, 'create', 1, '2019-03-10 07:41:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(316, 'create', 1, '2019-03-10 07:41:39', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(317, 'update', 1, '2019-03-10 03:42:40', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '204', NULL, NULL, NULL),
(318, 'update', 1, '2019-03-10 03:43:03', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(319, 'update', 1, '2019-03-10 03:43:14', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '213', NULL, NULL, NULL),
(320, 'update', 1, '2019-03-10 03:43:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '228', NULL, NULL, NULL),
(321, 'update', 1, '2019-03-10 03:43:47', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(322, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(323, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(324, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(325, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(326, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(327, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(328, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(329, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(330, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(331, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(332, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(333, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(334, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(335, 'update', 1, '2019-03-10 03:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(336, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(337, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(338, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(339, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(340, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(341, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(342, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(343, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(344, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(345, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(346, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(347, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(348, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(349, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(350, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(351, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(352, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(353, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(354, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '7', NULL, NULL, NULL),
(355, 'update', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(356, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(357, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(358, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(359, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(360, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '4', NULL, NULL, NULL),
(361, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(362, 'create', 1, '2019-03-10 03:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '6', NULL, NULL, NULL),
(363, 'create', 1, '2019-03-10 03:44:24', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '7', NULL, NULL, NULL),
(364, 'update', 1, '2019-03-10 03:44:24', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(365, 'update', 1, '2019-03-10 07:44:22', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '2', NULL, NULL, NULL),
(366, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '3', NULL, NULL, NULL),
(367, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '4', NULL, NULL, NULL),
(368, 'update', 1, '2019-03-10 07:44:23', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '5', NULL, NULL, NULL),
(369, 'create', 1, '2019-03-10 07:44:24', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '6', NULL, NULL, NULL),
(370, 'create', 1, '2019-03-10 07:44:24', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '7', NULL, NULL, NULL),
(371, 'update', 1, '2019-03-10 03:45:38', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(372, 'update', 1, '2019-03-10 03:45:56', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '228', NULL, NULL, NULL),
(373, 'upload', 1, '2019-03-10 03:47:17', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '9', NULL, NULL, NULL),
(374, 'upload', 1, '2019-03-10 03:47:27', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '10', NULL, NULL, NULL),
(375, 'update', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '9', NULL, NULL, NULL),
(376, 'create', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '8', NULL, NULL, NULL),
(377, 'create', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '9', NULL, NULL, NULL),
(378, 'update', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_files', '10', NULL, NULL, NULL),
(379, 'create', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '2', NULL, NULL, NULL),
(380, 'create', 1, '2019-03-10 03:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '5', NULL, NULL, NULL),
(381, 'create', 1, '2019-03-10 07:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '8', NULL, NULL, NULL),
(382, 'create', 1, '2019-03-10 07:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_directus_curator', '9', NULL, NULL, NULL),
(383, 'update', 1, '2019-03-10 07:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_sections', '5', NULL, NULL, NULL),
(384, 'create', 1, '2019-03-10 07:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '2', NULL, NULL, NULL),
(385, 'update', 1, '2019-03-10 07:47:52', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '5', NULL, NULL, NULL),
(386, 'update', 1, '2019-03-10 03:48:56', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '202', NULL, NULL, NULL),
(387, 'update', 1, '2019-03-10 03:49:28', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '173', NULL, NULL, NULL),
(388, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '212', NULL, NULL, NULL),
(389, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '213', NULL, NULL, NULL),
(390, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '214', NULL, NULL, NULL),
(391, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '215', NULL, NULL, NULL),
(392, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '216', NULL, NULL, NULL),
(393, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '217', NULL, NULL, NULL),
(394, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '218', NULL, NULL, NULL),
(395, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '219', NULL, NULL, NULL),
(396, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '220', NULL, NULL, NULL),
(397, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '235', NULL, NULL, NULL),
(398, 'update', 1, '2019-03-10 03:50:02', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '239', NULL, NULL, NULL),
(399, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '212', NULL, NULL, NULL),
(400, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '213', NULL, NULL, NULL),
(401, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '214', NULL, NULL, NULL),
(402, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '215', NULL, NULL, NULL),
(403, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '216', NULL, NULL, NULL),
(404, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '217', NULL, NULL, NULL),
(405, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '218', NULL, NULL, NULL),
(406, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '235', NULL, NULL, NULL),
(407, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '219', NULL, NULL, NULL),
(408, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '220', NULL, NULL, NULL),
(409, 'update', 1, '2019-03-10 03:50:04', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '239', NULL, NULL, NULL),
(410, 'update', 1, '2019-03-10 03:50:05', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '212', NULL, NULL, NULL),
(411, 'update', 1, '2019-03-10 03:50:05', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '213', NULL, NULL, NULL),
(412, 'update', 1, '2019-03-10 03:50:05', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '214', NULL, NULL, NULL),
(413, 'update', 1, '2019-03-10 03:50:05', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '215', NULL, NULL, NULL),
(414, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '216', NULL, NULL, NULL),
(415, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '217', NULL, NULL, NULL),
(416, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '218', NULL, NULL, NULL),
(417, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '235', NULL, NULL, NULL),
(418, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '239', NULL, NULL, NULL),
(419, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '219', NULL, NULL, NULL),
(420, 'update', 1, '2019-03-10 03:50:06', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '220', NULL, NULL, NULL),
(421, 'authenticate', 1, '2019-03-10 04:26:24', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(422, 'create', 1, '2019-03-10 04:31:04', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'broadcaster', '1', NULL, NULL, NULL),
(423, 'update', 1, '2019-03-10 04:32:25', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'artist', NULL, NULL, NULL),
(424, 'update', 1, '2019-03-10 04:33:44', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'broadcaster', NULL, NULL, NULL),
(425, 'update', 1, '2019-03-10 04:34:10', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'curator', NULL, NULL, NULL),
(426, 'update', 1, '2019-03-10 04:35:42', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'flyers', NULL, NULL, NULL),
(427, 'update', 1, '2019-03-10 04:36:17', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'illustrator', NULL, NULL, NULL),
(428, 'update', 1, '2019-03-10 04:37:38', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show', NULL, NULL, NULL),
(429, 'update', 1, '2019-03-10 04:38:15', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'track', NULL, NULL, NULL),
(430, 'update', 1, '2019-03-10 04:39:00', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'track', NULL, NULL, NULL),
(431, 'update', 1, '2019-03-10 04:39:22', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show', NULL, NULL, NULL),
(432, 'create', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '240', NULL, NULL, NULL),
(433, 'create', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '241', NULL, NULL, NULL),
(434, 'create', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '242', NULL, NULL, NULL),
(435, 'create', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '243', NULL, NULL, NULL),
(436, 'create', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '244', NULL, NULL, NULL),
(437, 'update', 1, '2019-03-10 05:45:03', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'content', NULL, NULL, NULL),
(438, 'create', 1, '2019-03-10 05:46:32', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '245', NULL, NULL, NULL),
(439, 'update', 1, '2019-03-10 05:47:39', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'content', NULL, NULL, NULL),
(440, 'create', 1, '2019-03-10 05:51:16', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '246', NULL, NULL, NULL),
(441, 'authenticate', 1, '2019-03-10 05:51:45', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(442, 'authenticate', 1, '2019-03-10 15:26:04', '172.25.0.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(443, 'authenticate', 1, '2019-03-11 13:48:50', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(444, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(445, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(446, 'update', 1, '2019-03-11 17:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '1', NULL, NULL, NULL),
(447, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(448, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '1', NULL, NULL, NULL),
(449, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '2', NULL, NULL, NULL),
(450, 'update', 1, '2019-03-11 13:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(451, 'update', 1, '2019-03-11 17:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '1', NULL, NULL, NULL),
(452, 'create', 1, '2019-03-11 17:49:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '3', NULL, NULL, NULL),
(453, 'create', 1, '2019-03-11 13:51:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '247', NULL, NULL, NULL),
(454, 'update', 1, '2019-03-11 13:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(455, 'update', 1, '2019-03-11 13:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(456, 'update', 1, '2019-03-11 17:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '1', NULL, NULL, NULL),
(457, 'update', 1, '2019-03-11 17:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '3', NULL, NULL, NULL),
(458, 'update', 1, '2019-03-11 13:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(459, 'update', 1, '2019-03-11 13:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '1', NULL, NULL, NULL),
(460, 'update', 1, '2019-03-11 13:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '4', NULL, NULL, NULL),
(461, 'update', 1, '2019-03-11 17:51:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '1', NULL, NULL, NULL),
(462, 'create', 1, '2019-03-11 13:57:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '24', NULL, NULL, NULL),
(463, 'create', 1, '2019-03-11 13:57:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '248', NULL, NULL, NULL),
(464, 'create', 1, '2019-03-11 13:57:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '249', NULL, NULL, NULL),
(465, 'create', 1, '2019-03-11 13:57:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '25', NULL, NULL, NULL),
(466, 'create', 1, '2019-03-11 13:57:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '250', NULL, NULL, NULL),
(467, 'create', 1, '2019-03-11 13:57:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '251', NULL, NULL, NULL),
(468, 'update', 1, '2019-03-11 13:57:29', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show_track', NULL, NULL, NULL),
(469, 'create', 1, '2019-03-11 14:01:40', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '252', NULL, NULL, NULL),
(470, 'create', 1, '2019-03-11 14:05:33', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '253', NULL, NULL, NULL),
(471, 'create', 1, '2019-03-11 14:05:33', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '26', NULL, NULL, NULL),
(472, 'create', 1, '2019-03-11 14:05:33', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '27', NULL, NULL, NULL),
(473, 'update', 1, '2019-03-11 14:06:14', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '252', NULL, NULL, NULL),
(474, 'update', 1, '2019-03-11 14:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '1', NULL, NULL, NULL),
(475, 'update', 1, '2019-03-11 14:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '2', NULL, NULL, NULL),
(476, 'create', 1, '2019-03-11 14:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track', '6', NULL, NULL, NULL),
(477, 'create', 1, '2019-03-11 18:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '4', NULL, NULL, NULL),
(478, 'create', 1, '2019-03-11 18:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'track_artist', '5', NULL, NULL, NULL),
(479, 'update', 1, '2019-03-11 14:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show', '4', NULL, NULL, NULL),
(480, 'create', 1, '2019-03-11 18:07:05', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'show_track', '1', NULL, NULL, NULL),
(481, 'authenticate', 1, '2019-03-11 16:07:03', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(482, 'create', 1, '2019-03-11 16:07:46', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '254', NULL, NULL, NULL),
(483, 'authenticate', 1, '2019-03-11 18:02:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(484, 'create', 1, '2019-03-11 18:03:27', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '255', NULL, NULL, NULL),
(485, 'create', 1, '2019-03-11 18:03:27', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '256', NULL, NULL, NULL),
(486, 'create', 1, '2019-03-11 18:03:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '257', NULL, NULL, NULL),
(487, 'create', 1, '2019-03-11 18:03:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '258', NULL, NULL, NULL),
(488, 'create', 1, '2019-03-11 18:03:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '259', NULL, NULL, NULL),
(489, 'create', 1, '2019-03-11 18:03:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '260', NULL, NULL, NULL),
(490, 'update', 1, '2019-03-11 18:03:28', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'collection', NULL, NULL, NULL),
(491, 'create', 1, '2019-03-11 18:04:19', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '261', NULL, NULL, NULL),
(492, 'create', 1, '2019-03-11 18:13:09', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '262', NULL, NULL, NULL),
(493, 'create', 1, '2019-03-11 18:13:48', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '263', NULL, NULL, NULL),
(494, 'update', 1, '2019-03-11 18:14:01', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'collection', NULL, NULL, NULL),
(495, 'update', 1, '2019-03-11 18:14:25', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_collections', 'show', NULL, NULL, NULL),
(496, 'update', 1, '2019-03-11 18:15:51', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '256', NULL, NULL, NULL),
(497, 'update', 1, '2019-03-11 18:16:12', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(498, 'update', 1, '2019-03-11 18:16:15', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(499, 'update', 1, '2019-03-11 18:16:24', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(500, 'create', 1, '2019-03-11 18:16:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '28', NULL, NULL, NULL),
(501, 'update', 1, '2019-03-11 18:16:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(502, 'create', 1, '2019-03-11 18:17:49', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '29', NULL, NULL, NULL),
(503, 'update', 1, '2019-03-11 18:17:49', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(504, 'update', 1, '2019-03-11 18:18:45', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '29', NULL, NULL, NULL),
(505, 'update', 1, '2019-03-11 18:18:45', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(506, 'create', 1, '2019-03-11 18:19:03', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '30', NULL, NULL, NULL),
(507, 'update', 1, '2019-03-11 18:19:03', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(508, 'update', 1, '2019-03-11 18:19:21', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '30', NULL, NULL, NULL),
(509, 'update', 1, '2019-03-11 18:19:21', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(510, 'authenticate', 1, '2019-03-11 18:36:34', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(511, 'authenticate', 1, '2019-03-12 10:32:26', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(512, 'create', 1, '2019-03-12 10:32:46', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '1', NULL, NULL, NULL),
(513, 'create', 1, '2019-03-12 10:32:56', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '2', NULL, NULL, NULL),
(514, 'update', 1, '2019-03-12 10:33:04', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '2', NULL, NULL, NULL),
(515, 'create', 1, '2019-03-12 10:33:30', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '3', NULL, NULL, NULL),
(516, 'update', 1, '2019-03-12 10:33:35', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '3', NULL, NULL, NULL),
(517, 'update', 1, '2019-03-12 10:34:16', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '30', NULL, NULL, NULL),
(518, 'update', 1, '2019-03-12 10:34:16', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '163', NULL, NULL, NULL),
(519, 'create', 1, '2019-03-12 10:35:44', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '264', NULL, NULL, NULL),
(520, 'create', 1, '2019-03-12 10:35:44', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '31', NULL, NULL, NULL),
(521, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '154', NULL, NULL, NULL),
(522, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(523, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '157', NULL, NULL, NULL),
(524, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '158', NULL, NULL, NULL),
(525, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '159', NULL, NULL, NULL),
(526, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '160', NULL, NULL, NULL),
(527, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '161', NULL, NULL, NULL),
(528, 'update', 1, '2019-03-12 10:35:52', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '162', NULL, NULL, NULL),
(529, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(530, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '165', NULL, NULL, NULL),
(531, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '264', NULL, NULL, NULL),
(532, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '167', NULL, NULL, NULL),
(533, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '166', NULL, NULL, NULL),
(534, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(535, 'update', 1, '2019-03-12 10:35:53', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '253', NULL, NULL, NULL),
(536, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '154', NULL, NULL, NULL),
(537, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '155', NULL, NULL, NULL),
(538, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '157', NULL, NULL, NULL),
(539, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '158', NULL, NULL, NULL),
(540, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '159', NULL, NULL, NULL),
(541, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '160', NULL, NULL, NULL),
(542, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '161', NULL, NULL, NULL),
(543, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '162', NULL, NULL, NULL),
(544, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '264', NULL, NULL, NULL),
(545, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '164', NULL, NULL, NULL),
(546, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '165', NULL, NULL, NULL),
(547, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '167', NULL, NULL, NULL),
(548, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '166', NULL, NULL, NULL),
(549, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '180', NULL, NULL, NULL),
(550, 'update', 1, '2019-03-12 10:36:18', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '253', NULL, NULL, NULL),
(551, 'update', 1, '2019-03-12 10:36:27', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '31', NULL, NULL, NULL),
(552, 'update', 1, '2019-03-12 10:36:31', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_relations', '31', NULL, NULL, NULL),
(553, 'update', 1, '2019-03-12 14:59:07', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '6', NULL, NULL, NULL),
(554, 'update', 1, '2019-03-12 14:59:07', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '7', NULL, NULL, NULL),
(555, 'update', 1, '2019-03-12 14:59:07', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '8', NULL, NULL, NULL),
(556, 'update', 1, '2019-03-12 14:59:07', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'curator', '9', NULL, NULL, NULL),
(557, 'create', 1, '2019-03-12 15:01:13', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '265', NULL, NULL, NULL),
(558, 'update', 1, '2019-03-12 15:01:16', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '146', NULL, NULL, NULL),
(559, 'update', 1, '2019-03-12 15:01:16', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '147', NULL, NULL, NULL),
(560, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '148', NULL, NULL, NULL),
(561, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '149', NULL, NULL, NULL),
(562, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '150', NULL, NULL, NULL),
(563, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '151', NULL, NULL, NULL),
(564, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '152', NULL, NULL, NULL),
(565, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '265', NULL, NULL, NULL),
(566, 'update', 1, '2019-03-12 15:01:17', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_fields', '153', NULL, NULL, NULL),
(567, 'update', 1, '2019-03-12 16:14:24', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_settings', '5', NULL, NULL, NULL),
(568, 'update', 1, '2019-03-12 16:14:48', '172.25.0.6', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_settings', '5', NULL, NULL, NULL),
(569, 'authenticate', 1, '2019-03-12 16:24:55', '172.25.0.3', 'axios/0.18.0', 'directus_users', '1', NULL, NULL, NULL),
(570, 'authenticate', 1, '2019-03-12 16:26:33', '172.25.0.3', 'axios/0.18.0', 'directus_users', '1', NULL, NULL, NULL),
(571, 'authenticate', 1, '2019-03-12 16:28:31', '172.25.0.3', 'axios/0.18.0', 'directus_users', '1', NULL, NULL, NULL),
(572, 'authenticate', 1, '2019-03-12 16:29:08', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'directus_users', '1', NULL, NULL, NULL),
(573, 'create', 1, '2019-03-12 16:29:20', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'collection', '1', NULL, NULL, NULL),
(574, 'authenticate', 1, '2019-03-12 16:29:44', '172.25.0.3', 'axios/0.18.0', 'directus_users', '1', NULL, NULL, NULL),
(575, 'create', 1, '2019-03-12 16:30:18', '172.25.0.3', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/72.0.3626.121 Chrome/72.0.3626.121 Safari/537.36', 'artist', '1', NULL, NULL, NULL),
(576, 'authenticate', 1, '2019-03-12 16:30:40', '172.25.0.3', 'axios/0.18.0', 'directus_users', '1', NULL, NULL, NULL);
DROP TABLE IF EXISTS `directus_activity_seen`;
CREATE TABLE `directus_activity_seen` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`activity` int(11) unsigned NOT NULL,
`user` int(11) unsigned NOT NULL DEFAULT '0',
`seen_on` datetime DEFAULT NULL,
`archived` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `directus_collections`;
CREATE TABLE `directus_collections` (
`collection` varchar(64) NOT NULL,
`managed` tinyint(1) unsigned NOT NULL DEFAULT '1',
`hidden` tinyint(1) unsigned NOT NULL DEFAULT '0',
`single` tinyint(1) unsigned NOT NULL DEFAULT '0',
`icon` varchar(30) DEFAULT NULL,
`note` varchar(255) DEFAULT NULL,
`translation` text,
PRIMARY KEY (`collection`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_collections` (`collection`, `managed`, `hidden`, `single`, `icon`, `note`, `translation`) VALUES
('artist', 1, 0, 0, 'accessibility', NULL, NULL),
('broadcaster', 1, 0, 0, 'settings_input_antenna', NULL, NULL),
('collection', 1, 0, 0, 'shop_two', NULL, NULL),
('content', 1, 0, 1, 'font_download', NULL, NULL),
('curator', 1, 0, 0, 'accessibility_new', NULL, NULL),
('flyers', 1, 0, 0, 'collections', NULL, NULL),
('flyers_illustrator', 1, 1, 0, NULL, 'Junction Collection', NULL),
('illustrator', 1, 0, 0, 'accessibility', NULL, NULL),
('show', 1, 0, 0, 'shop', NULL, NULL),
('show_directus_curator', 1, 1, 0, NULL, 'Junction Collection', NULL),
('show_sections', 1, 1, 0, NULL, NULL, NULL),
('show_track', 1, 1, 0, NULL, 'Junction Collection', NULL),
('track', 1, 0, 0, 'music_video', NULL, NULL),
('track_artist', 1, 1, 0, NULL, 'Junction Collection', NULL);
DROP TABLE IF EXISTS `directus_collection_presets`;
CREATE TABLE `directus_collection_presets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`user` int(11) unsigned DEFAULT NULL,
`role` int(11) unsigned DEFAULT NULL,
`collection` varchar(64) NOT NULL,
`search_query` varchar(100) DEFAULT NULL,
`filters` text,
`view_type` varchar(100) NOT NULL DEFAULT 'tabular',
`view_query` text,
`view_options` text,
`translation` text,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_user_collection_title` (`user`,`collection`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_collection_presets` (`id`, `title`, `user`, `role`, `collection`, `search_query`, `filters`, `view_type`, `view_query`, `view_options`, `translation`) VALUES
(1, NULL, NULL, NULL, 'directus_activity', NULL, NULL, 'tabular', '{\"tabular\":{\"sort\":\"-action_on\",\"fields\":\"action,action_by,action_on,collection,item\"}}', '{\"tabular\":{\"widths\":{\"action\":170,\"action_by\":170,\"action_on\":180,\"collection\":200,\"item\":200}}}', NULL),
(2, NULL, NULL, NULL, 'directus_files', NULL, NULL, 'cards', NULL, '{\"cards\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"}}', NULL),
(3, NULL, NULL, NULL, 'directus_users', NULL, NULL, 'cards', NULL, '{\"cards\":{\"title\":\"first_name\",\"subtitle\":\"last_name\",\"content\":\"title\",\"src\":\"avatar\",\"icon\":\"person\"}}', NULL),
(4, NULL, 1, NULL, 'show', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"status,collection,reference,title,release_date,description,curators\",\"sort\":\"-release_date\"}}', '{\"tabular\":{\"widths\":{\"status\":60,\"collection\":102,\"reference\":81,\"title\":149,\"release_date\":200,\"description\":373,\"curators\":200}}}', NULL),
(5, NULL, 1, NULL, 'curator', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"status,name,email\"}}', '{\"tabular\":{\"widths\":{\"status\":70,\"name\":200,\"email\":200}}}', NULL),
(6, NULL, 1, NULL, 'flyers', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"status,image,illustrators,period_start,period_stop\"}}', '{\"tabular\":{\"widths\":{\"status\":66,\"image\":200,\"illustrators\":200,\"period_start\":200,\"period_stop\":200}}}', NULL),
(7, NULL, 1, NULL, 'artist', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"name,url,created_on\"}}', NULL, NULL),
(8, NULL, 1, NULL, 'broadcaster', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"status,nom,frequency,url,since,description\"}}', '{\"tabular\":{\"widths\":{\"status\":65,\"nom\":200,\"frequency\":200,\"url\":200,\"since\":200,\"description\":200}}}', NULL),
(9, NULL, 1, NULL, 'collection', NULL, NULL, 'tabular', '{\"tabular\":{\"fields\":\"status,name,description\",\"sort\":\"name\"}}', NULL, NULL);
DROP TABLE IF EXISTS `directus_fields`;
CREATE TABLE `directus_fields` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`collection` varchar(64) NOT NULL,
`field` varchar(64) NOT NULL,
`type` varchar(64) NOT NULL,
`interface` varchar(64) DEFAULT NULL,
`options` text,
`locked` tinyint(1) unsigned NOT NULL DEFAULT '0',
`validation` varchar(255) DEFAULT NULL,
`required` tinyint(1) unsigned NOT NULL DEFAULT '0',
`readonly` tinyint(1) unsigned NOT NULL DEFAULT '0',
`hidden_detail` tinyint(1) unsigned NOT NULL DEFAULT '0',
`hidden_browse` tinyint(1) unsigned NOT NULL DEFAULT '0',
`sort` int(11) unsigned DEFAULT NULL,
`width` int(11) unsigned NOT NULL DEFAULT '4',
`group` int(11) unsigned DEFAULT NULL,
`note` varchar(1024) DEFAULT NULL,
`translation` text,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_collection_field` (`collection`,`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_fields` (`id`, `collection`, `field`, `type`, `interface`, `options`, `locked`, `validation`, `required`, `readonly`, `hidden_detail`, `hidden_browse`, `sort`, `width`, `group`, `note`, `translation`) VALUES
(1, 'directus_activity', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(2, 'directus_activity', 'action', 'string', 'activity-icon', NULL, 1, NULL, 0, 1, 0, 0, 1, 4, NULL, NULL, NULL),
(3, 'directus_activity', 'collection', 'string', 'collections', NULL, 1, NULL, 0, 1, 0, 0, 2, 2, NULL, NULL, NULL),
(4, 'directus_activity', 'item', 'string', 'text-input', NULL, 1, NULL, 0, 1, 0, 0, 3, 2, NULL, NULL, NULL),
(5, 'directus_activity', 'action_by', 'integer', 'user', NULL, 1, NULL, 0, 1, 0, 0, 4, 2, NULL, NULL, NULL),
(6, 'directus_activity', 'action_on', 'datetime', 'datetime', '{\"showRelative\":true}', 1, NULL, 0, 1, 0, 0, 5, 2, NULL, NULL, NULL),
(7, 'directus_activity', 'edited_on', 'datetime', 'datetime', '{\"showRelative\":true}', 1, NULL, 0, 1, 0, 0, 6, 2, NULL, NULL, NULL),
(8, 'directus_activity', 'comment_deleted_on', 'datetime', 'datetime', '{\"showRelative\":true}', 1, NULL, 0, 1, 0, 0, 7, 2, NULL, NULL, NULL),
(9, 'directus_activity', 'ip', 'string', 'text-input', NULL, 1, NULL, 0, 1, 0, 0, 8, 2, NULL, NULL, NULL),
(10, 'directus_activity', 'user_agent', 'string', 'text-input', NULL, 1, NULL, 0, 1, 0, 0, 9, 2, NULL, NULL, NULL),
(11, 'directus_activity', 'comment', 'string', 'textarea', NULL, 1, NULL, 0, 1, 0, 0, 10, 4, NULL, NULL, NULL),
(12, 'directus_collection_presets', 'id', 'integer', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(13, 'directus_collection_presets', 'title', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(14, 'directus_collection_presets', 'user', 'integer', 'user', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(15, 'directus_collection_presets', 'role', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(16, 'directus_collection_presets', 'collection', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(17, 'directus_collection_presets', 'search_query', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(18, 'directus_collection_presets', 'filters', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(19, 'directus_collection_presets', 'view_options', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(20, 'directus_collection_presets', 'view_type', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(21, 'directus_collection_presets', 'view_query', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(22, 'directus_collections', 'fields', 'o2m', 'one-to-many', NULL, 1, NULL, 0, 0, 1, 1, 1, 4, NULL, NULL, NULL),
(23, 'directus_collections', 'collection', 'string', 'primary-key', NULL, 1, NULL, 1, 1, 0, 0, 2, 2, NULL, NULL, NULL),
(24, 'directus_collections', 'note', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, 3, 2, NULL, NULL, NULL),
(25, 'directus_collections', 'managed', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, 4, 1, NULL, NULL, NULL),
(26, 'directus_collections', 'hidden', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, 5, 1, NULL, NULL, NULL),
(27, 'directus_collections', 'single', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, 6, 1, NULL, NULL, NULL),
(28, 'directus_collections', 'translation', 'json', 'code', NULL, 1, NULL, 0, 0, 1, 0, 7, 4, NULL, NULL, NULL),
(29, 'directus_collections', 'icon', 'string', 'icon', NULL, 1, NULL, 0, 0, 0, 0, 8, 4, NULL, NULL, NULL),
(30, 'directus_fields', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(31, 'directus_fields', 'collection', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(32, 'directus_fields', 'field', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(33, 'directus_fields', 'type', 'string', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(34, 'directus_fields', 'interface', 'string', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(35, 'directus_fields', 'options', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(36, 'directus_fields', 'locked', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(37, 'directus_fields', 'translation', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(38, 'directus_fields', 'readonly', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(39, 'directus_fields', 'validation', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(40, 'directus_fields', 'required', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(41, 'directus_fields', 'sort', 'sort', 'sort', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(42, 'directus_fields', 'note', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(43, 'directus_fields', 'hidden_detail', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(44, 'directus_fields', 'hidden_browse', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(45, 'directus_fields', 'width', 'integer', 'numeric', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(46, 'directus_fields', 'group', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(47, 'directus_files', 'data', 'alias', 'file', NULL, 1, NULL, 0, 0, 1, 0, 0, 4, NULL, NULL, NULL),
(48, 'directus_files', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, 1, 4, NULL, NULL, NULL),
(49, 'directus_files', 'preview', 'alias', 'file-preview', NULL, 1, NULL, 0, 0, 0, 0, 2, 4, NULL, NULL, NULL),
(50, 'directus_files', 'title', 'string', 'text-input', '{\"placeholder\":\"Enter a descriptive title...\",\"iconRight\":\"title\"}', 1, NULL, 0, 0, 0, 0, 3, 2, NULL, NULL, NULL),
(51, 'directus_files', 'filename', 'string', 'text-input', '{\"placeholder\":\"Enter a unique file name...\",\"iconRight\":\"insert_drive_file\"}', 1, NULL, 0, 1, 0, 0, 4, 2, NULL, NULL, NULL),
(52, 'directus_files', 'tags', 'array', 'tags', NULL, 0, NULL, 0, 0, 0, 0, 5, 2, NULL, NULL, NULL),
(53, 'directus_files', 'location', 'string', 'text-input', '{\"placeholder\":\"Enter a location...\",\"iconRight\":\"place\"}', 0, NULL, 0, 0, 0, 0, 6, 2, NULL, NULL, NULL),
(54, 'directus_files', 'description', 'string', 'wysiwyg', '{\"placeholder\":\"Enter a caption or description...\"}', 0, NULL, 0, 0, 0, 0, 7, 4, NULL, NULL, NULL),
(55, 'directus_files', 'width', 'integer', 'numeric', '{\"iconRight\":\"straighten\"}', 1, NULL, 0, 1, 0, 0, 8, 1, NULL, NULL, NULL),
(56, 'directus_files', 'height', 'integer', 'numeric', '{\"iconRight\":\"straighten\"}', 1, NULL, 0, 1, 0, 0, 9, 1, NULL, NULL, NULL),
(57, 'directus_files', 'duration', 'integer', 'numeric', '{\"iconRight\":\"timer\"}', 1, NULL, 0, 1, 0, 0, 10, 1, NULL, NULL, NULL),
(58, 'directus_files', 'filesize', 'integer', 'file-size', '{\"iconRight\":\"storage\"}', 1, NULL, 0, 1, 0, 0, 11, 1, NULL, NULL, NULL),
(59, 'directus_files', 'uploaded_on', 'datetime', 'datetime', '{\"iconRight\":\"today\"}', 1, NULL, 0, 1, 0, 0, 12, 2, NULL, NULL, NULL),
(60, 'directus_files', 'uploaded_by', 'integer', 'user', NULL, 1, NULL, 0, 1, 0, 0, 13, 2, NULL, NULL, NULL),
(61, 'directus_files', 'metadata', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, 14, 4, NULL, NULL, NULL),
(62, 'directus_files', 'type', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(63, 'directus_files', 'charset', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 1, NULL, 4, NULL, NULL, NULL),
(64, 'directus_files', 'embed', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(65, 'directus_files', 'folder', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(66, 'directus_files', 'storage', 'string', 'text-input', NULL, 1, NULL, 0, 0, 1, 1, NULL, 4, NULL, NULL, NULL),
(67, 'directus_files', 'checksum', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(68, 'directus_folders', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(69, 'directus_folders', 'name', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(70, 'directus_folders', 'parent_folder', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(71, 'directus_permissions', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(72, 'directus_permissions', 'collection', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(73, 'directus_permissions', 'role', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(74, 'directus_permissions', 'status', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(75, 'directus_permissions', 'create', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(76, 'directus_permissions', 'read', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(77, 'directus_permissions', 'update', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(78, 'directus_permissions', 'delete', 'string', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(79, 'directus_permissions', 'comment', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(80, 'directus_permissions', 'explain', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(81, 'directus_permissions', 'status_blacklist', 'array', 'tags', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(82, 'directus_permissions', 'read_field_blacklist', 'array', 'tags', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(83, 'directus_permissions', 'write_field_blacklist', 'array', 'tags', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(84, 'directus_relations', 'id', 'integer', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(85, 'directus_relations', 'collection_many', 'string', 'collections', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(86, 'directus_relations', 'field_many', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(87, 'directus_relations', 'collection_one', 'string', 'collections', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(88, 'directus_relations', 'field_one', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(89, 'directus_relations', 'junction_field', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(90, 'directus_revisions', 'id', 'integer', 'primary-key', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(91, 'directus_revisions', 'activity', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(92, 'directus_revisions', 'collection', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(93, 'directus_revisions', 'item', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(94, 'directus_revisions', 'data', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(95, 'directus_revisions', 'delta', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(96, 'directus_revisions', 'parent_item', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(97, 'directus_revisions', 'parent_collection', 'string', 'collections', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(98, 'directus_revisions', 'parent_changed', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(99, 'directus_roles', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(100, 'directus_roles', 'external_id', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 1, NULL, 4, NULL, NULL, NULL),
(101, 'directus_roles', 'name', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, 1, 2, NULL, NULL, NULL),
(102, 'directus_roles', 'description', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, 2, 2, NULL, NULL, NULL),
(103, 'directus_roles', 'ip_whitelist', 'string', 'textarea', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(104, 'directus_roles', 'nav_blacklist', 'string', 'textarea', NULL, 1, NULL, 0, 0, 1, 1, NULL, 4, NULL, NULL, NULL),
(105, 'directus_roles', 'users', 'o2m', 'many-to-many', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(106, 'directus_settings', 'project_name', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(107, 'directus_settings', 'project_url', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(108, 'directus_settings', 'app_url', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(109, 'directus_settings', 'logo', 'file', 'file', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(110, 'directus_settings', 'color', 'string', 'color-palette', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(111, 'directus_settings', 'default_limit', 'integer', 'numeric', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(112, 'directus_settings', 'sort_null_last', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Will sort values with null at the end of the result', NULL),
(113, 'directus_settings', 'auto_sign_out', 'integer', 'numeric', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(114, 'directus_settings', 'trusted_proxies', 'array', 'tags', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(115, 'directus_settings', 'youtube_api', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(116, 'directus_settings', 'thumbnail_dimensions', 'array', 'tags', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(117, 'directus_settings', 'thumbnail_quality_tags', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(118, 'directus_settings', 'thumbnail_actions', 'json', 'code', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(119, 'directus_settings', 'thumbnail_cache_ttl', 'integer', 'numeric', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(120, 'directus_settings', 'thumbnail_not_found_location', 'string', 'text-input', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(121, 'directus_users', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, 1, 4, NULL, NULL, NULL),
(122, 'directus_users', 'status', 'status', 'status', '{\"status_mapping\":{\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"light-gray\",\"listing_subdued\":false,\"listing_badge\":true,\"soft_delete\":false},\"invited\":{\"name\":\"Invited\",\"text_color\":\"white\",\"background_color\":\"light-gray\",\"listing_subdued\":false,\"listing_badge\":true,\"soft_delete\":false},\"active\":{\"name\":\"Active\",\"text_color\":\"white\",\"background_color\":\"success\",\"listing_subdued\":false,\"listing_badge\":false,\"soft_delete\":false},\"suspended\":{\"name\":\"Suspended\",\"text_color\":\"white\",\"background_color\":\"light-gray\",\"listing_subdued\":false,\"listing_badge\":true,\"soft_delete\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"danger\",\"listing_subdued\":false,\"listing_badge\":true,\"soft_delete\":true}}}', 1, NULL, 0, 0, 0, 0, 2, 4, NULL, NULL, NULL),
(123, 'directus_users', 'first_name', 'string', 'text-input', '{\"placeholder\":\"Enter your give name...\"}', 1, NULL, 1, 0, 0, 0, 3, 2, NULL, NULL, NULL),
(124, 'directus_users', 'last_name', 'string', 'text-input', '{\"placeholder\":\"Enter your surname...\"}', 1, NULL, 1, 0, 0, 0, 4, 2, NULL, NULL, NULL),
(125, 'directus_users', 'email', 'string', 'text-input', '{\"placeholder\":\"Enter your email address...\"}', 1, '$email', 1, 0, 0, 0, 5, 2, NULL, NULL, NULL),
(126, 'directus_users', 'email_notifications', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 0, 0, 6, 2, NULL, NULL, NULL),
(127, 'directus_users', 'password', 'string', 'password', NULL, 1, NULL, 1, 0, 0, 0, 7, 2, NULL, NULL, NULL),
(128, 'directus_users', 'roles', 'o2m', 'user-roles', NULL, 1, NULL, 0, 0, 0, 0, 8, 2, NULL, NULL, NULL),
(129, 'directus_users', 'company', 'string', 'text-input', '{\"placeholder\":\"Enter your company or organization name...\"}', 0, NULL, 0, 0, 0, 0, 9, 2, NULL, NULL, NULL),
(130, 'directus_users', 'title', 'string', 'text-input', '{\"placeholder\":\"Enter your title or role...\"}', 0, NULL, 0, 0, 0, 0, 10, 2, NULL, NULL, NULL),
(131, 'directus_users', 'timezone', 'string', 'dropdown', '{\"choices\":{\"Pacific\\/Midway\":\"(UTC-11:00) Midway Island\",\"Pacific\\/Samoa\":\"(UTC-11:00) Samoa\",\"Pacific\\/Honolulu\":\"(UTC-10:00) Hawaii\",\"US\\/Alaska\":\"(UTC-09:00) Alaska\",\"America\\/Los_Angeles\":\"(UTC-08:00) Pacific Time (US & Canada)\",\"America\\/Tijuana\":\"(UTC-08:00) Tijuana\",\"US\\/Arizona\":\"(UTC-07:00) Arizona\",\"America\\/Chihuahua\":\"(UTC-07:00) Chihuahua\",\"America\\/Mexico\\/La_Paz\":\"(UTC-07:00) La Paz\",\"America\\/Mazatlan\":\"(UTC-07:00) Mazatlan\",\"US\\/Mountain\":\"(UTC-07:00) Mountain Time (US & Canada)\",\"America\\/Managua\":\"(UTC-06:00) Central America\",\"US\\/Central\":\"(UTC-06:00) Central Time (US & Canada)\",\"America\\/Guadalajara\":\"(UTC-06:00) Guadalajara\",\"America\\/Mexico_City\":\"(UTC-06:00) Mexico City\",\"America\\/Monterrey\":\"(UTC-06:00) Monterrey\",\"Canada\\/Saskatchewan\":\"(UTC-06:00) Saskatchewan\",\"America\\/Bogota\":\"(UTC-05:00) Bogota\",\"US\\/Eastern\":\"(UTC-05:00) Eastern Time (US & Canada)\",\"US\\/East-Indiana\":\"(UTC-05:00) Indiana (East)\",\"America\\/Lima\":\"(UTC-05:00) Lima\",\"America\\/Quito\":\"(UTC-05:00) Quito\",\"Canada\\/Atlantic\":\"(UTC-04:00) Atlantic Time (Canada)\",\"America\\/New_York\":\"(UTC-04:00) New York\",\"America\\/Caracas\":\"(UTC-04:30) Caracas\",\"America\\/La_Paz\":\"(UTC-04:00) La Paz\",\"America\\/Santiago\":\"(UTC-04:00) Santiago\",\"America\\/Santo_Domingo\":\"(UTC-04:00) Santo Domingo\",\"Canada\\/Newfoundland\":\"(UTC-03:30) Newfoundland\",\"America\\/Sao_Paulo\":\"(UTC-03:00) Brasilia\",\"America\\/Argentina\\/Buenos_Aires\":\"(UTC-03:00) Buenos Aires\",\"America\\/Argentina\\/GeorgeTown\":\"(UTC-03:00) Georgetown\",\"America\\/Godthab\":\"(UTC-03:00) Greenland\",\"America\\/Noronha\":\"(UTC-02:00) Mid-Atlantic\",\"Atlantic\\/Azores\":\"(UTC-01:00) Azores\",\"Atlantic\\/Cape_Verde\":\"(UTC-01:00) Cape Verde Is.\",\"Africa\\/Casablanca\":\"(UTC+00:00) Casablanca\",\"Europe\\/Edinburgh\":\"(UTC+00:00) Edinburgh\",\"Etc\\/Greenwich\":\"(UTC+00:00) Greenwich Mean Time : Dublin\",\"Europe\\/Lisbon\":\"(UTC+00:00) Lisbon\",\"Europe\\/London\":\"(UTC+00:00) London\",\"Africa\\/Monrovia\":\"(UTC+00:00) Monrovia\",\"UTC\":\"(UTC+00:00) UTC\",\"Europe\\/Amsterdam\":\"(UTC+01:00) Amsterdam\",\"Europe\\/Belgrade\":\"(UTC+01:00) Belgrade\",\"Europe\\/Berlin\":\"(UTC+01:00) Berlin\",\"Europe\\/Bern\":\"(UTC+01:00) Bern\",\"Europe\\/Bratislava\":\"(UTC+01:00) Bratislava\",\"Europe\\/Brussels\":\"(UTC+01:00) Brussels\",\"Europe\\/Budapest\":\"(UTC+01:00) Budapest\",\"Europe\\/Copenhagen\":\"(UTC+01:00) Copenhagen\",\"Europe\\/Ljubljana\":\"(UTC+01:00) Ljubljana\",\"Europe\\/Madrid\":\"(UTC+01:00) Madrid\",\"Europe\\/Paris\":\"(UTC+01:00) Paris\",\"Europe\\/Prague\":\"(UTC+01:00) Prague\",\"Europe\\/Rome\":\"(UTC+01:00) Rome\",\"Europe\\/Sarajevo\":\"(UTC+01:00) Sarajevo\",\"Europe\\/Skopje\":\"(UTC+01:00) Skopje\",\"Europe\\/Stockholm\":\"(UTC+01:00) Stockholm\",\"Europe\\/Vienna\":\"(UTC+01:00) Vienna\",\"Europe\\/Warsaw\":\"(UTC+01:00) Warsaw\",\"Africa\\/Lagos\":\"(UTC+01:00) West Central Africa\",\"Europe\\/Zagreb\":\"(UTC+01:00) Zagreb\",\"Europe\\/Athens\":\"(UTC+02:00) Athens\",\"Europe\\/Bucharest\":\"(UTC+02:00) Bucharest\",\"Africa\\/Cairo\":\"(UTC+02:00) Cairo\",\"Africa\\/Harare\":\"(UTC+02:00) Harare\",\"Europe\\/Helsinki\":\"(UTC+02:00) Helsinki\",\"Europe\\/Istanbul\":\"(UTC+02:00) Istanbul\",\"Asia\\/Jerusalem\":\"(UTC+02:00) Jerusalem\",\"Europe\\/Kyiv\":\"(UTC+02:00) Kyiv\",\"Africa\\/Johannesburg\":\"(UTC+02:00) Pretoria\",\"Europe\\/Riga\":\"(UTC+02:00) Riga\",\"Europe\\/Sofia\":\"(UTC+02:00) Sofia\",\"Europe\\/Tallinn\":\"(UTC+02:00) Tallinn\",\"Europe\\/Vilnius\":\"(UTC+02:00) Vilnius\",\"Asia\\/Baghdad\":\"(UTC+03:00) Baghdad\",\"Asia\\/Kuwait\":\"(UTC+03:00) Kuwait\",\"Europe\\/Minsk\":\"(UTC+03:00) Minsk\",\"Africa\\/Nairobi\":\"(UTC+03:00) Nairobi\",\"Asia\\/Riyadh\":\"(UTC+03:00) Riyadh\",\"Europe\\/Volgograd\":\"(UTC+03:00) Volgograd\",\"Asia\\/Tehran\":\"(UTC+03:30) Tehran\",\"Asia\\/Abu_Dhabi\":\"(UTC+04:00) Abu Dhabi\",\"Asia\\/Baku\":\"(UTC+04:00) Baku\",\"Europe\\/Moscow\":\"(UTC+04:00) Moscow\",\"Asia\\/Muscat\":\"(UTC+04:00) Muscat\",\"Europe\\/St_Petersburg\":\"(UTC+04:00) St. Petersburg\",\"Asia\\/Tbilisi\":\"(UTC+04:00) Tbilisi\",\"Asia\\/Yerevan\":\"(UTC+04:00) Yerevan\",\"Asia\\/Kabul\":\"(UTC+04:30) Kabul\",\"Asia\\/Islamabad\":\"(UTC+05:00) Islamabad\",\"Asia\\/Karachi\":\"(UTC+05:00) Karachi\",\"Asia\\/Tashkent\":\"(UTC+05:00) Tashkent\",\"Asia\\/Calcutta\":\"(UTC+05:30) Chennai\",\"Asia\\/Kolkata\":\"(UTC+05:30) Kolkata\",\"Asia\\/Mumbai\":\"(UTC+05:30) Mumbai\",\"Asia\\/New_Delhi\":\"(UTC+05:30) New Delhi\",\"Asia\\/Sri_Jayawardenepura\":\"(UTC+05:30) Sri Jayawardenepura\",\"Asia\\/Katmandu\":\"(UTC+05:45) Kathmandu\",\"Asia\\/Almaty\":\"(UTC+06:00) Almaty\",\"Asia\\/Astana\":\"(UTC+06:00) Astana\",\"Asia\\/Dhaka\":\"(UTC+06:00) Dhaka\",\"Asia\\/Yekaterinburg\":\"(UTC+06:00) Ekaterinburg\",\"Asia\\/Rangoon\":\"(UTC+06:30) Rangoon\",\"Asia\\/Bangkok\":\"(UTC+07:00) Bangkok\",\"Asia\\/Hanoi\":\"(UTC+07:00) Hanoi\",\"Asia\\/Jakarta\":\"(UTC+07:00) Jakarta\",\"Asia\\/Novosibirsk\":\"(UTC+07:00) Novosibirsk\",\"Asia\\/Beijing\":\"(UTC+08:00) Beijing\",\"Asia\\/Chongqing\":\"(UTC+08:00) Chongqing\",\"Asia\\/Hong_Kong\":\"(UTC+08:00) Hong Kong\",\"Asia\\/Krasnoyarsk\":\"(UTC+08:00) Krasnoyarsk\",\"Asia\\/Kuala_Lumpur\":\"(UTC+08:00) Kuala Lumpur\",\"Australia\\/Perth\":\"(UTC+08:00) Perth\",\"Asia\\/Singapore\":\"(UTC+08:00) Singapore\",\"Asia\\/Taipei\":\"(UTC+08:00) Taipei\",\"Asia\\/Ulan_Bator\":\"(UTC+08:00) Ulaan Bataar\",\"Asia\\/Urumqi\":\"(UTC+08:00) Urumqi\",\"Asia\\/Irkutsk\":\"(UTC+09:00) Irkutsk\",\"Asia\\/Osaka\":\"(UTC+09:00) Osaka\",\"Asia\\/Sapporo\":\"(UTC+09:00) Sapporo\",\"Asia\\/Seoul\":\"(UTC+09:00) Seoul\",\"Asia\\/Tokyo\":\"(UTC+09:00) Tokyo\",\"Australia\\/Adelaide\":\"(UTC+09:30) Adelaide\",\"Australia\\/Darwin\":\"(UTC+09:30) Darwin\",\"Australia\\/Brisbane\":\"(UTC+10:00) Brisbane\",\"Australia\\/Canberra\":\"(UTC+10:00) Canberra\",\"Pacific\\/Guam\":\"(UTC+10:00) Guam\",\"Australia\\/Hobart\":\"(UTC+10:00) Hobart\",\"Australia\\/Melbourne\":\"(UTC+10:00) Melbourne\",\"Pacific\\/Port_Moresby\":\"(UTC+10:00) Port Moresby\",\"Australia\\/Sydney\":\"(UTC+10:00) Sydney\",\"Asia\\/Yakutsk\":\"(UTC+10:00) Yakutsk\",\"Asia\\/Vladivostok\":\"(UTC+11:00) Vladivostok\",\"Pacific\\/Auckland\":\"(UTC+12:00) Auckland\",\"Pacific\\/Fiji\":\"(UTC+12:00) Fiji\",\"Pacific\\/Kwajalein\":\"(UTC+12:00) International Date Line West\",\"Asia\\/Kamchatka\":\"(UTC+12:00) Kamchatka\",\"Asia\\/Magadan\":\"(UTC+12:00) Magadan\",\"Pacific\\/Marshall_Is\":\"(UTC+12:00) Marshall Is.\",\"Asia\\/New_Caledonia\":\"(UTC+12:00) New Caledonia\",\"Asia\\/Solomon_Is\":\"(UTC+12:00) Solomon Is.\",\"Pacific\\/Wellington\":\"(UTC+12:00) Wellington\",\"Pacific\\/Tongatapu\":\"(UTC+13:00) Nuku\'alofa\"},\"placeholder\":\"Choose a timezone...\"}', 1, NULL, 0, 0, 0, 0, 11, 2, NULL, NULL, NULL),
(132, 'directus_users', 'locale', 'string', 'language', '{\"limit\":true}', 1, NULL, 0, 0, 0, 0, 12, 2, NULL, NULL, NULL),
(133, 'directus_users', 'locale_options', 'json', 'code', NULL, 1, NULL, 0, 0, 1, 1, 13, 4, NULL, NULL, NULL),
(134, 'directus_users', 'token', 'string', 'text-input', NULL, 1, NULL, 0, 0, 1, 1, 14, 4, NULL, NULL, NULL),
(135, 'directus_users', 'last_login', 'datetime', 'datetime', NULL, 1, NULL, 0, 1, 0, 0, 15, 2, NULL, NULL, NULL),
(136, 'directus_users', 'last_access_on', 'datetime', 'datetime', NULL, 1, NULL, 0, 1, 1, 0, 16, 2, NULL, NULL, NULL),
(137, 'directus_users', 'last_page', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 1, 17, 2, NULL, NULL, NULL),
(138, 'directus_users', 'avatar', 'file', 'file', NULL, 1, NULL, 0, 0, 0, 0, 18, 4, NULL, NULL, NULL),
(139, 'directus_users', 'invite_token', 'string', 'text-input', NULL, 1, NULL, 0, 0, 1, 1, NULL, 4, NULL, NULL, NULL),
(140, 'directus_users', 'invite_accepted', 'boolean', 'toggle', NULL, 1, NULL, 0, 0, 1, 1, NULL, 4, NULL, NULL, NULL),
(141, 'directus_users', 'last_ip', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(142, 'directus_users', 'external_id', 'string', 'text-input', NULL, 1, NULL, 0, 1, 1, 0, NULL, 4, NULL, NULL, NULL),
(143, 'directus_user_roles', 'id', 'integer', 'primary-key', NULL, 1, NULL, 1, 0, 1, 0, NULL, 4, NULL, NULL, NULL),
(144, 'directus_user_roles', 'user', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(145, 'directus_user_roles', 'role', 'm2o', 'many-to-one', NULL, 1, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(146, 'curator', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 1, 4, NULL, NULL, NULL),
(147, 'curator', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}', 0, NULL, 0, 0, 0, 1, 2, 4, NULL, '', NULL),
(148, 'curator', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 3, 4, NULL, '', NULL),
(149, 'curator', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 4, 4, NULL, NULL, NULL),
(150, 'curator', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 5, 4, NULL, '', NULL),
(151, 'curator', 'modified_on', 'datetime_updated', 'datetime-updated', '[]', 0, NULL, 0, 1, 1, 1, 6, 4, NULL, '', NULL),
(152, 'curator', 'name', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, 7, 4, NULL, 'Le nom du curateur', NULL),
(153, 'curator', 'email', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, 9, 4, NULL, 'Une adresse email, pour communication interne', NULL),
(154, 'show', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 1, 4, NULL, NULL, NULL),
(155, 'show', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}', 0, NULL, 0, 0, 0, 0, 2, 4, NULL, '', NULL),
(157, 'show', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 3, 4, NULL, NULL, NULL),
(158, 'show', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 4, 4, NULL, NULL, NULL),
(159, 'show', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 5, 4, NULL, NULL, NULL),
(160, 'show', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 6, 4, NULL, NULL, NULL),
(161, 'show', 'title', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, 7, 4, NULL, 'Le titre de l\'émission', NULL),
(162, 'show', 'reference', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, 8, 4, NULL, 'La référence de l\'émission au sein de la collection', NULL),
(164, 'show', 'release_date', 'date', 'date', '{\"localized\":true,\"showRelative\":true}', 0, NULL, 1, 0, 0, 0, 10, 4, NULL, 'La date de première publication de l\'émission', NULL),
(165, 'show', 'description', 'string', 'wysiwyg', '{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]}', 0, NULL, 0, 0, 0, 0, 11, 4, NULL, 'La description de l\'émission', NULL),
(166, 'show', 'cover', 'file', 'file', '{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]}', 0, NULL, 1, 0, 0, 0, 13, 4, NULL, 'L\'image de couverture de l\'émission', NULL),
(167, 'show', 'curators', 'o2m', 'many-to-many', '{\"template\":\"{{ curator.name }}\",\"fields\":\"name\",\"preferences\":{\"viewType\":\"tabular\",\"viewQuery\":{\"fields\":[\"id\",\"name\"]},\"filters\":[{\"field\":\"name\",\"operator\":\"contains\",\"value\":\"hi\"}]}}', 0, NULL, 1, 0, 0, 0, 12, 4, NULL, 'Les curateurs de l\'émission', NULL),
(168, 'show_directus_curator', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(169, 'show_directus_curator', 'show_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(170, 'show_directus_curator', 'curator_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(171, 'show_sections', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(173, 'show_sections', 'sort', 'sort', 'sort', '[]', 0, NULL, 0, 0, 0, 0, 0, 4, NULL, '', NULL),
(174, 'show_sections', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(175, 'show_sections', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(176, 'show_sections', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(177, 'show_sections', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(178, 'show_sections', 'file', 'file', 'file', '{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'Le fichier audio de la section au format FLAC', NULL),
(179, 'show_sections', 'title', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Le titre de la section', NULL),
(180, 'show', 'sections', 'o2m', 'one-to-many', '{\"fields\":\"title\",\"template\":\"{{ title }}\"}', 0, NULL, 1, 0, 0, 0, 14, 4, NULL, 'Les différentes sections de l\'émission', NULL),
(181, 'track', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 1, 4, NULL, NULL, NULL),
(183, 'track', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 2, 4, NULL, NULL, NULL),
(184, 'track', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 3, 4, NULL, NULL, NULL),
(185, 'track', 'title', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, 5, 4, NULL, 'Le titre du morceau', NULL),
(193, 'artist', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(194, 'artist', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(195, 'artist', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(196, 'artist', 'name', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":true,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Le nom de l\'artiste', NULL),
(197, 'track', 'artists', 'o2m', 'many-to-many', '{\"fields\":\"name\",\"template\":\"{{ name }}\"}', 0, NULL, 1, 0, 0, 0, 6, 4, NULL, 'Les artistes à l\'origine du morceau', NULL),
(198, 'track_artist', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(199, 'track_artist', 'track_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(200, 'track_artist', 'artist_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(202, 'track', 'sort_order', 'sort', 'sort', '[]', 0, NULL, 1, 0, 0, 0, 4, 4, NULL, 'La place du morceau dans la playlist', NULL),
(203, 'broadcaster', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(204, 'broadcaster', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}', 0, NULL, 0, 0, 0, 0, 0, 4, NULL, '', NULL),
(205, 'broadcaster', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(206, 'broadcaster', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(207, 'broadcaster', 'nom', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'Le nom du diffuseur', NULL),
(208, 'broadcaster', 'frequency', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'La fréquence, pour les radio hertziennes', NULL),
(209, 'broadcaster', 'url', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Un lien vers le site du diffuseur', NULL),
(210, 'broadcaster', 'description', 'string', 'wysiwyg', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Description du diffuseur, modalités de diffusion', NULL),
(211, 'broadcaster', 'since', 'date', 'date', '{\"localized\":true,\"showRelative\":true}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Date de première diffusion par ce diffuseur', NULL),
(212, 'flyers', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 1, 4, NULL, NULL, NULL),
(213, 'flyers', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}', 0, NULL, 0, 0, 0, 0, 2, 4, NULL, '', NULL),
(214, 'flyers', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 3, 4, NULL, NULL, NULL),
(215, 'flyers', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 4, 4, NULL, NULL, NULL),
(216, 'flyers', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 5, 4, NULL, NULL, NULL),
(217, 'flyers', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 6, 4, NULL, NULL, NULL),
(218, 'flyers', 'image', 'file', 'file', '{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]}', 0, NULL, 1, 0, 0, 0, 7, 4, NULL, 'Le fichier image du flyer', NULL),
(219, 'flyers', 'period_start', 'date', 'date', '{\"localized\":true,\"showRelative\":true}', 0, NULL, 1, 0, 0, 0, 10, 4, NULL, 'Date de début de la programmation couverte par le flyer', NULL),
(220, 'flyers', 'period_stop', 'date', 'date', '{\"localized\":true,\"showRelative\":true}', 0, NULL, 1, 0, 0, 0, 11, 4, NULL, 'Date de début de la programmation couverte par le flyer', NULL),
(227, 'illustrator', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(228, 'illustrator', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}', 0, NULL, 0, 0, 0, 0, 0, 4, NULL, '', NULL),
(229, 'illustrator', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(230, 'illustrator', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(231, 'illustrator', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(232, 'illustrator', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(233, 'illustrator', 'name', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'La nom de l\'artiste', NULL),
(234, 'illustrator', 'url', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Lien vers le site de l\'artiste', NULL),
(235, 'flyers', 'illustrators', 'o2m', 'many-to-many', '{\"fields\":\"name\",\"template\":\"{{ name }}\"}', 0, NULL, 1, 0, 0, 0, 8, 4, NULL, 'Les illustrateurs à créditer', NULL),
(236, 'flyers_illustrator', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(237, 'flyers_illustrator', 'flyers_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(238, 'flyers_illustrator', 'illustrator_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(239, 'flyers', 'shows', 'o2m', 'one-to-many', '{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"}', 0, NULL, 1, 0, 0, 0, 9, 4, NULL, 'Les émissions présentées par ce flyer', NULL),
(240, 'content', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(241, 'content', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(242, 'content', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(243, 'content', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(244, 'content', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(245, 'content', 'about', 'string', 'wysiwyg', '{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(246, 'content', 'credits', 'string', 'wysiwyg', '{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, NULL, NULL),
(247, 'track', 'timecode', 'string', 'text-input', '{\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'Le timecode correspondant au début du morceau dans l\'émission', NULL),
(249, 'show_track', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(250, 'show_track', 'show_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(251, 'show_track', 'track_id', 'integer', NULL, NULL, 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(252, 'show_track', 'timecode', 'string', 'text-input', '{\"rows\":12,\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, '', NULL),
(253, 'show', 'tracks', 'o2m', 'many-to-many', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"fields\":\"sort_order, timecode, title\",\"template\":\"{{ track.sort_order }} - {{ track.name }}\"}', 0, NULL, 1, 0, 0, 0, 15, 4, NULL, 'Les morceaux composant l\'émission', NULL),
(254, 'artist', 'url', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Un lien vers le site de l\'artiste', NULL),
(255, 'collection', 'id', 'integer', 'primary-key', NULL, 0, NULL, 0, 0, 1, 1, 0, 4, NULL, NULL, NULL),
(256, 'collection', 'status', 'status', 'status', '{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"simpleBadge\":false}', 0, NULL, 1, 0, 0, 0, 0, 4, NULL, NULL, NULL),
(257, 'collection', 'created_by', 'user_created', 'user-created', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(258, 'collection', 'created_on', 'datetime_created', 'datetime-created', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(259, 'collection', 'modified_by', 'user_updated', 'user-updated', '{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"}', 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(260, 'collection', 'modified_on', 'datetime_updated', 'datetime-updated', NULL, 0, NULL, 0, 1, 1, 1, 0, 4, NULL, NULL, NULL),
(261, 'collection', 'name', 'string', 'text-input', '{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'Le nom de la collection', NULL),
(262, 'collection', 'slug', 'string', 'slug', '{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"}', 0, NULL, 1, 0, 0, 0, NULL, 4, NULL, 'Le nom de la collections dans les URL', NULL),
(263, 'collection', 'description', 'string', 'wysiwyg', '{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]}', 0, NULL, 0, 0, 0, 0, NULL, 4, NULL, 'Un texte décrivant la collection', NULL),
(264, 'show', 'collection', 'm2o', 'many-to-one', '{\"template\":\"{{ name }}\",\"placeholder\":\"Select one\",\"threshold\":20}', 0, NULL, 1, 0, 0, 0, 9, 4, NULL, 'La collection dans laquelle s\'inscrit l\'émission', NULL),
(265, 'curator', 'slug', 'string', 'slug', '{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"}', 0, NULL, 1, 0, 0, 0, 8, 4, NULL, 'Le nom du curateur dans les URL du site', NULL);
DROP TABLE IF EXISTS `directus_files`;
CREATE TABLE `directus_files` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`storage` varchar(50) NOT NULL DEFAULT 'local',
`filename` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`uploaded_by` int(11) unsigned NOT NULL,
`uploaded_on` datetime NOT NULL,
`charset` varchar(50) DEFAULT NULL,
`filesize` int(11) unsigned NOT NULL DEFAULT '0',
`width` int(11) unsigned DEFAULT NULL,
`height` int(11) unsigned DEFAULT NULL,
`duration` int(11) DEFAULT NULL,
`embed` varchar(200) DEFAULT NULL,
`folder` int(11) unsigned DEFAULT NULL,
`description` text,
`location` varchar(200) DEFAULT NULL,
`tags` varchar(255) DEFAULT NULL,
`checksum` varchar(32) DEFAULT NULL,
`metadata` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_files` (`id`, `storage`, `filename`, `title`, `type`, `uploaded_by`, `uploaded_on`, `charset`, `filesize`, `width`, `height`, `duration`, `embed`, `folder`, `description`, `location`, `tags`, `checksum`, `metadata`) VALUES
(1, 'local', 'ouiedire_bagage-4_cover-1.png', 'Ouiedire Bagage 4 Cover 1', 'image/png', 1, '2019-03-10 03:23:23', 'binary', 334855, 600, 600, NULL, NULL, NULL, '', '', '', '4db9a86607fdb7d26d982b3ca6fc0fa7', NULL),
(2, 'local', 'Who_are_Q.mp3', 'Who Are Q', 'audio/mp3', 1, '2019-03-10 02:41:53', 'binary', 2019704, NULL, NULL, NULL, NULL, NULL, '', '', '', '39614df0be99fdce8c181cf5bde495f2', NULL),
(3, 'local', 'Who_are_Q-1.mp3', 'Who Are Q 1', 'audio/mp3', 1, '2019-03-10 02:43:47', 'binary', 2019704, NULL, NULL, NULL, NULL, NULL, '', '', '', '39614df0be99fdce8c181cf5bde495f2', NULL),
(4, 'local', 'Quentin.jpg', 'Quentin', 'image/jpeg', 1, '2019-03-10 03:27:03', 'binary', 28775, 480, 480, NULL, NULL, NULL, '', '', '', 'fd0b818e7b47fa9b2adab202aaa5a82f', NULL),
(5, 'local', 'Quentin-1.jpg', 'Quentin 1', 'image/jpeg', 1, '2019-03-10 03:32:29', 'binary', 28775, 480, 480, NULL, NULL, NULL, '', '', '', 'fd0b818e7b47fa9b2adab202aaa5a82f', NULL),
(6, 'local', 'Quentin-2.jpg', 'Quentin 2', 'image/jpeg', 1, '2019-03-10 03:34:15', 'binary', 28775, 480, 480, NULL, NULL, NULL, '', '', '', 'fd0b818e7b47fa9b2adab202aaa5a82f', NULL),
(7, 'local', 'Quentin-3.jpg', 'Quentin 3', 'image/jpeg', 1, '2019-03-10 03:39:24', 'binary', 28775, 480, 480, NULL, NULL, NULL, '', '', '', 'fd0b818e7b47fa9b2adab202aaa5a82f', NULL),
(8, 'local', 'Who_are_Q-2.mp3', 'Who Are Q 2', 'audio/mp3', 1, '2019-03-10 03:39:33', 'binary', 2019704, NULL, NULL, NULL, NULL, NULL, '', '', '', '39614df0be99fdce8c181cf5bde495f2', NULL),
(9, 'local', 'ma.png', 'Ma', 'image/png', 1, '2019-03-10 03:47:17', 'binary', 152849, 480, 480, NULL, NULL, NULL, '', '', '', '56d7113af503c0e46ee46735755d5afd', NULL),
(10, 'local', 'Who_are_Q-3.mp3', 'Who Are Q 3', 'audio/mp3', 1, '2019-03-10 03:47:26', 'binary', 2019704, NULL, NULL, NULL, NULL, NULL, '', '', '', '39614df0be99fdce8c181cf5bde495f2', NULL);
SET NAMES utf8mb4;
DROP TABLE IF EXISTS `directus_folders`;
CREATE TABLE `directus_folders` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 NOT NULL,
`parent_folder` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name_parent_folder` (`name`,`parent_folder`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `directus_migrations`;
CREATE TABLE `directus_migrations` (
`version` bigint(20) NOT NULL,
`migration_name` varchar(100) DEFAULT NULL,
`start_time` timestamp NULL DEFAULT NULL,
`end_time` timestamp NULL DEFAULT NULL,
`breakpoint` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_migrations` (`version`, `migration_name`, `start_time`, `end_time`, `breakpoint`) VALUES
(20180220023138, 'CreateActivityTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023144, 'CreateActivitySeenTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023152, 'CreateCollectionsPresetsTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023157, 'CreateCollectionsTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023202, 'CreateFieldsTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023208, 'CreateFilesTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023213, 'CreateFoldersTable', '2019-03-10 01:25:49', '2019-03-10 01:25:49', 0),
(20180220023217, 'CreateRolesTable', '2019-03-10 01:25:49', '2019-03-10 01:25:50', 0),
(20180220023226, 'CreatePermissionsTable', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0),
(20180220023232, 'CreateRelationsTable', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0),
(20180220023238, 'CreateRevisionsTable', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0),
(20180220023243, 'CreateSettingsTable', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0),
(20180220023248, 'CreateUsersTable', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0),
(20180426173310, 'CreateUserRoles', '2019-03-10 01:25:50', '2019-03-10 01:25:50', 0);
DROP TABLE IF EXISTS `directus_permissions`;
CREATE TABLE `directus_permissions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`collection` varchar(64) NOT NULL,
`role` int(11) unsigned NOT NULL,
`status` varchar(64) DEFAULT NULL,
`create` varchar(16) DEFAULT 'none',
`read` varchar(16) DEFAULT 'none',
`update` varchar(16) DEFAULT 'none',
`delete` varchar(16) DEFAULT 'none',
`comment` varchar(8) DEFAULT 'none',
`explain` varchar(8) DEFAULT 'none',
`read_field_blacklist` varchar(1000) DEFAULT NULL,
`write_field_blacklist` varchar(1000) DEFAULT NULL,
`status_blacklist` varchar(1000) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `directus_relations`;
CREATE TABLE `directus_relations` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`collection_many` varchar(64) NOT NULL,
`field_many` varchar(45) NOT NULL,
`collection_one` varchar(64) DEFAULT NULL,
`field_one` varchar(64) DEFAULT NULL,
`junction_field` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_relations` (`id`, `collection_many`, `field_many`, `collection_one`, `field_one`, `junction_field`) VALUES
(1, 'directus_activity', 'action_by', 'directus_users', NULL, NULL),
(2, 'directus_activity_seen', 'user', 'directus_users', NULL, NULL),
(3, 'directus_activity_seen', 'activity', 'directus_activity', NULL, NULL),
(4, 'directus_collections_presets', 'user', 'directus_users', NULL, NULL),
(5, 'directus_collections_presets', 'group', 'directus_groups', NULL, NULL),
(6, 'directus_files', 'uploaded_by', 'directus_users', NULL, NULL),
(7, 'directus_files', 'folder', 'directus_folders', NULL, NULL),
(8, 'directus_folders', 'parent_folder', 'directus_folders', NULL, NULL),
(9, 'directus_permissions', 'group', 'directus_groups', NULL, NULL),
(10, 'directus_revisions', 'activity', 'directus_activity', NULL, NULL),
(11, 'directus_user_roles', 'user', 'directus_users', 'roles', 'role'),
(12, 'directus_user_roles', 'role', 'directus_roles', 'users', 'user'),
(13, 'directus_users', 'avatar', 'directus_files', NULL, NULL),
(14, 'directus_fields', 'collection', 'directus_collections', 'fields', NULL),
(15, 'show_directus_curator', 'curator_id', 'curator', 'show', 'show_id'),
(16, 'show_directus_curator', 'show_id', 'show', 'curators', 'curator_id'),
(17, 'show_sections', 'id', 'show', 'sections', NULL),
(18, 'track_artist', 'artist_id', 'artist', 'track', 'track_id'),
(19, 'track_artist', 'track_id', 'track', 'artists', 'artist_id'),
(20, 'track', 'id', 'show', NULL, NULL),
(21, 'flyers_illustrator', 'illustrator_id', 'illustrator', 'flyers', 'flyers_id'),
(22, 'flyers_illustrator', 'flyers_id', 'flyers', 'illustrators', 'illustrator_id'),
(23, 'show', 'id', 'flyers', 'shows', NULL),
(24, 'show_track', 'show_id', 'show', NULL, 'track_id'),
(25, 'show_track', 'track_id', 'track', 'show', 'show_id'),
(26, 'show_track', 'show_id', 'show', 'tracks', 'track_id'),
(27, 'show_track', 'track_id', 'track', 'show', 'show_id'),
(28, 'collection', 'id', NULL, NULL, NULL),
(29, 'collection', 'id', 'show', 'collection', NULL),
(31, 'show', 'collection', 'collection', NULL, NULL);
DROP TABLE IF EXISTS `directus_revisions`;
CREATE TABLE `directus_revisions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`activity` int(11) unsigned NOT NULL,
`collection` varchar(64) NOT NULL,
`item` varchar(255) NOT NULL,
`data` longtext NOT NULL,
`delta` longtext,
`parent_collection` varchar(64) DEFAULT NULL,
`parent_item` varchar(255) DEFAULT NULL,
`parent_changed` tinyint(1) unsigned DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_revisions` (`id`, `activity`, `collection`, `item`, `data`, `delta`, `parent_collection`, `parent_item`, `parent_changed`) VALUES
(1, 2, 'directus_fields', '146', '{\"id\":\"146\",\"collection\":\"curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(2, 3, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(3, 4, 'directus_fields', '148', '{\"id\":\"148\",\"collection\":\"curator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(4, 5, 'directus_fields', '149', '{\"id\":\"149\",\"collection\":\"curator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(5, 6, 'directus_fields', '150', '{\"id\":\"150\",\"collection\":\"curator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(6, 7, 'directus_fields', '151', '{\"id\":\"151\",\"collection\":\"curator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(7, 8, 'directus_collections', 'curator', '{\"collection\":\"curator\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(8, 9, 'directus_fields', '152', '{\"id\":\"152\",\"collection\":\"curator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur\",\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le nom du curateur\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(9, 10, 'directus_fields', '153', '{\"id\":\"153\",\"collection\":\"curator\",\"field\":\"email\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Une adresse email, pour communication interne\",\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"email\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Une adresse email, pour communication interne\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(10, 11, 'directus_fields', '154', '{\"id\":\"154\",\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(11, 12, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(12, 13, 'directus_fields', '156', '{\"id\":\"156\",\"collection\":\"show\",\"field\":\"sort\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"sort\",\"type\":\"sort\",\"interface\":\"sort\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(13, 14, 'directus_fields', '157', '{\"id\":\"157\",\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(14, 15, 'directus_fields', '158', '{\"id\":\"158\",\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(15, 16, 'directus_fields', '159', '{\"id\":\"159\",\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(16, 17, 'directus_fields', '160', '{\"id\":\"160\",\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(17, 18, 'directus_collections', 'show', '{\"collection\":\"show\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(18, 19, 'directus_fields', '161', '{\"id\":\"161\",\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(19, 20, 'directus_fields', '162', '{\"id\":\"162\",\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(20, 21, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"string\",\"interface\":\"dropdown\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"collection\",\"type\":\"string\",\"interface\":\"dropdown\",\"required\":true,\"sort\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(21, 22, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"required\":false,\"sort\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true,\"showRelative\":true},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(22, 23, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"readonly\":false,\"required\":true,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(23, 24, 'directus_fields', '165', '{\"id\":\"165\",\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La description de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"required\":false,\"sort\":null,\"note\":\"La description de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(24, 25, 'directus_fields', '166', '{\"id\":\"166\",\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"required\":true,\"sort\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(25, 26, 'directus_files', '1', '{\"id\":\"1\",\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 02:23:23\",\"charset\":\"binary\",\"filesize\":\"334855\",\"width\":\"600\",\"height\":\"600\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 21:23:23\"}', NULL, NULL, NULL),
(26, 27, 'directus_files', '1', '{\"id\":\"1\",\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:23:23\",\"charset\":\"binary\",\"filesize\":\"334855\",\"width\":\"600\",\"height\":\"600\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:23:23+00:00\",\"charset\":\"binary\",\"filesize\":334855,\"width\":600,\"height\":600,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(27, 28, 'show', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 02:23:30\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 02:23:30\",\"title\":\"Chamade\",\"reference\":\"04\",\"collection\":\"bagage\",\"release_date\":\"2015-04-20\",\"description\":\"<p>Da ! Heard it Records is a netlabel since 2006. The aim of this eclectic record company is to promote new artists and new types if music. D!HR is an outward-looking label, accessible to professional and amateur musicians alike, and to all types of listener, thanks to its policy of open and free culture and to the types of music it publishes. Its albums are distributed under a Creative Commons licence, encouraging sharing and reuse of the music.<\\/p><p><a href=\\\"https:\\/\\/www.daheardit-records.net\\\">https:\\/\\/www.daheardit-records.net<\\/a><\\/p>\",\"cover\":\"1\"}', '{\"collection\":\"bagage\",\"status\":\"published\",\"title\":\"Chamade\",\"reference\":\"04\",\"release_date\":\"2015-04-20\",\"description\":\"<p>Da ! Heard it Records is a netlabel since 2006. The aim of this eclectic record company is to promote new artists and new types if music. D!HR is an outward-looking label, accessible to professional and amateur musicians alike, and to all types of listener, thanks to its policy of open and free culture and to the types of music it publishes. Its albums are distributed under a Creative Commons licence, encouraging sharing and reuse of the music.<\\/p><p><a href=\\\"https:\\/\\/www.daheardit-records.net\\\">https:\\/\\/www.daheardit-records.net<\\/a><\\/p>\",\"cover\":1}', NULL, NULL, NULL),
(28, 29, 'directus_fields', '154', '{\"id\":\"154\",\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(29, 30, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(30, 31, 'directus_fields', '157', '{\"id\":\"157\",\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(31, 32, 'directus_fields', '158', '{\"id\":\"158\",\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(32, 33, 'directus_fields', '159', '{\"id\":\"159\",\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(33, 34, 'directus_fields', '160', '{\"id\":\"160\",\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(34, 35, 'directus_fields', '161', '{\"id\":\"161\",\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(35, 36, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"string\",\"interface\":\"dropdown\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(36, 37, 'directus_fields', '162', '{\"id\":\"162\",\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(37, 38, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(38, 39, 'directus_fields', '165', '{\"id\":\"165\",\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"La description de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(39, 40, 'directus_fields', '166', '{\"id\":\"166\",\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"12\",\"width\":\"4\",\"group\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":12}', NULL, NULL, NULL),
(40, 41, 'directus_relations', '15', '{\"id\":\"15\",\"collection_many\":\"show_directus_curator\",\"field_many\":\"curator_id\",\"collection_one\":\"curator\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', '{\"collection_many\":\"show_directus_curator\",\"field_many\":\"curator_id\",\"collection_one\":\"curator\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', NULL, NULL, NULL),
(41, 43, 'directus_fields', '168', '{\"id\":\"168\",\"collection\":\"show_directus_curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_directus_curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(42, 42, 'directus_fields', '167', '{\"id\":\"167\",\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"required\":true,\"sort\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"template\":\"{{ curator.name }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(43, 44, 'directus_relations', '16', '{\"id\":\"16\",\"collection_many\":\"show_directus_curator\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"curators\",\"junction_field\":\"curator_id\"}', '{\"collection_many\":\"show_directus_curator\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"curators\",\"junction_field\":\"curator_id\"}', NULL, NULL, NULL),
(44, 45, 'directus_fields', '169', '{\"id\":\"169\",\"collection\":\"show_directus_curator\",\"field\":\"show_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_directus_curator\",\"field\":\"show_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(45, 46, 'directus_fields', '170', '{\"id\":\"170\",\"collection\":\"show_directus_curator\",\"field\":\"curator_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_directus_curator\",\"field\":\"curator_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(46, 47, 'directus_collections', 'show_directus_curator', '{\"collection\":\"show_directus_curator\",\"managed\":true,\"hidden\":true,\"single\":false,\"icon\":null,\"note\":\"Junction Collection\",\"translation\":null}', '{\"managed\":true,\"hidden\":true,\"note\":\"Junction Collection\"}', NULL, NULL, NULL),
(47, 48, 'curator', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 02:29:51\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 02:29:51\",\"name\":\"Nils\",\"email\":\"nilsmaisoneuve@hotmail.fr\"}', '{\"status\":\"published\",\"name\":\"Nils\",\"email\":\"nilsmaisoneuve@hotmail.fr\"}', NULL, NULL, NULL),
(48, 49, 'curator', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:29:51\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 02:30:48\",\"name\":\"Nils\",\"email\":\"nilsmaisoneuve@hotmail.fr\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:29:51\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:29:51\",\"name\":\"Nils\",\"email\":\"nilsmaisoneuve@hotmail.fr\"}', NULL, NULL, NULL),
(49, 50, 'show', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 02:23:30\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 02:30:48\",\"title\":\"Chamade\",\"reference\":\"04\",\"collection\":\"bagage\",\"release_date\":\"2015-04-20\",\"description\":\"<p>Da ! Heard it Records is a netlabel since 2006. The aim of this eclectic record company is to promote new artists and new types if music. D!HR is an outward-looking label, accessible to professional and amateur musicians alike, and to all types of listener, thanks to its policy of open and free culture and to the types of music it publishes. Its albums are distributed under a Creative Commons licence, encouraging sharing and reuse of the music.<\\/p><p><a href=\\\"https:\\/\\/www.daheardit-records.net\\\">https:\\/\\/www.daheardit-records.net<\\/a><\\/p>\",\"cover\":\"1\"}', '[]', NULL, NULL, NULL),
(50, 51, 'show_directus_curator', '1', '{\"id\":\"1\",\"show_id\":\"1\",\"curator_id\":\"1\"}', '{\"curator_id\":1,\"show_id\":\"1\"}', 'show', '1', 1),
(51, 52, 'directus_fields', '154', '{\"id\":\"154\",\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(52, 53, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(53, 54, 'directus_fields', '157', '{\"id\":\"157\",\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(54, 55, 'directus_fields', '158', '{\"id\":\"158\",\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(55, 56, 'directus_fields', '159', '{\"id\":\"159\",\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(56, 57, 'directus_fields', '160', '{\"id\":\"160\",\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(57, 58, 'directus_fields', '161', '{\"id\":\"161\",\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(58, 59, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"string\",\"interface\":\"dropdown\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(59, 60, 'directus_fields', '162', '{\"id\":\"162\",\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(60, 61, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(61, 62, 'directus_fields', '165', '{\"id\":\"165\",\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"La description de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(62, 63, 'directus_fields', '167', '{\"id\":\"167\",\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"12\",\"width\":\"4\",\"group\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":12}', NULL, NULL, NULL),
(63, 64, 'directus_fields', '166', '{\"id\":\"166\",\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"13\",\"width\":\"4\",\"group\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":13}', NULL, NULL, NULL),
(64, 65, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(65, 66, 'directus_fields', '148', '{\"id\":\"148\",\"collection\":\"curator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true,\"required\":false,\"note\":\"\",\"hidden_detail\":true,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(66, 67, 'directus_fields', '150', '{\"id\":\"150\",\"collection\":\"curator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true,\"required\":false,\"note\":\"\",\"hidden_detail\":true,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(67, 68, 'directus_fields', '151', '{\"id\":\"151\",\"collection\":\"curator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":[],\"readonly\":true,\"required\":false,\"note\":\"\",\"hidden_detail\":true,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(68, 69, 'directus_fields', '152', '{\"id\":\"152\",\"collection\":\"curator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur\",\"translation\":null}', '{\"sort\":null,\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"required\":true,\"note\":\"Le nom du curateur\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(69, 70, 'directus_fields', '146', '{\"id\":\"146\",\"collection\":\"curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(70, 71, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(71, 72, 'directus_fields', '148', '{\"id\":\"148\",\"collection\":\"curator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(72, 73, 'directus_fields', '149', '{\"id\":\"149\",\"collection\":\"curator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(73, 74, 'directus_fields', '150', '{\"id\":\"150\",\"collection\":\"curator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(74, 75, 'directus_fields', '151', '{\"id\":\"151\",\"collection\":\"curator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(75, 76, 'directus_fields', '152', '{\"id\":\"152\",\"collection\":\"curator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(76, 77, 'directus_fields', '153', '{\"id\":\"153\",\"collection\":\"curator\",\"field\":\"email\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Une adresse email, pour communication interne\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(77, 78, 'directus_fields', '153', '{\"id\":\"153\",\"collection\":\"curator\",\"field\":\"email\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Une adresse email, pour communication interne\",\"translation\":null}', '{\"sort\":8,\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"required\":false,\"note\":\"Une adresse email, pour communication interne\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(78, 79, 'directus_relations', '15', '{\"id\":\"15\",\"collection_many\":\"show_directus_curator\",\"field_many\":\"curator_id\",\"collection_one\":\"curator\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', '{\"collection_many\":\"show_directus_curator\",\"field_many\":\"curator_id\",\"collection_one\":\"curator\",\"junction_field\":\"show_id\"}', NULL, NULL, NULL),
(79, 80, 'directus_relations', '16', '{\"id\":\"16\",\"collection_many\":\"show_directus_curator\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"curators\",\"junction_field\":\"curator_id\"}', '{\"collection_many\":\"show_directus_curator\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"curators\",\"junction_field\":\"curator_id\"}', NULL, NULL, NULL),
(80, 81, 'directus_fields', '167', '{\"id\":\"167\",\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\",\"fields\":\"name\",\"preferences\":{\"viewType\":\"tabular\",\"viewQuery\":{\"fields\":[\"id\",\"name\"]},\"filters\":[{\"field\":\"name\",\"operator\":\"contains\",\"value\":\"hi\"}]}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"12\",\"width\":\"4\",\"group\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":12,\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\",\"fields\":\"name\",\"preferences\":{\"viewType\":\"tabular\",\"viewQuery\":{\"fields\":[\"id\",\"name\"]},\"filters\":[{\"field\":\"name\",\"operator\":\"contains\",\"value\":\"hi\"}]}},\"readonly\":false,\"required\":true,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(81, 82, 'directus_fields', '171', '{\"id\":\"171\",\"collection\":\"show_sections\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(82, 83, 'directus_fields', '172', '{\"id\":\"172\",\"collection\":\"show_sections\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(83, 84, 'directus_fields', '173', '{\"id\":\"173\",\"collection\":\"show_sections\",\"field\":\"sort\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"sort\",\"type\":\"sort\",\"interface\":\"sort\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(84, 85, 'directus_fields', '174', '{\"id\":\"174\",\"collection\":\"show_sections\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(85, 86, 'directus_fields', '175', '{\"id\":\"175\",\"collection\":\"show_sections\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(86, 87, 'directus_fields', '176', '{\"id\":\"176\",\"collection\":\"show_sections\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(87, 88, 'directus_fields', '177', '{\"id\":\"177\",\"collection\":\"show_sections\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(88, 89, 'directus_collections', 'show_sections', '{\"collection\":\"show_sections\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(89, 90, 'directus_fields', '178', '{\"id\":\"178\",\"collection\":\"show_sections\",\"field\":\"file\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le fichier audio de la section au format FLAC\",\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"file\",\"type\":\"file\",\"interface\":\"file\",\"required\":true,\"sort\":null,\"note\":\"Le fichier audio de la section au format FLAC\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(90, 91, 'directus_fields', '179', '{\"id\":\"179\",\"collection\":\"show_sections\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le titre de la section\",\"translation\":null}', '{\"collection\":\"show_sections\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Le titre de la section\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(91, 92, 'directus_relations', '17', '{\"id\":\"17\",\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\",\"junction_field\":null}', '{\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\"}', NULL, NULL, NULL),
(92, 93, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"file,title\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"required\":true,\"sort\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"file,title\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(93, 94, 'directus_relations', '17', '{\"id\":\"17\",\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\",\"junction_field\":null}', '{\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\"}', NULL, NULL, NULL),
(94, 95, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"file,title\",\"template\":\"{{ file }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"file,title\",\"template\":\"{{ file }} - {{ title }}\"},\"readonly\":false,\"required\":true,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(95, 96, 'directus_collections', 'show_sections', '{\"collection\":\"show_sections\",\"managed\":true,\"hidden\":true,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"hidden\":true}', NULL, NULL, NULL),
(96, 97, 'directus_files', '2', '{\"id\":\"2\",\"storage\":\"local\",\"filename\":\"Who_are_Q.mp3\",\"title\":\"Who Are Q\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 02:41:53\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"filename\":\"Who are Q.mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 21:41:53\"}', NULL, NULL, NULL),
(97, 98, 'directus_relations', '17', '{\"id\":\"17\",\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\",\"junction_field\":null}', '{\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\"}', NULL, NULL, NULL),
(98, 99, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"id,title\",\"template\":\"{{ id }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"id,title\",\"template\":\"{{ id }} - {{ title }}\"},\"readonly\":false,\"required\":true,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(99, 100, 'directus_files', '3', '{\"id\":\"3\",\"storage\":\"local\",\"filename\":\"Who_are_Q-1.mp3\",\"title\":\"Who Are Q 1\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 02:43:47\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-1.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-1.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"filename\":\"Who are Q.mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 21:43:47\"}', NULL, NULL, NULL),
(100, 101, 'directus_relations', '17', '{\"id\":\"17\",\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\",\"junction_field\":null}', '{\"collection_many\":\"show_sections\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"sections\"}', NULL, NULL, NULL),
(101, 102, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title\",\"template\":\"{{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title\",\"template\":\"{{ title }}\"},\"readonly\":false,\"required\":true,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(102, 103, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(103, 104, 'directus_fields', '182', '{\"id\":\"182\",\"collection\":\"track\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(104, 105, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(105, 106, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(106, 107, 'directus_collections', 'track', '{\"collection\":\"track\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(107, 108, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le titre du morceau\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(108, 109, 'directus_fields', '186', '{\"id\":\"186\",\"collection\":\"track\",\"field\":\"author\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"L\'auteur ou l\'autrice du morceau\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"author\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"L\'auteur ou l\'autrice du morceau\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(109, 110, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"required\":true,\"sort\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(110, 111, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"required\":true,\"sort\":7,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true},\"locked\":false,\"translation\":null,\"readonly\":false,\"width\":4,\"validation\":null,\"group\":null}', NULL, NULL, NULL),
(111, 112, 'directus_fields', '189', '{\"id\":\"189\",\"collection\":\"author\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"author\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(112, 113, 'directus_fields', '190', '{\"id\":\"190\",\"collection\":\"author\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"author\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(113, 114, 'directus_fields', '191', '{\"id\":\"191\",\"collection\":\"author\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"author\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(114, 115, 'directus_collections', 'author', '{\"collection\":\"author\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(115, 116, 'directus_fields', '192', '{\"id\":\"192\",\"collection\":\"author\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":true,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom de l\'artiste\",\"translation\":null}', '{\"collection\":\"author\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le nom de l\'artiste\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":true,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(116, 117, 'directus_fields', '193', '{\"id\":\"193\",\"collection\":\"artist\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"artist\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(117, 118, 'directus_fields', '194', '{\"id\":\"194\",\"collection\":\"artist\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"artist\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(118, 119, 'directus_fields', '195', '{\"id\":\"195\",\"collection\":\"artist\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"artist\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(119, 120, 'directus_collections', 'artist', '{\"collection\":\"artist\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(120, 121, 'directus_fields', '196', '{\"id\":\"196\",\"collection\":\"artist\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":true,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom de l\'artiste\",\"translation\":null}', '{\"collection\":\"artist\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Le nom de l\'artiste\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":true,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(121, 122, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(122, 123, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(123, 124, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(124, 125, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(125, 126, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(126, 127, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(127, 128, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"required\":false,\"sort\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(128, 129, 'directus_relations', '18', '{\"id\":\"18\",\"collection_many\":\"track_artist\",\"field_many\":\"artist_id\",\"collection_one\":\"artist\",\"field_one\":\"track\",\"junction_field\":\"track_id\"}', '{\"collection_many\":\"track_artist\",\"field_many\":\"artist_id\",\"collection_one\":\"artist\",\"field_one\":\"track\",\"junction_field\":\"track_id\"}', NULL, NULL, NULL),
(129, 130, 'directus_fields', '198', '{\"id\":\"198\",\"collection\":\"track_artist\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track_artist\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(130, 131, 'directus_fields', '199', '{\"id\":\"199\",\"collection\":\"track_artist\",\"field\":\"track_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track_artist\",\"field\":\"track_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(131, 132, 'directus_relations', '19', '{\"id\":\"19\",\"collection_many\":\"track_artist\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"artists\",\"junction_field\":\"artist_id\"}', '{\"collection_many\":\"track_artist\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"artists\",\"junction_field\":\"artist_id\"}', NULL, NULL, NULL),
(132, 133, 'directus_fields', '200', '{\"id\":\"200\",\"collection\":\"track_artist\",\"field\":\"artist_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"track_artist\",\"field\":\"artist_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(133, 134, 'directus_collections', 'track_artist', '{\"collection\":\"track_artist\",\"managed\":true,\"hidden\":true,\"single\":false,\"icon\":null,\"note\":\"Junction Collection\",\"translation\":null}', '{\"managed\":true,\"hidden\":true,\"note\":\"Junction Collection\"}', NULL, NULL, NULL),
(134, 135, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(135, 136, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(136, 137, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(137, 138, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(138, 139, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(139, 140, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(140, 141, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(141, 142, 'directus_fields', '201', '{\"id\":\"201\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title,artists\",\"template\":\"{{ title }} - {{ artists }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"required\":false,\"sort\":null,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"title,artists\",\"template\":\"{{ title }} - {{ artists }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(142, 143, 'directus_relations', '20', '{\"id\":\"20\",\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\",\"junction_field\":null}', '{\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\"}', NULL, NULL, NULL),
(143, 144, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(144, 145, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(145, 146, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(146, 147, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(147, 148, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(148, 149, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(149, 150, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(150, 151, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(151, 152, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(152, 153, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(153, 154, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(154, 155, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(155, 156, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(156, 157, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(157, 158, 'directus_relations', '20', '{\"id\":\"20\",\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\",\"junction_field\":null}', '{\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\"}', NULL, NULL, NULL),
(158, 159, 'directus_fields', '201', '{\"id\":\"201\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title,artists,position_start,position_end\",\"template\":\"{{ title }} - {{ artists }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title,artists,position_start,position_end\",\"template\":\"{{ title }} - {{ artists }}\"},\"readonly\":false,\"required\":false,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(159, 160, 'directus_fields', '202', '{\"id\":\"202\",\"collection\":\"track\",\"field\":\"sort_order\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La place du morceau dans la playlist\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"sort_order\",\"type\":\"sort\",\"interface\":\"sort\",\"required\":true,\"sort\":null,\"note\":\"La place du morceau dans la playlist\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":[],\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(160, 161, 'directus_fields', '181', '{\"id\":\"181\",\"collection\":\"track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(161, 162, 'directus_fields', '183', '{\"id\":\"183\",\"collection\":\"track\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(162, 163, 'directus_fields', '184', '{\"id\":\"184\",\"collection\":\"track\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(163, 164, 'directus_fields', '202', '{\"id\":\"202\",\"collection\":\"track\",\"field\":\"sort_order\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"La place du morceau dans la playlist\",\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(164, 165, 'directus_fields', '185', '{\"id\":\"185\",\"collection\":\"track\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre du morceau\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(165, 166, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(166, 167, 'directus_fields', '187', '{\"id\":\"187\",\"collection\":\"track\",\"field\":\"position_start\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(167, 168, 'directus_fields', '188', '{\"id\":\"188\",\"collection\":\"track\",\"field\":\"position_end\",\"type\":\"integer\",\"interface\":\"numeric\",\"options\":{\"localized\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Le nombre de secondes qui s\\u00e9parent le morceau du d\\u00e9but de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(168, 169, 'directus_relations', '19', '{\"id\":\"19\",\"collection_many\":\"track_artist\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"artists\",\"junction_field\":\"artist_id\"}', '{\"collection_many\":\"track_artist\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"artists\",\"junction_field\":\"artist_id\"}', NULL, NULL, NULL),
(169, 170, 'directus_relations', '18', '{\"id\":\"18\",\"collection_many\":\"track_artist\",\"field_many\":\"artist_id\",\"collection_one\":\"artist\",\"field_one\":\"track\",\"junction_field\":\"track_id\"}', '{\"collection_many\":\"track_artist\",\"field_many\":\"artist_id\",\"collection_one\":\"artist\",\"junction_field\":\"track_id\"}', NULL, NULL, NULL),
(170, 171, 'directus_fields', '197', '{\"id\":\"197\",\"collection\":\"track\",\"field\":\"artists\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"translation\":null}', '{\"sort\":6,\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"readonly\":false,\"required\":true,\"note\":\"Les artistes \\u00e0 l\'origine du morceau\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(171, 172, 'directus_relations', '20', '{\"id\":\"20\",\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\",\"junction_field\":null}', '{\"collection_many\":\"track\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"tracks\"}', NULL, NULL, NULL),
(172, 173, 'directus_fields', '201', '{\"id\":\"201\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"sort_order,title,artists,position_start,position_end\",\"template\":\"{{ title }} - {{ artists }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":null,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"sort_order,title,artists,position_start,position_end\",\"template\":\"{{ title }} - {{ artists }}\"},\"readonly\":false,\"required\":true,\"note\":\"Les morceaux de l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(173, 174, 'directus_fields', '203', '{\"id\":\"203\",\"collection\":\"broadcaster\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(174, 175, 'directus_fields', '204', '{\"id\":\"204\",\"collection\":\"broadcaster\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(175, 176, 'directus_fields', '205', '{\"id\":\"205\",\"collection\":\"broadcaster\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(176, 177, 'directus_fields', '206', '{\"id\":\"206\",\"collection\":\"broadcaster\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(177, 178, 'directus_collections', 'broadcaster', '{\"collection\":\"broadcaster\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(178, 179, 'directus_fields', '207', '{\"id\":\"207\",\"collection\":\"broadcaster\",\"field\":\"nom\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom du diffuseur\",\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"nom\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le nom du diffuseur\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(179, 180, 'directus_fields', '208', '{\"id\":\"208\",\"collection\":\"broadcaster\",\"field\":\"frequency\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La fr\\u00e9quence, pour les radio hertziennes\",\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"frequency\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"La fr\\u00e9quence, pour les radio hertziennes\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(180, 181, 'directus_fields', '209', '{\"id\":\"209\",\"collection\":\"broadcaster\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Un lien vers le site du diffuseur\",\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Un lien vers le site du diffuseur\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(181, 182, 'directus_fields', '210', '{\"id\":\"210\",\"collection\":\"broadcaster\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Description du diffuseur, modalit\\u00e9s de diffusion\",\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Description du diffuseur, modalit\\u00e9s de diffusion\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(182, 183, 'directus_fields', '210', '{\"id\":\"210\",\"collection\":\"broadcaster\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Description du diffuseur, modalit\\u00e9s de diffusion\",\"translation\":null}', '{\"sort\":null,\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]},\"readonly\":false,\"required\":false,\"note\":\"Description du diffuseur, modalit\\u00e9s de diffusion\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(183, 184, 'directus_fields', '211', '{\"id\":\"211\",\"collection\":\"broadcaster\",\"field\":\"since\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Date de premi\\u00e8re diffusion par ce diffuseur\",\"translation\":null}', '{\"collection\":\"broadcaster\",\"field\":\"since\",\"type\":\"date\",\"interface\":\"date\",\"required\":false,\"sort\":null,\"note\":\"Date de premi\\u00e8re diffusion par ce diffuseur\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true,\"showRelative\":true},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(184, 185, 'directus_fields', '212', '{\"id\":\"212\",\"collection\":\"flyers\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(185, 186, 'directus_fields', '213', '{\"id\":\"213\",\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(186, 187, 'directus_fields', '214', '{\"id\":\"214\",\"collection\":\"flyers\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(187, 188, 'directus_fields', '215', '{\"id\":\"215\",\"collection\":\"flyers\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(188, 189, 'directus_fields', '216', '{\"id\":\"216\",\"collection\":\"flyers\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(189, 190, 'directus_fields', '217', '{\"id\":\"217\",\"collection\":\"flyers\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(190, 191, 'directus_collections', 'flyers', '{\"collection\":\"flyers\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(191, 192, 'directus_fields', '218', '{\"id\":\"218\",\"collection\":\"flyers\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le fichier image du flyer\",\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"required\":true,\"sort\":null,\"note\":\"Le fichier image du flyer\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(192, 193, 'directus_fields', '219', '{\"id\":\"219\",\"collection\":\"flyers\",\"field\":\"period_start\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"period_start\",\"type\":\"date\",\"interface\":\"date\",\"required\":true,\"sort\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true,\"showRelative\":true},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(193, 194, 'directus_fields', '220', '{\"id\":\"220\",\"collection\":\"flyers\",\"field\":\"period_stop\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"period_stop\",\"type\":\"date\",\"interface\":\"date\",\"required\":true,\"sort\":9,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"translation\":null,\"readonly\":false,\"width\":4,\"validation\":null,\"group\":null}', NULL, NULL, NULL),
(194, 195, 'directus_fields', '221', '{\"id\":\"221\",\"collection\":\"illustrators\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(195, 196, 'directus_fields', '222', '{\"id\":\"222\",\"collection\":\"illustrators\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(196, 197, 'directus_fields', '223', '{\"id\":\"223\",\"collection\":\"illustrators\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(197, 198, 'directus_fields', '224', '{\"id\":\"224\",\"collection\":\"illustrators\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(198, 199, 'directus_fields', '225', '{\"id\":\"225\",\"collection\":\"illustrators\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(199, 200, 'directus_fields', '226', '{\"id\":\"226\",\"collection\":\"illustrators\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrators\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(200, 201, 'directus_collections', 'illustrators', '{\"collection\":\"illustrators\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(201, 202, 'directus_fields', '227', '{\"id\":\"227\",\"collection\":\"illustrator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(202, 203, 'directus_fields', '228', '{\"id\":\"228\",\"collection\":\"illustrator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(203, 204, 'directus_fields', '229', '{\"id\":\"229\",\"collection\":\"illustrator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(204, 205, 'directus_fields', '230', '{\"id\":\"230\",\"collection\":\"illustrator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(205, 206, 'directus_fields', '231', '{\"id\":\"231\",\"collection\":\"illustrator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(206, 207, 'directus_fields', '232', '{\"id\":\"232\",\"collection\":\"illustrator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(207, 208, 'directus_collections', 'illustrator', '{\"collection\":\"illustrator\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(208, 209, 'directus_fields', '233', '{\"id\":\"233\",\"collection\":\"illustrator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La nom de l\'artiste\",\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"La nom de l\'artiste\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(209, 210, 'directus_fields', '234', '{\"id\":\"234\",\"collection\":\"illustrator\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Lien vers le site de l\'artiste\",\"translation\":null}', '{\"collection\":\"illustrator\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Lien vers le site de l\'artiste\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(210, 211, 'directus_relations', '21', '{\"id\":\"21\",\"collection_many\":\"flyers_illustrator\",\"field_many\":\"illustrator_id\",\"collection_one\":\"illustrator\",\"field_one\":\"flyers\",\"junction_field\":\"flyers_id\"}', '{\"collection_many\":\"flyers_illustrator\",\"field_many\":\"illustrator_id\",\"collection_one\":\"illustrator\",\"field_one\":\"flyers\",\"junction_field\":\"flyers_id\"}', NULL, NULL, NULL),
(211, 212, 'directus_fields', '235', '{\"id\":\"235\",\"collection\":\"flyers\",\"field\":\"illustrators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les illustrateurs \\u00e0 cr\\u00e9diter\",\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"illustrators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"required\":true,\"sort\":null,\"note\":\"Les illustrateurs \\u00e0 cr\\u00e9diter\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(212, 213, 'directus_fields', '236', '{\"id\":\"236\",\"collection\":\"flyers_illustrator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers_illustrator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(213, 214, 'directus_fields', '237', '{\"id\":\"237\",\"collection\":\"flyers_illustrator\",\"field\":\"flyers_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers_illustrator\",\"field\":\"flyers_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(214, 215, 'directus_relations', '22', '{\"id\":\"22\",\"collection_many\":\"flyers_illustrator\",\"field_many\":\"flyers_id\",\"collection_one\":\"flyers\",\"field_one\":\"illustrators\",\"junction_field\":\"illustrator_id\"}', '{\"collection_many\":\"flyers_illustrator\",\"field_many\":\"flyers_id\",\"collection_one\":\"flyers\",\"field_one\":\"illustrators\",\"junction_field\":\"illustrator_id\"}', NULL, NULL, NULL),
(215, 216, 'directus_fields', '238', '{\"id\":\"238\",\"collection\":\"flyers_illustrator\",\"field\":\"illustrator_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"flyers_illustrator\",\"field\":\"illustrator_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(216, 217, 'directus_collections', 'flyers_illustrator', '{\"collection\":\"flyers_illustrator\",\"managed\":true,\"hidden\":true,\"single\":false,\"icon\":null,\"note\":\"Junction Collection\",\"translation\":null}', '{\"managed\":true,\"hidden\":true,\"note\":\"Junction Collection\"}', NULL, NULL, NULL),
(217, 218, 'directus_files', '4', '{\"id\":\"4\",\"storage\":\"local\",\"filename\":\"Quentin.jpg\",\"title\":\"Quentin\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:27:03\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"Quentin.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:27:03\"}', NULL, NULL, NULL),
(218, 219, 'directus_files', '4', '{\"id\":\"4\",\"storage\":\"local\",\"filename\":\"Quentin.jpg\",\"title\":\"Quentin\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:27:03\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin.jpg\",\"title\":\"Quentin\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:27:03+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(219, 220, 'illustrator', '1', '{\"id\":\"1\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:27:17\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:27:17\",\"name\":\"Goupil Acn\\u00e9ique\",\"url\":null}', '{\"name\":\"Goupil Acn\\u00e9ique\"}', NULL, NULL, NULL),
(220, 221, 'illustrator', '2', '{\"id\":\"2\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:27:18\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:27:18\",\"name\":\"Monna Bouris\",\"url\":null}', '{\"name\":\"Monna Bouris\"}', NULL, NULL, NULL),
(221, 222, 'flyers', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:27:17\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:27:17\",\"image\":\"4\",\"period_start\":\"2019-03-21\",\"period_stop\":\"2019-03-31\"}', '{\"image\":4,\"period_start\":\"2019-03-21\",\"period_stop\":\"2019-03-31\",\"status\":\"published\"}', NULL, NULL, NULL),
(222, 223, 'flyers_illustrator', '1', '{\"id\":\"1\",\"flyers_id\":\"1\",\"illustrator_id\":\"1\"}', '{\"illustrator_id\":1,\"flyers_id\":\"1\"}', 'flyers', NULL, 1),
(223, 224, 'flyers_illustrator', '2', '{\"id\":\"2\",\"flyers_id\":\"1\",\"illustrator_id\":\"2\"}', '{\"illustrator_id\":2,\"flyers_id\":\"1\"}', 'flyers', NULL, 1),
(224, 225, 'directus_relations', '23', '{\"id\":\"23\",\"collection_many\":\"show\",\"field_many\":\"id\",\"collection_one\":\"flyers\",\"field_one\":\"shows\",\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"id\",\"collection_one\":\"flyers\",\"field_one\":\"shows\"}', NULL, NULL, NULL),
(225, 226, 'directus_fields', '239', '{\"id\":\"239\",\"collection\":\"flyers\",\"field\":\"shows\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les \\u00e9missions pr\\u00e9sent\\u00e9es par ce flyer\",\"translation\":null}', '{\"collection\":\"flyers\",\"field\":\"shows\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"required\":true,\"sort\":null,\"note\":\"Les \\u00e9missions pr\\u00e9sent\\u00e9es par ce flyer\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(226, 227, 'directus_files', '5', '{\"id\":\"5\",\"storage\":\"local\",\"filename\":\"Quentin-1.jpg\",\"title\":\"Quentin 1\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:32:29\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"Quentin.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:32:29\"}', NULL, NULL, NULL),
(227, 228, 'directus_files', '5', '{\"id\":\"5\",\"storage\":\"local\",\"filename\":\"Quentin-1.jpg\",\"title\":\"Quentin 1\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:32:29\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-1.jpg\",\"title\":\"Quentin 1\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:32:29+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-1.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-1.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(228, 229, 'illustrator', '3', '{\"id\":\"3\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:32:41\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:32:41\",\"name\":\"Goupil Acn\\u00e9ique\",\"url\":null}', '{\"name\":\"Goupil Acn\\u00e9ique\"}', NULL, NULL, NULL),
(229, 230, 'illustrator', '4', '{\"id\":\"4\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:32:41\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:32:41\",\"name\":\"Monna Bourrhis\",\"url\":null}', '{\"name\":\"Monna Bourrhis\"}', NULL, NULL, NULL),
(230, 231, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:31:01\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:31:01+00:00\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', NULL, NULL, NULL),
(231, 232, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(232, 233, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:31:01\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:31:01+00:00\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', NULL, NULL, NULL),
(233, 234, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(234, 235, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:31:01\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:31:01+00:00\",\"last_page\":\"\\/collections\\/flyers\\/1\",\"external_id\":null}', NULL, NULL, NULL),
(235, 236, 'directus_files', '1', '{\"id\":\"1\",\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:23:23\",\"charset\":\"binary\",\"filesize\":\"334855\",\"width\":\"600\",\"height\":\"600\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:23:23+00:00\",\"charset\":\"binary\",\"filesize\":334855,\"width\":600,\"height\":600,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(236, 237, 'directus_files', '6', '{\"id\":\"6\",\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:34:15\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"Quentin.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:34:15\"}', NULL, NULL, NULL),
(237, 238, 'directus_files', '6', '{\"id\":\"6\",\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:34:15\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:34:15+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(238, 239, 'illustrator', '5', '{\"id\":\"5\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:35:06\",\"name\":\"fefezfezfezfzef\",\"url\":null}', '{\"name\":\"fefezfezfezfzef\"}', NULL, NULL, NULL),
(239, 240, 'flyers', '3', '{\"id\":\"3\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:35:06\",\"image\":\"6\",\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', '{\"image\":6,\"status\":\"published\",\"period_stop\":\"2019-03-15\",\"period_start\":\"2019-03-05\"}', NULL, NULL, NULL),
(240, 241, 'flyers_illustrator', '5', '{\"id\":\"5\",\"flyers_id\":\"3\",\"illustrator_id\":\"5\"}', '{\"illustrator_id\":5,\"flyers_id\":\"3\"}', 'flyers', NULL, 1),
(241, 242, 'show', '3', '{\"id\":\"3\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:35:06\",\"title\":\"fefez\",\"reference\":\"fzefezf\",\"collection\":\"ailleurs\",\"release_date\":\"2019-03-08\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":null}', '{\"title\":\"fefez\",\"reference\":\"fzefezf\",\"release_date\":\"2019-03-08\",\"description\":\"<p>fezfezf<\\/p>\"}', 'flyers', NULL, 1),
(242, 243, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:11\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:11+00:00\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', NULL, NULL, NULL),
(243, 244, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:11\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:11+00:00\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', NULL, NULL, NULL),
(244, 245, 'directus_files', '6', '{\"id\":\"6\",\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:34:15\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:34:15+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(245, 246, 'flyers', '3', '{\"id\":\"3\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:35:40\",\"image\":\"6\",\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:35:06\",\"image\":6,\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', NULL, NULL, NULL),
(246, 247, 'flyers_illustrator', '5', '{\"id\":\"5\",\"flyers_id\":\"3\",\"illustrator_id\":\"5\"}', '{\"flyers_id\":3,\"illustrator_id\":5}', 'flyers', '3', 1),
(247, 248, 'illustrator', '6', '{\"id\":\"6\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:40\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:35:40\",\"name\":\"fefezfzefze\",\"url\":null}', '{\"name\":\"fefezfzefze\"}', NULL, NULL, NULL),
(248, 249, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(249, 250, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(250, 251, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(251, 252, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(252, 253, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(253, 254, 'directus_files', '1', '{\"id\":\"1\",\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:23:23\",\"charset\":\"binary\",\"filesize\":\"334855\",\"width\":\"600\",\"height\":\"600\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:23:23+00:00\",\"charset\":\"binary\",\"filesize\":334855,\"width\":600,\"height\":600,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(254, 255, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:11\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:11+00:00\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', NULL, NULL, NULL),
(255, 256, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:11\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:11+00:00\",\"last_page\":\"\\/collections\\/flyers\",\"external_id\":null}', NULL, NULL, NULL),
(256, 257, 'directus_files', '6', '{\"id\":\"6\",\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:34:15\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-2.jpg\",\"title\":\"Quentin 2\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:34:15+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-2.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-2.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(257, 258, 'flyers', '3', '{\"id\":\"3\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:36:27\",\"image\":\"6\",\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:35:06\",\"image\":6,\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', NULL, NULL, NULL),
(258, 259, 'flyers_illustrator', '5', '{\"id\":\"5\",\"flyers_id\":\"3\",\"illustrator_id\":\"5\"}', '{\"flyers_id\":3,\"illustrator_id\":5}', 'flyers', '3', 1),
(259, 260, 'illustrator', '7', '{\"id\":\"7\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:36:27\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:36:27\",\"name\":\"fefezfzefze\",\"url\":null}', '{\"name\":\"fefezfzefze\"}', NULL, NULL, NULL),
(260, 261, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(261, 262, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(262, 263, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(263, 264, 'directus_user_roles', '1', '{\"id\":\"1\",\"user\":\"1\",\"role\":\"1\"}', '{\"user\":1,\"role\":1}', 'directus_users', '1', 1),
(264, 265, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:35:31\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:35:31+00:00\",\"last_page\":\"\\/collections\\/flyers\\/3\",\"external_id\":null}', NULL, NULL, NULL),
(265, 266, 'directus_files', '1', '{\"id\":\"1\",\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:23:23\",\"charset\":\"binary\",\"filesize\":\"334855\",\"width\":\"600\",\"height\":\"600\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"ouiedire_bagage-4_cover-1.png\",\"title\":\"Ouiedire Bagage 4 Cover 1\",\"type\":\"image\\/png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:23:23+00:00\",\"charset\":\"binary\",\"filesize\":334855,\"width\":600,\"height\":600,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4db9a86607fdb7d26d982b3ca6fc0fa7\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ouiedire_bagage-4_cover-1.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ouiedire_bagage-4_cover-1.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(266, 267, 'show', '1', '{\"id\":\"1\",\"status\":\"deleted\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 02:23:30\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:38:53\",\"title\":\"Chamade\",\"reference\":\"04\",\"collection\":\"bagage\",\"release_date\":\"2015-04-20\",\"description\":\"<p>Da ! Heard it Records is a netlabel since 2006. The aim of this eclectic record company is to promote new artists and new types if music. D!HR is an outward-looking label, accessible to professional and amateur musicians alike, and to all types of listener, thanks to its policy of open and free culture and to the types of music it publishes. Its albums are distributed under a Creative Commons licence, encouraging sharing and reuse of the music.<\\/p><p><a href=\\\"https:\\/\\/www.daheardit-records.net\\\">https:\\/\\/www.daheardit-records.net<\\/a><\\/p>\",\"cover\":\"1\"}', '{\"status\":\"deleted\",\"id\":\"1\"}', NULL, NULL, NULL),
(267, 268, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"Quentin.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:39:24\"}', NULL, NULL, NULL),
(268, 269, 'directus_files', '8', '{\"id\":\"8\",\"storage\":\"local\",\"filename\":\"Who_are_Q-2.mp3\",\"title\":\"Who Are Q 2\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:33\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"filename\":\"Who are Q.mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:39:33\"}', NULL, NULL, NULL),
(269, 270, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(270, 271, 'curator', '2', '{\"id\":\"2\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:39:54\",\"name\":\"dzzafezfez\",\"email\":null}', '{\"name\":\"dzzafezfez\"}', NULL, NULL, NULL),
(271, 272, 'directus_files', '8', '{\"id\":\"8\",\"storage\":\"local\",\"filename\":\"Who_are_Q-2.mp3\",\"title\":\"Who Are Q 2\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:33\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Who_are_Q-2.mp3\",\"title\":\"Who Are Q 2\",\"type\":\"audio\\/mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:33+00:00\",\"charset\":\"binary\",\"filesize\":2019704,\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-2.mp3\",\"thumbnails\":null,\"embed\":null}}', NULL, NULL, NULL),
(272, 273, 'artist', '1', '{\"id\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', '{\"name\":\"dazdazdaz\"}', NULL, NULL, NULL),
(273, 274, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:39:54\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"collection\":\"ailleurs\",\"status\":\"published\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(274, 275, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":\"2\"}', '{\"curator_id\":2,\"show_id\":\"4\"}', 'show', NULL, 1),
(275, 276, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:39:54\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"file\":8,\"title\":\"ergreg\"}', 'show', NULL, 1),
(276, 277, 'track_artist', '1', '{\"id\":\"1\",\"track_id\":\"4\",\"artist_id\":\"1\"}', '{\"artist_id\":1,\"track_id\":\"4\"}', 'show', NULL, 1),
(277, 278, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"sort_order\":1,\"title\":\"dzadaz\"}', 'show', NULL, 1),
(278, 279, 'flyers', '1', '{\"id\":\"1\",\"status\":\"deleted\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:27:17\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:40:23\",\"image\":\"4\",\"period_start\":\"2019-03-21\",\"period_stop\":\"2019-03-31\"}', '{\"status\":\"deleted\",\"id\":\"1\"}', NULL, NULL, NULL),
(279, 280, 'flyers', '2', '{\"id\":\"2\",\"status\":\"deleted\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:32:41\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:40:23\",\"image\":\"5\",\"period_start\":\"2019-03-30\",\"period_stop\":\"2019-02-27\"}', '{\"status\":\"deleted\",\"id\":\"2\"}', NULL, NULL, NULL),
(280, 281, 'flyers', '3', '{\"id\":\"3\",\"status\":\"deleted\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:35:06\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:40:23\",\"image\":\"6\",\"period_start\":\"2019-03-05\",\"period_stop\":\"2019-03-15\"}', '{\"status\":\"deleted\",\"id\":\"3\"}', NULL, NULL, NULL),
(281, 282, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:40:31\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:40:31+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(282, 283, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:40:31\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:40:31+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(283, 284, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(284, 285, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:02\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:39:54\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(285, 286, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":\"2\"}', '{\"show_id\":4,\"curator_id\":2}', 'show', '4', 1),
(286, 287, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:02\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:39:54\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(287, 288, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(288, 289, 'curator', '3', '{\"id\":\"3\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:41:02\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:02\",\"name\":\"fefezfzef\",\"email\":null}', '{\"name\":\"fefezfzef\"}', NULL, NULL, NULL),
(289, 290, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:02\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '[]', NULL, NULL, NULL),
(290, 291, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(291, 292, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":\"3\"}', '{\"curator_id\":3,\"show_id\":\"4\"}', 'show', '4', 1),
(292, 293, 'curator', '1', '{\"id\":\"1\",\"status\":\"deleted\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:29:51\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:15\",\"name\":\"Nils\",\"email\":\"nilsmaisoneuve@hotmail.fr\"}', '{\"status\":\"deleted\",\"id\":\"1\"}', NULL, NULL, NULL),
(293, 294, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:41:11\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:41:11+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(294, 295, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:41:11\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:41:11+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(295, 296, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(296, 297, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:02\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(297, 298, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(298, 299, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":\"3\"}', '{\"show_id\":4,\"curator_id\":3}', 'show', '4', 1),
(299, 300, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:02\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(300, 301, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(301, 302, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:41:11\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:41:11+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(302, 303, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:41:11\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:41:11+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(303, 304, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(304, 305, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:02\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(305, 306, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(306, 307, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":\"3\"}', '{\"show_id\":4,\"curator_id\":3}', 'show', '4', 1),
(307, 308, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:02\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(308, 309, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(309, 310, 'curator', '4', '{\"id\":\"4\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:41:38\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"name\":\"zfezfzefzef\",\"email\":null}', '{\"name\":\"zfezfzefzef\"}', NULL, NULL, NULL),
(310, 311, 'curator', '5', '{\"id\":\"5\",\"status\":null,\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:41:39\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:39\",\"name\":\"htrhrthrthrthrth\",\"email\":null}', '{\"name\":\"htrhrthrthrthrth\"}', NULL, NULL, NULL),
(311, 312, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '[]', NULL, NULL, NULL),
(312, 313, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(313, 314, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(314, 315, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":\"4\"}', '{\"curator_id\":4,\"show_id\":\"4\"}', 'show', '4', 1),
(315, 316, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":\"5\"}', '{\"curator_id\":5,\"show_id\":\"4\"}', 'show', '4', 1),
(316, 317, 'directus_fields', '204', '{\"id\":\"204\",\"collection\":\"broadcaster\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(317, 318, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(318, 319, 'directus_fields', '213', '{\"id\":\"213\",\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(319, 320, 'directus_fields', '228', '{\"id\":\"228\",\"collection\":\"illustrator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(320, 321, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(321, 322, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(322, 323, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(323, 324, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(324, 325, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:22\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(325, 326, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(326, 327, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(327, 328, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":\"4\"}', '{\"show_id\":4,\"curator_id\":4}', 'show', '4', 1),
(328, 329, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":\"5\"}', '{\"show_id\":4,\"curator_id\":5}', 'show', '4', 1),
(329, 330, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:22\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(330, 331, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(331, 332, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(332, 333, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(333, 334, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(334, 335, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:22\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(335, 336, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(336, 337, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(337, 338, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":\"4\"}', '{\"show_id\":4,\"curator_id\":4}', 'show', '4', 1),
(338, 339, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":\"5\"}', '{\"show_id\":4,\"curator_id\":5}', 'show', '4', 1),
(339, 340, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:22\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(340, 341, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(341, 342, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(342, 343, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(343, 344, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(344, 345, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:23\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(345, 346, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(346, 347, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(347, 348, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":\"4\"}', '{\"show_id\":4,\"curator_id\":4}', 'show', '4', 1),
(348, 349, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":\"5\"}', '{\"show_id\":4,\"curator_id\":5}', 'show', '4', 1),
(349, 350, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:23\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(350, 351, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(351, 352, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(352, 353, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10 03:43:58\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":null,\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-10T03:43:58+00:00\",\"last_page\":\"\\/settings\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(353, 354, 'directus_files', '7', '{\"id\":\"7\",\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:39:24\",\"charset\":\"binary\",\"filesize\":\"28775\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Quentin-3.jpg\",\"title\":\"Quentin 3\",\"type\":\"image\\/jpeg\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:39:24+00:00\",\"charset\":\"binary\",\"filesize\":28775,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fd0b818e7b47fa9b2adab202aaa5a82f\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/Quentin-3.jpg\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/Quentin-3.jpg\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(354, 355, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:23\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '{\"status\":\"published\",\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":7}', NULL, NULL, NULL),
(355, 356, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(356, 357, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(357, 358, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":\"4\"}', '{\"show_id\":4,\"curator_id\":4}', 'show', '4', 1),
(358, 359, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":\"5\"}', '{\"show_id\":4,\"curator_id\":5}', 'show', '4', 1),
(359, 360, 'show_sections', '4', '{\"id\":\"4\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:23\",\"file\":\"8\",\"title\":\"ergreg\"}', '{\"sort\":1,\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":1,\"modified_on\":\"2019-03-10 03:41:38\",\"file\":8,\"title\":\"ergreg\"}', 'show', '4', 1),
(360, 361, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', 'show', '4', 1),
(361, 362, 'curator', '6', '{\"id\":\"6\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:44:23\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:23\",\"name\":\"vdvsdvsdvsd\",\"email\":null}', '{\"name\":\"vdvsdvsdvsd\"}', NULL, NULL, NULL),
(362, 363, 'curator', '7', '{\"id\":\"7\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:44:24\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:24\",\"name\":\"vdsvsdvsdv\",\"email\":null}', '{\"name\":\"vdsvsdvsdv\"}', NULL, NULL, NULL),
(363, 364, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:44:22\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '[]', NULL, NULL, NULL),
(364, 365, 'show_directus_curator', '2', '{\"id\":\"2\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(365, 366, 'show_directus_curator', '3', '{\"id\":\"3\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(366, 367, 'show_directus_curator', '4', '{\"id\":\"4\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(367, 368, 'show_directus_curator', '5', '{\"id\":\"5\",\"show_id\":\"4\",\"curator_id\":null}', '{\"show_id\":4,\"curator_id\":null}', 'show', '4', 1),
(368, 369, 'show_directus_curator', '6', '{\"id\":\"6\",\"show_id\":\"4\",\"curator_id\":\"6\"}', '{\"curator_id\":6,\"show_id\":\"4\"}', 'show', '4', 1),
(369, 370, 'show_directus_curator', '7', '{\"id\":\"7\",\"show_id\":\"4\",\"curator_id\":\"7\"}', '{\"curator_id\":7,\"show_id\":\"4\"}', 'show', '4', 1),
(370, 371, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":true,\"validation\":null}', NULL, NULL, NULL),
(371, 372, 'directus_fields', '228', '{\"id\":\"228\",\"collection\":\"illustrator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(372, 373, 'directus_files', '9', '{\"id\":\"9\",\"storage\":\"local\",\"filename\":\"ma.png\",\"title\":\"Ma\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:47:17\",\"charset\":\"binary\",\"filesize\":\"152849\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"56d7113af503c0e46ee46735755d5afd\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ma.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ma.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"filename\":\"ma.png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:47:17\"}', NULL, NULL, NULL),
(373, 374, 'directus_files', '10', '{\"id\":\"10\",\"storage\":\"local\",\"filename\":\"Who_are_Q-3.mp3\",\"title\":\"Who Are Q 3\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:47:26\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"filename\":\"Who are Q.mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-09 22:47:26\"}', NULL, NULL, NULL),
(374, 375, 'directus_files', '9', '{\"id\":\"9\",\"storage\":\"local\",\"filename\":\"ma.png\",\"title\":\"Ma\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:47:17\",\"charset\":\"binary\",\"filesize\":\"152849\",\"width\":\"480\",\"height\":\"480\",\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"56d7113af503c0e46ee46735755d5afd\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ma.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ma.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"ma.png\",\"title\":\"Ma\",\"type\":\"image\\/png\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:47:17+00:00\",\"charset\":\"binary\",\"filesize\":152849,\"width\":480,\"height\":480,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"56d7113af503c0e46ee46735755d5afd\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/ma.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ma.png\",\"thumbnails\":[{\"url\":\"http:\\/\\/api.ouiedire.localhost\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"relative_url\":\"\\/thumbnail\\/_\\/200\\/200\\/crop\\/good\\/ma.png\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}', NULL, NULL, NULL),
(375, 376, 'curator', '8', '{\"id\":\"8\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:47:52\",\"name\":\"fzefezf\",\"email\":null}', '{\"name\":\"fzefezf\"}', NULL, NULL, NULL),
(376, 377, 'curator', '9', '{\"id\":\"9\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:47:52\",\"name\":\"fezgregerg\",\"email\":null}', '{\"name\":\"fezgregerg\"}', NULL, NULL, NULL),
(377, 378, 'directus_files', '10', '{\"id\":\"10\",\"storage\":\"local\",\"filename\":\"Who_are_Q-3.mp3\",\"title\":\"Who Are Q 3\",\"type\":\"audio\\/mp3\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2019-03-10 03:47:26\",\"charset\":\"binary\",\"filesize\":\"2019704\",\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"thumbnails\":null,\"embed\":null}}', '{\"storage\":\"local\",\"filename\":\"Who_are_Q-3.mp3\",\"title\":\"Who Are Q 3\",\"type\":\"audio\\/mp3\",\"uploaded_by\":1,\"uploaded_on\":\"2019-03-10T03:47:26+00:00\",\"charset\":\"binary\",\"filesize\":2019704,\"width\":null,\"height\":null,\"duration\":null,\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"39614df0be99fdce8c181cf5bde495f2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/api.ouiedire.localhost\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"url\":\"\\/uploads\\/_\\/originals\\/Who_are_Q-3.mp3\",\"thumbnails\":null,\"embed\":null}}', NULL, NULL, NULL),
(378, 379, 'artist', '2', '{\"id\":\"2\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"name\":\"fzgrg\"}', '{\"name\":\"fzgrg\"}', NULL, NULL, NULL),
(379, 380, 'show', '5', '{\"id\":\"5\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:47:52\",\"title\":\"fezfezfzf\",\"reference\":\"efefe\",\"collection\":\"ailleurs\",\"release_date\":\"2019-03-06\",\"description\":\"<pre>fezez<\\/pre>\",\"cover\":\"9\"}', '{\"status\":\"draft\",\"collection\":\"ailleurs\",\"title\":\"fezfezfzf\",\"reference\":\"efefe\",\"release_date\":\"2019-03-06\",\"description\":\"<pre>fezez<\\/pre>\",\"cover\":9}', NULL, NULL, NULL),
(380, 381, 'show_directus_curator', '8', '{\"id\":\"8\",\"show_id\":\"5\",\"curator_id\":\"8\"}', '{\"curator_id\":8,\"show_id\":\"5\"}', 'show', NULL, 1),
(381, 382, 'show_directus_curator', '9', '{\"id\":\"9\",\"show_id\":\"5\",\"curator_id\":\"9\"}', '{\"curator_id\":9,\"show_id\":\"5\"}', 'show', NULL, 1),
(382, 383, 'show_sections', '5', '{\"id\":\"5\",\"sort\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-10 03:47:52\",\"file\":\"10\",\"title\":\"feze\"}', '{\"sort\":1,\"file\":10,\"title\":\"feze\"}', 'show', NULL, 1),
(383, 384, 'track_artist', '2', '{\"id\":\"2\",\"track_id\":\"5\",\"artist_id\":\"2\"}', '{\"artist_id\":2,\"track_id\":\"5\"}', 'show', NULL, 1),
(384, 385, 'track', '5', '{\"id\":\"5\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"title\":\"fezfze\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"sort_order\":1,\"title\":\"fezfze\"}', 'show', NULL, 1),
(385, 386, 'directus_fields', '202', '{\"id\":\"202\",\"collection\":\"track\",\"field\":\"sort_order\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":\"La place du morceau dans la playlist\",\"translation\":null}', '{\"sort\":4,\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"readonly\":false,\"required\":true,\"note\":\"La place du morceau dans la playlist\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(386, 387, 'directus_fields', '173', '{\"id\":\"173\",\"collection\":\"show_sections\",\"field\":\"sort\",\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":0,\"type\":\"sort\",\"interface\":\"sort\",\"options\":[],\"readonly\":false,\"required\":false,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(387, 388, 'directus_fields', '212', '{\"id\":\"212\",\"collection\":\"flyers\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(388, 389, 'directus_fields', '213', '{\"id\":\"213\",\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(389, 390, 'directus_fields', '214', '{\"id\":\"214\",\"collection\":\"flyers\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(390, 391, 'directus_fields', '215', '{\"id\":\"215\",\"collection\":\"flyers\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(391, 392, 'directus_fields', '216', '{\"id\":\"216\",\"collection\":\"flyers\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(392, 393, 'directus_fields', '217', '{\"id\":\"217\",\"collection\":\"flyers\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(393, 394, 'directus_fields', '218', '{\"id\":\"218\",\"collection\":\"flyers\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le fichier image du flyer\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(394, 395, 'directus_fields', '219', '{\"id\":\"219\",\"collection\":\"flyers\",\"field\":\"period_start\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(395, 396, 'directus_fields', '220', '{\"id\":\"220\",\"collection\":\"flyers\",\"field\":\"period_stop\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(396, 397, 'directus_fields', '235', '{\"id\":\"235\",\"collection\":\"flyers\",\"field\":\"illustrators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"Les illustrateurs \\u00e0 cr\\u00e9diter\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(397, 398, 'directus_fields', '239', '{\"id\":\"239\",\"collection\":\"flyers\",\"field\":\"shows\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"Les \\u00e9missions pr\\u00e9sent\\u00e9es par ce flyer\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(398, 399, 'directus_fields', '212', '{\"id\":\"212\",\"collection\":\"flyers\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(399, 400, 'directus_fields', '213', '{\"id\":\"213\",\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(400, 401, 'directus_fields', '214', '{\"id\":\"214\",\"collection\":\"flyers\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(401, 402, 'directus_fields', '215', '{\"id\":\"215\",\"collection\":\"flyers\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(402, 403, 'directus_fields', '216', '{\"id\":\"216\",\"collection\":\"flyers\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(403, 404, 'directus_fields', '217', '{\"id\":\"217\",\"collection\":\"flyers\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(404, 405, 'directus_fields', '218', '{\"id\":\"218\",\"collection\":\"flyers\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le fichier image du flyer\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(405, 406, 'directus_fields', '235', '{\"id\":\"235\",\"collection\":\"flyers\",\"field\":\"illustrators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Les illustrateurs \\u00e0 cr\\u00e9diter\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(406, 407, 'directus_fields', '219', '{\"id\":\"219\",\"collection\":\"flyers\",\"field\":\"period_start\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(407, 408, 'directus_fields', '220', '{\"id\":\"220\",\"collection\":\"flyers\",\"field\":\"period_stop\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(408, 409, 'directus_fields', '239', '{\"id\":\"239\",\"collection\":\"flyers\",\"field\":\"shows\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"Les \\u00e9missions pr\\u00e9sent\\u00e9es par ce flyer\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(409, 410, 'directus_fields', '212', '{\"id\":\"212\",\"collection\":\"flyers\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(410, 411, 'directus_fields', '213', '{\"id\":\"213\",\"collection\":\"flyers\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(411, 412, 'directus_fields', '214', '{\"id\":\"214\",\"collection\":\"flyers\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(412, 413, 'directus_fields', '215', '{\"id\":\"215\",\"collection\":\"flyers\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(413, 414, 'directus_fields', '216', '{\"id\":\"216\",\"collection\":\"flyers\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(414, 415, 'directus_fields', '217', '{\"id\":\"217\",\"collection\":\"flyers\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(415, 416, 'directus_fields', '218', '{\"id\":\"218\",\"collection\":\"flyers\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le fichier image du flyer\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(416, 417, 'directus_fields', '235', '{\"id\":\"235\",\"collection\":\"flyers\",\"field\":\"illustrators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Les illustrateurs \\u00e0 cr\\u00e9diter\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(417, 418, 'directus_fields', '239', '{\"id\":\"239\",\"collection\":\"flyers\",\"field\":\"shows\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"collection,reference,title\",\"template\":\"{{ collection }} {{ reference }} - {{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"Les \\u00e9missions pr\\u00e9sent\\u00e9es par ce flyer\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(418, 419, 'directus_fields', '219', '{\"id\":\"219\",\"collection\":\"flyers\",\"field\":\"period_start\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(419, 420, 'directus_fields', '220', '{\"id\":\"220\",\"collection\":\"flyers\",\"field\":\"period_stop\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"Date de d\\u00e9but de la programmation couverte par le flyer\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(420, 422, 'broadcaster', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 04:31:04\",\"nom\":\"grerge\",\"frequency\":\"gergre\",\"url\":\"gregre\",\"description\":\"<p>gergre<\\/p>\",\"since\":null}', '{\"status\":\"published\",\"nom\":\"grerge\",\"frequency\":\"gergre\",\"url\":\"gregre\",\"description\":\"<p>gergre<\\/p>\"}', NULL, NULL, NULL),
(421, 423, 'directus_collections', 'artist', '{\"collection\":\"artist\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"accessibility\",\"note\":null,\"translation\":null}', '{\"icon\":\"accessibility\"}', NULL, NULL, NULL),
(422, 424, 'directus_collections', 'broadcaster', '{\"collection\":\"broadcaster\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"settings_input_antenna\",\"note\":null,\"translation\":null}', '{\"icon\":\"settings_input_antenna\"}', NULL, NULL, NULL),
(423, 425, 'directus_collections', 'curator', '{\"collection\":\"curator\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"accessibility_new\",\"note\":null,\"translation\":null}', '{\"icon\":\"accessibility_new\"}', NULL, NULL, NULL),
(424, 426, 'directus_collections', 'flyers', '{\"collection\":\"flyers\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"collections\",\"note\":null,\"translation\":null}', '{\"icon\":\"collections\"}', NULL, NULL, NULL),
(425, 427, 'directus_collections', 'illustrator', '{\"collection\":\"illustrator\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"accessibility\",\"note\":null,\"translation\":null}', '{\"icon\":\"accessibility\"}', NULL, NULL, NULL),
(426, 428, 'directus_collections', 'show', '{\"collection\":\"show\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"music_video\",\"note\":null,\"translation\":null}', '{\"icon\":\"music_video\"}', NULL, NULL, NULL),
(427, 429, 'directus_collections', 'track', '{\"collection\":\"track\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"library_music\",\"note\":null,\"translation\":null}', '{\"icon\":\"library_music\"}', NULL, NULL, NULL),
(428, 430, 'directus_collections', 'track', '{\"collection\":\"track\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"music_video\",\"note\":null,\"translation\":null}', '{\"icon\":\"music_video\"}', NULL, NULL, NULL),
(429, 431, 'directus_collections', 'show', '{\"collection\":\"show\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"library_music\",\"note\":null,\"translation\":null}', '{\"icon\":\"library_music\"}', NULL, NULL, NULL),
(430, 432, 'directus_fields', '240', '{\"id\":\"240\",\"collection\":\"content\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(431, 433, 'directus_fields', '241', '{\"id\":\"241\",\"collection\":\"content\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(432, 434, 'directus_fields', '242', '{\"id\":\"242\",\"collection\":\"content\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(433, 435, 'directus_fields', '243', '{\"id\":\"243\",\"collection\":\"content\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(434, 436, 'directus_fields', '244', '{\"id\":\"244\",\"collection\":\"content\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(435, 437, 'directus_collections', 'content', '{\"collection\":\"content\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(436, 438, 'directus_fields', '245', '{\"id\":\"245\",\"collection\":\"content\",\"field\":\"about\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"about\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(437, 439, 'directus_collections', 'content', '{\"collection\":\"content\",\"managed\":true,\"hidden\":false,\"single\":true,\"icon\":\"font_download\",\"note\":null,\"translation\":null}', '{\"single\":true,\"icon\":\"font_download\"}', NULL, NULL, NULL),
(438, 440, 'directus_fields', '246', '{\"id\":\"246\",\"collection\":\"content\",\"field\":\"credits\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"content\",\"field\":\"credits\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\",\"unorderedlist\"]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(439, 444, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11 13:49:01\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11T13:49:01+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(440, 445, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":0,\"position_end\":0,\"sort_order\":1}', NULL, NULL, NULL),
(441, 446, 'track_artist', '1', '{\"id\":\"1\",\"track_id\":\"4\",\"artist_id\":\"1\"}', '{\"track_id\":4,\"artist_id\":1}', 'track', '4', 1),
(442, 447, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11 13:49:01\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11T13:49:01+00:00\",\"last_page\":\"\\/collections\\/curator\",\"external_id\":null}', NULL, NULL, NULL),
(443, 448, 'artist', '1', '{\"id\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', NULL, NULL, NULL),
(444, 449, 'artist', '2', '{\"id\":\"2\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"name\":\"fzgrg\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:47:52\",\"name\":\"fzgrg\"}', NULL, NULL, NULL),
(445, 450, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"position_start\":\"0\",\"position_end\":\"0\",\"sort_order\":\"1\"}', '[]', NULL, NULL, NULL),
(446, 451, 'track_artist', '1', '{\"id\":\"1\",\"track_id\":\"4\",\"artist_id\":\"1\"}', '{\"track_id\":4,\"artist_id\":1}', 'track', '4', 1),
(447, 452, 'track_artist', '3', '{\"id\":\"3\",\"track_id\":\"4\",\"artist_id\":\"2\"}', '{\"artist_id\":2,\"track_id\":\"4\"}', 'track', '4', 1),
(448, 453, 'directus_fields', '247', '{\"id\":\"247\",\"collection\":\"track\",\"field\":\"timecode\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le timecode correspondant au d\\u00e9but du morceau dans l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"track\",\"field\":\"timecode\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le timecode correspondant au d\\u00e9but du morceau dans l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(449, 454, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11 13:51:31\",\"last_page\":\"\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11T13:51:31+00:00\",\"last_page\":\"\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(450, 455, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"sort_order\":\"1\",\"timecode\":null}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"sort_order\":1,\"timecode\":null}', NULL, NULL, NULL),
(451, 456, 'track_artist', '1', '{\"id\":\"1\",\"track_id\":\"4\",\"artist_id\":\"1\"}', '{\"track_id\":4,\"artist_id\":1}', 'track', '4', 1),
(452, 457, 'track_artist', '3', '{\"id\":\"3\",\"track_id\":\"4\",\"artist_id\":\"2\"}', '{\"track_id\":4,\"artist_id\":2}', 'track', '4', 1),
(453, 458, 'directus_users', '1', '{\"id\":\"1\",\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11 13:51:31\",\"last_page\":\"\\/collections\\/track\",\"external_id\":null}', '{\"status\":\"active\",\"first_name\":\"Admin\",\"last_name\":\"User\",\"email\":\"admin@ouiedire.localhost\",\"token\":\"token\",\"timezone\":\"America\\/New_York\",\"locale\":\"en-US\",\"locale_options\":null,\"avatar\":null,\"company\":null,\"title\":null,\"email_notifications\":true,\"last_access_on\":\"2019-03-11T13:51:31+00:00\",\"last_page\":\"\\/collections\\/track\",\"external_id\":null}', NULL, NULL, NULL),
(454, 459, 'artist', '1', '{\"id\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', NULL, NULL, NULL),
(455, 460, 'track', '4', '{\"id\":\"4\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"title\":\"dzadaz\",\"sort_order\":\"1\",\"timecode\":null}', '[]', NULL, NULL, NULL),
(456, 461, 'track_artist', '1', '{\"id\":\"1\",\"track_id\":\"4\",\"artist_id\":\"1\"}', '{\"track_id\":4,\"artist_id\":1}', 'track', '4', 1),
(457, 462, 'directus_relations', '24', '{\"id\":\"24\",\"collection_many\":\"show_track\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"test_tracks_many\",\"junction_field\":\"track_id\"}', '{\"collection_many\":\"show_track\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"test_tracks_many\",\"junction_field\":\"track_id\"}', NULL, NULL, NULL),
(458, 463, 'directus_fields', '248', '{\"id\":\"248\",\"collection\":\"show\",\"field\":\"test_tracks_many\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"fields\":\"title\",\"template\":\"{{ track.title }}\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show\",\"field\":\"test_tracks_many\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"fields\":\"title\",\"template\":\"{{ track.title }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(459, 464, 'directus_fields', '249', '{\"id\":\"249\",\"collection\":\"show_track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_track\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null}', NULL, NULL, NULL),
(460, 465, 'directus_relations', '25', '{\"id\":\"25\",\"collection_many\":\"show_track\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', '{\"collection_many\":\"show_track\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', NULL, NULL, NULL),
(461, 466, 'directus_fields', '250', '{\"id\":\"250\",\"collection\":\"show_track\",\"field\":\"show_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_track\",\"field\":\"show_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(462, 467, 'directus_fields', '251', '{\"id\":\"251\",\"collection\":\"show_track\",\"field\":\"track_id\",\"type\":\"integer\",\"interface\":null,\"options\":null,\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_track\",\"field\":\"track_id\",\"type\":\"integer\",\"interface\":null,\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":null,\"readonly\":false}', NULL, NULL, NULL),
(463, 468, 'directus_collections', 'show_track', '{\"collection\":\"show_track\",\"managed\":true,\"hidden\":true,\"single\":false,\"icon\":null,\"note\":\"Junction Collection\",\"translation\":null}', '{\"managed\":true,\"hidden\":true,\"note\":\"Junction Collection\"}', NULL, NULL, NULL),
(464, 469, 'directus_fields', '252', '{\"id\":\"252\",\"collection\":\"show_track\",\"field\":\"timecode\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"rows\":12,\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"show_track\",\"field\":\"timecode\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"rows\":12,\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(465, 470, 'directus_fields', '253', '{\"id\":\"253\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"fields\":\"sort_order, timecode, title\",\"template\":\"{{ track.sort_order }} - {{ track.name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux composant l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"required\":true,\"sort\":null,\"note\":\"Les morceaux composant l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"fields\":\"sort_order, timecode, title\",\"template\":\"{{ track.sort_order }} - {{ track.name }}\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(466, 471, 'directus_relations', '26', '{\"id\":\"26\",\"collection_many\":\"show_track\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"tracks\",\"junction_field\":\"track_id\"}', '{\"collection_many\":\"show_track\",\"field_many\":\"show_id\",\"collection_one\":\"show\",\"field_one\":\"tracks\",\"junction_field\":\"track_id\"}', NULL, NULL, NULL),
(467, 472, 'directus_relations', '27', '{\"id\":\"27\",\"collection_many\":\"show_track\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', '{\"collection_many\":\"show_track\",\"field_many\":\"track_id\",\"collection_one\":\"track\",\"field_one\":\"show\",\"junction_field\":\"show_id\"}', NULL, NULL, NULL),
(468, 473, 'directus_fields', '252', '{\"id\":\"252\",\"collection\":\"show_track\",\"field\":\"timecode\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"rows\":12,\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":null,\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"rows\":12,\"placeholder\":\"[hh:mm:ss]\",\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"required\":true,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(469, 474, 'artist', '1', '{\"id\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:39:54\",\"name\":\"dazdazdaz\"}', NULL, NULL, NULL),
(470, 475, 'artist', '2', '{\"id\":\"2\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"name\":\"fzgrg\"}', '{\"created_by\":1,\"created_on\":\"2019-03-10 03:47:52\",\"name\":\"fzgrg\"}', NULL, NULL, NULL),
(471, 476, 'track', '6', '{\"id\":\"6\",\"created_by\":\"1\",\"created_on\":\"2019-03-11 14:07:05\",\"title\":\"fzefzefez\",\"sort_order\":\"1\",\"timecode\":\"[00:00:00]\"}', '{\"title\":\"fzefzefez\",\"timecode\":\"[00:00:00]\",\"sort_order\":1}', NULL, NULL, NULL),
(472, 477, 'track_artist', '4', '{\"id\":\"4\",\"track_id\":\"6\",\"artist_id\":\"1\"}', '{\"artist_id\":1,\"track_id\":\"6\"}', 'track', NULL, 1),
(473, 478, 'track_artist', '5', '{\"id\":\"5\",\"track_id\":\"6\",\"artist_id\":\"2\"}', '{\"artist_id\":2,\"track_id\":\"6\"}', 'track', NULL, 1),
(474, 479, 'show', '4', '{\"id\":\"4\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:39:54\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-11 14:07:05\",\"title\":\"FEFZEFEZ\",\"reference\":\"02\",\"collection\":\"ailleurs\",\"release_date\":\"2019-12-31\",\"description\":\"<p>fezfezf<\\/p>\",\"cover\":\"7\"}', '[]', NULL, NULL, NULL),
(475, 480, 'show_track', '1', '{\"id\":\"1\",\"show_id\":\"4\",\"track_id\":\"6\",\"timecode\":\"\"}', '{\"track_id\":6,\"show_id\":\"4\"}', 'show', '4', 1),
(476, 482, 'directus_fields', '254', '{\"id\":\"254\",\"collection\":\"artist\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Un lien vers le site de l\'artiste\",\"translation\":null}', '{\"collection\":\"artist\",\"field\":\"url\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":\"Un lien vers le site de l\'artiste\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":false,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(477, 484, 'directus_fields', '255', '{\"id\":\"255\",\"collection\":\"collection\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null}', NULL, NULL, NULL),
(478, 485, 'directus_fields', '256', '{\"id\":\"256\",\"collection\":\"collection\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}}}', NULL, NULL, NULL),
(479, 486, 'directus_fields', '257', '{\"id\":\"257\",\"collection\":\"collection\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(480, 487, 'directus_fields', '258', '{\"id\":\"258\",\"collection\":\"collection\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(481, 488, 'directus_fields', '259', '{\"id\":\"259\",\"collection\":\"collection\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true}', NULL, NULL, NULL),
(482, 489, 'directus_fields', '260', '{\"id\":\"260\",\"collection\":\"collection\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":null,\"readonly\":true}', NULL, NULL, NULL),
(483, 490, 'directus_collections', 'collection', '{\"collection\":\"collection\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}', '{\"managed\":true,\"hidden\":0}', NULL, NULL, NULL),
(484, 491, 'directus_fields', '261', '{\"id\":\"261\",\"collection\":\"collection\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom de la collection\",\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":\"Le nom de la collection\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(485, 492, 'directus_fields', '262', '{\"id\":\"262\",\"collection\":\"collection\",\"field\":\"slug\",\"type\":\"string\",\"interface\":\"slug\",\"options\":{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom de la collections dans les URL\",\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"slug\",\"type\":\"string\",\"interface\":\"slug\",\"required\":true,\"sort\":null,\"note\":\"Le nom de la collections dans les URL\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(486, 493, 'directus_fields', '263', '{\"id\":\"263\",\"collection\":\"collection\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Un texte d\\u00e9crivant la collection\",\"translation\":null}', '{\"collection\":\"collection\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"required\":false,\"sort\":null,\"note\":\"Un texte d\\u00e9crivant la collection\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"h3\",\"quote\"]},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(487, 494, 'directus_collections', 'collection', '{\"collection\":\"collection\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"shop_two\",\"note\":null,\"translation\":null}', '{\"icon\":\"shop_two\"}', NULL, NULL, NULL),
(488, 495, 'directus_collections', 'show', '{\"collection\":\"show\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":\"shop\",\"note\":null,\"translation\":null}', '{\"icon\":\"shop\"}', NULL, NULL, NULL),
(489, 496, 'directus_fields', '256', '{\"id\":\"256\",\"collection\":\"collection\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"simpleBadge\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":0,\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"simpleBadge\":false},\"readonly\":false,\"required\":true,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(490, 497, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"string\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"string\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(491, 498, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"status\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"status\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(492, 499, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(493, 500, 'directus_relations', '28', '{\"id\":\"28\",\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":null,\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":null,\"field_one\":null}', NULL, NULL, NULL),
(494, 501, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"template\":\"{{ name }}\"},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(495, 502, 'directus_relations', '29', '{\"id\":\"29\",\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"collection\",\"junction_field\":null}', '{\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"collection\"}', NULL, NULL, NULL),
(496, 503, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"template\":\"{{ name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Choose an option...\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"template\":\"{{ name }}\"},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(497, 504, 'directus_relations', '29', '{\"id\":\"29\",\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":\"show\",\"field_one\":\"collection\",\"junction_field\":null}', '{\"collection_many\":\"collection\",\"field_many\":\"id\",\"collection_one\":\"show\"}', NULL, NULL, NULL),
(498, 505, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(499, 506, 'directus_relations', '30', '{\"id\":\"30\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"show\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"show\"}', NULL, NULL, NULL),
(500, 507, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(501, 508, 'directus_relations', '30', '{\"id\":\"30\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"show\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"show\"}', NULL, NULL, NULL),
(502, 509, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20,\"template\":\"{{ name }}\",\"icon\":\"shop_two\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20,\"template\":\"{{ name }}\",\"icon\":\"shop_two\"},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(503, 512, 'collection', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 10:32:46\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 10:32:46\",\"name\":\"Bagage\",\"slug\":\"bagage\",\"description\":null}', '{\"status\":\"published\",\"name\":\"Bagage\",\"slug\":\"bagage\"}', NULL, NULL, NULL),
(504, 513, 'collection', '2', '{\"id\":\"2\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 10:32:56\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 10:32:56\",\"name\":\"Ou\\u00efedire\",\"slug\":\"ouiedire\",\"description\":null}', '{\"status\":\"draft\",\"name\":\"Ou\\u00efedire\",\"slug\":\"ouiedire\"}', NULL, NULL, NULL),
(505, 514, 'collection', '2', '{\"id\":\"2\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 10:32:56\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 10:33:04\",\"name\":\"Ou\\u00efedire\",\"slug\":\"ouiedire\",\"description\":null}', '{\"status\":\"published\"}', NULL, NULL, NULL),
(506, 515, 'collection', '3', '{\"id\":\"3\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 10:33:30\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 10:33:30\",\"name\":\"Ailleurs\",\"slug\":\"ailleurs\",\"description\":null}', '{\"status\":\"draft\",\"name\":\"Ailleurs\",\"slug\":\"ailleurs\"}', NULL, NULL, NULL),
(507, 516, 'collection', '3', '{\"id\":\"3\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 10:33:30\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 10:33:35\",\"name\":\"Ailleurs\",\"slug\":\"ailleurs\",\"description\":null}', '{\"status\":\"published\"}', NULL, NULL, NULL),
(508, 517, 'directus_relations', '30', '{\"id\":\"30\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\"}', NULL, NULL, NULL),
(509, 518, 'directus_fields', '163', '{\"id\":\"163\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20,\"template\":\"{{ name }}\",\"icon\":\"shop_two\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":8,\"type\":\"o2m\",\"interface\":\"many-to-one\",\"options\":{\"choices\":{\"ailleurs\":\"Ailleurs\",\"bagage\":\"Bagage\",\"ouiedire\":\"Ou\\u00efedire\"},\"placeholder\":\"Select one\",\"formatting\":true,\"simpleBadge\":true,\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}},\"fields\":\"name\",\"threshold\":20,\"template\":\"{{ name }}\",\"icon\":\"shop_two\"},\"readonly\":false,\"required\":true,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null}', NULL, NULL, NULL),
(510, 519, 'directus_fields', '264', '{\"id\":\"264\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"m2o\",\"interface\":\"many-to-one\",\"options\":{\"template\":\"{{ name }}\",\"placeholder\":\"Select one\",\"threshold\":20},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"collection\":\"show\",\"field\":\"collection\",\"type\":\"m2o\",\"interface\":\"many-to-one\",\"required\":true,\"sort\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"template\":\"{{ name }}\",\"placeholder\":\"Select one\",\"threshold\":20},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(511, 520, 'directus_relations', '31', '{\"id\":\"31\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\"}', NULL, NULL, NULL),
(512, 521, 'directus_fields', '154', '{\"id\":\"154\",\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(513, 522, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(514, 523, 'directus_fields', '157', '{\"id\":\"157\",\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(515, 524, 'directus_fields', '158', '{\"id\":\"158\",\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(516, 525, 'directus_fields', '159', '{\"id\":\"159\",\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(517, 526, 'directus_fields', '160', '{\"id\":\"160\",\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(518, 527, 'directus_fields', '161', '{\"id\":\"161\",\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(519, 528, 'directus_fields', '162', '{\"id\":\"162\",\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(520, 529, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(521, 530, 'directus_fields', '165', '{\"id\":\"165\",\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"La description de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(522, 531, 'directus_fields', '264', '{\"id\":\"264\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"m2o\",\"interface\":\"many-to-one\",\"options\":{\"template\":\"{{ name }}\",\"placeholder\":\"Select one\",\"threshold\":20},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(523, 532, 'directus_fields', '167', '{\"id\":\"167\",\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\",\"fields\":\"name\",\"preferences\":{\"viewType\":\"tabular\",\"viewQuery\":{\"fields\":[\"id\",\"name\"]},\"filters\":[{\"field\":\"name\",\"operator\":\"contains\",\"value\":\"hi\"}]}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"12\",\"width\":\"4\",\"group\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":12}', NULL, NULL, NULL),
(524, 533, 'directus_fields', '166', '{\"id\":\"166\",\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"13\",\"width\":\"4\",\"group\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":13}', NULL, NULL, NULL),
(525, 534, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title\",\"template\":\"{{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"14\",\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":14}', NULL, NULL, NULL),
(526, 535, 'directus_fields', '253', '{\"id\":\"253\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"fields\":\"sort_order, timecode, title\",\"template\":\"{{ track.sort_order }} - {{ track.name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"15\",\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux composant l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":15}', NULL, NULL, NULL),
(527, 536, 'directus_fields', '154', '{\"id\":\"154\",\"collection\":\"show\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(528, 537, 'directus_fields', '155', '{\"id\":\"155\",\"collection\":\"show\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(529, 538, 'directus_fields', '157', '{\"id\":\"157\",\"collection\":\"show\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(530, 539, 'directus_fields', '158', '{\"id\":\"158\",\"collection\":\"show\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(531, 540, 'directus_fields', '159', '{\"id\":\"159\",\"collection\":\"show\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(532, 541, 'directus_fields', '160', '{\"id\":\"160\",\"collection\":\"show\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(533, 542, 'directus_fields', '161', '{\"id\":\"161\",\"collection\":\"show\",\"field\":\"title\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le titre de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(534, 543, 'directus_fields', '162', '{\"id\":\"162\",\"collection\":\"show\",\"field\":\"reference\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"La r\\u00e9f\\u00e9rence de l\'\\u00e9mission au sein de la collection\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(535, 544, 'directus_fields', '264', '{\"id\":\"264\",\"collection\":\"show\",\"field\":\"collection\",\"type\":\"m2o\",\"interface\":\"many-to-one\",\"options\":{\"template\":\"{{ name }}\",\"placeholder\":\"Select one\",\"threshold\":20},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"La collection dans laquelle s\'inscrit l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(536, 545, 'directus_fields', '164', '{\"id\":\"164\",\"collection\":\"show\",\"field\":\"release_date\",\"type\":\"date\",\"interface\":\"date\",\"options\":{\"localized\":true,\"showRelative\":true},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"10\",\"width\":\"4\",\"group\":null,\"note\":\"La date de premi\\u00e8re publication de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":10}', NULL, NULL, NULL),
(537, 546, 'directus_fields', '165', '{\"id\":\"165\",\"collection\":\"show\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"buttons\":[\"bold\",\"italic\",\"underline\",\"anchor\",\"h2\",\"quote\",\"subscript\",\"pre\",\"strikethrough\",\"unorderedlist\",\"orderedlist\",\"removeFormat\",\"superscript\",\"h1\",\"h3\",\"h4\",\"h5\",\"h6\"]},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"11\",\"width\":\"4\",\"group\":null,\"note\":\"La description de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":11}', NULL, NULL, NULL),
(538, 547, 'directus_fields', '167', '{\"id\":\"167\",\"collection\":\"show\",\"field\":\"curators\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"template\":\"{{ curator.name }}\",\"fields\":\"name\",\"preferences\":{\"viewType\":\"tabular\",\"viewQuery\":{\"fields\":[\"id\",\"name\"]},\"filters\":[{\"field\":\"name\",\"operator\":\"contains\",\"value\":\"hi\"}]}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"12\",\"width\":\"4\",\"group\":null,\"note\":\"Les curateurs de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":12}', NULL, NULL, NULL),
(539, 548, 'directus_fields', '166', '{\"id\":\"166\",\"collection\":\"show\",\"field\":\"cover\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[]},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"13\",\"width\":\"4\",\"group\":null,\"note\":\"L\'image de couverture de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":13}', NULL, NULL, NULL),
(540, 549, 'directus_fields', '180', '{\"id\":\"180\",\"collection\":\"show\",\"field\":\"sections\",\"type\":\"o2m\",\"interface\":\"one-to-many\",\"options\":{\"fields\":\"title\",\"template\":\"{{ title }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"14\",\"width\":\"4\",\"group\":null,\"note\":\"Les diff\\u00e9rentes sections de l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":14}', NULL, NULL, NULL),
(541, 550, 'directus_fields', '253', '{\"id\":\"253\",\"collection\":\"show\",\"field\":\"tracks\",\"type\":\"o2m\",\"interface\":\"many-to-many\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\",\"fields\":\"sort_order, timecode, title\",\"template\":\"{{ track.sort_order }} - {{ track.name }}\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"15\",\"width\":\"4\",\"group\":null,\"note\":\"Les morceaux composant l\'\\u00e9mission\",\"translation\":null}', '{\"sort\":15}', NULL, NULL, NULL),
(542, 551, 'directus_relations', '31', '{\"id\":\"31\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\"}', NULL, NULL, NULL),
(543, 552, 'directus_relations', '31', '{\"id\":\"31\",\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\",\"field_one\":null,\"junction_field\":null}', '{\"collection_many\":\"show\",\"field_many\":\"collection\",\"collection_one\":\"collection\"}', NULL, NULL, NULL),
(544, 553, 'curator', '6', '{\"id\":\"6\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:44:23\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 14:59:07\",\"name\":\"RAOUL\",\"email\":null}', '{\"name\":\"RAOUL\"}', NULL, NULL, NULL),
(545, 554, 'curator', '7', '{\"id\":\"7\",\"status\":\"draft\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:44:24\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 14:59:07\",\"name\":\"RAOUL\",\"email\":null}', '{\"name\":\"RAOUL\"}', NULL, NULL, NULL),
(546, 555, 'curator', '8', '{\"id\":\"8\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 14:59:07\",\"name\":\"RAOUL\",\"email\":null}', '{\"name\":\"RAOUL\"}', NULL, NULL, NULL),
(547, 556, 'curator', '9', '{\"id\":\"9\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-10 03:47:52\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 14:59:07\",\"name\":\"RAOUL\",\"email\":null}', '{\"name\":\"RAOUL\"}', NULL, NULL, NULL),
(548, 557, 'directus_fields', '265', '{\"id\":\"265\",\"collection\":\"curator\",\"field\":\"slug\",\"type\":\"string\",\"interface\":\"slug\",\"options\":{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur dans les URL du site\",\"translation\":null}', '{\"collection\":\"curator\",\"field\":\"slug\",\"type\":\"string\",\"interface\":\"slug\",\"required\":true,\"sort\":null,\"note\":\"Le nom du curateur dans les URL du site\",\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"},\"readonly\":false,\"validation\":null}', NULL, NULL, NULL),
(549, 558, 'directus_fields', '146', '{\"id\":\"146\",\"collection\":\"curator\",\"field\":\"id\",\"type\":\"integer\",\"interface\":\"primary-key\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"1\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":1}', NULL, NULL, NULL),
(550, 559, 'directus_fields', '147', '{\"id\":\"147\",\"collection\":\"curator\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"draft\":{\"name\":\"Draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-200\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false},\"deleted\":{\"name\":\"Deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false}}},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":true,\"sort\":\"2\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":2}', NULL, NULL, NULL),
(551, 560, 'directus_fields', '148', '{\"id\":\"148\",\"collection\":\"curator\",\"field\":\"created_by\",\"type\":\"user_created\",\"interface\":\"user-created\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"3\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":3}', NULL, NULL, NULL),
(552, 561, 'directus_fields', '149', '{\"id\":\"149\",\"collection\":\"curator\",\"field\":\"created_on\",\"type\":\"datetime_created\",\"interface\":\"datetime-created\",\"options\":null,\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"4\",\"width\":\"4\",\"group\":null,\"note\":null,\"translation\":null}', '{\"sort\":4}', NULL, NULL, NULL),
(553, 562, 'directus_fields', '150', '{\"id\":\"150\",\"collection\":\"curator\",\"field\":\"modified_by\",\"type\":\"user_updated\",\"interface\":\"user-updated\",\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"5\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":5}', NULL, NULL, NULL),
(554, 563, 'directus_fields', '151', '{\"id\":\"151\",\"collection\":\"curator\",\"field\":\"modified_on\",\"type\":\"datetime_updated\",\"interface\":\"datetime-updated\",\"options\":[],\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":true,\"hidden_detail\":true,\"hidden_browse\":true,\"sort\":\"6\",\"width\":\"4\",\"group\":null,\"note\":\"\",\"translation\":null}', '{\"sort\":6}', NULL, NULL, NULL),
(555, 564, 'directus_fields', '152', '{\"id\":\"152\",\"collection\":\"curator\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"7\",\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur\",\"translation\":null}', '{\"sort\":7}', NULL, NULL, NULL),
(556, 565, 'directus_fields', '265', '{\"id\":\"265\",\"collection\":\"curator\",\"field\":\"slug\",\"type\":\"string\",\"interface\":\"slug\",\"options\":{\"placeholder\":\"A unique label...\",\"forceLowercase\":true,\"mirroredField\":\"name\"},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"8\",\"width\":\"4\",\"group\":null,\"note\":\"Le nom du curateur dans les URL du site\",\"translation\":null}', '{\"sort\":8}', NULL, NULL, NULL),
(557, 566, 'directus_fields', '153', '{\"id\":\"153\",\"collection\":\"curator\",\"field\":\"email\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"width\":\"auto\"},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"9\",\"width\":\"4\",\"group\":null,\"note\":\"Une adresse email, pour communication interne\",\"translation\":null}', '{\"sort\":9}', NULL, NULL, NULL),
(558, 567, 'directus_settings', '5', '{\"id\":\"5\",\"key\":\"color\",\"value\":\"yellow-400\"}', '{\"value\":\"yellow-400\"}', NULL, NULL, NULL),
(559, 568, 'directus_settings', '5', '{\"id\":\"5\",\"key\":\"color\",\"value\":\"light-blue-500\"}', '{\"value\":\"light-blue-500\"}', NULL, NULL, NULL),
(560, 573, 'collection', '1', '{\"id\":\"1\",\"status\":\"published\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 16:29:20\",\"modified_by\":\"1\",\"modified_on\":\"2019-03-12 16:29:20\",\"name\":\"Ailleurs\",\"slug\":\"ailleurs\",\"description\":null}', '{\"status\":\"published\",\"name\":\"Ailleurs\",\"slug\":\"ailleurs\"}', NULL, NULL, NULL),
(561, 575, 'artist', '1', '{\"id\":\"1\",\"created_by\":\"1\",\"created_on\":\"2019-03-12 16:30:18\",\"name\":\"Goto80\",\"url\":null}', '{\"name\":\"Goto80\"}', NULL, NULL, NULL);
DROP TABLE IF EXISTS `directus_roles`;
CREATE TABLE `directus_roles` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`description` varchar(500) DEFAULT NULL,
`ip_whitelist` text,
`nav_blacklist` text,
`external_id` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_group_name` (`name`),
UNIQUE KEY `idx_roles_external_id` (`external_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_roles` (`id`, `name`, `description`, `ip_whitelist`, `nav_blacklist`, `external_id`) VALUES
(1, 'Administrator', 'Admins have access to all managed data within the system by default', NULL, NULL, NULL),
(2, 'Public', 'This sets the data that is publicly available through the API without a token', NULL, NULL, NULL);
DROP TABLE IF EXISTS `directus_settings`;
CREATE TABLE `directus_settings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(64) NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_settings` (`id`, `key`, `value`) VALUES
(1, 'project_name', 'Directus'),
(2, 'project_url', ''),
(3, 'app_url', ''),
(4, 'logo', ''),
(5, 'color', 'light-blue-500'),
(6, 'default_limit', '200'),
(7, 'sort_null_last', '1'),
(8, 'auto_sign_out', '60'),
(9, 'youtube_api_key', ''),
(10, 'trusted_proxies', ''),
(11, 'thumbnail_dimensions', '200x200'),
(12, 'thumbnail_quality_tags', '{\"poor\": 25, \"good\": 50, \"better\": 75, \"best\": 100}'),
(13, 'thumbnail_actions', '{\"contain\":{\"options\":{\"resizeCanvas\":false,\"position\":\"center\",\"resizeRelative\":false,\"canvasBackground\":\"ccc\"}},\"crop\":{\"options\":{\"position\":\"center\"}}}'),
(14, 'thumbnail_cache_ttl', '86400'),
(15, 'thumbnail_not_found_location', '');
DROP TABLE IF EXISTS `directus_users`;
CREATE TABLE `directus_users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(16) NOT NULL DEFAULT 'draft',
`first_name` varchar(50) DEFAULT NULL,
`last_name` varchar(50) DEFAULT NULL,
`email` varchar(128) NOT NULL,
`password` varchar(255) DEFAULT NULL,
`token` varchar(255) DEFAULT NULL,
`timezone` varchar(32) NOT NULL DEFAULT 'UTC',
`locale` varchar(8) DEFAULT 'en-US',
`locale_options` text,
`avatar` int(11) unsigned DEFAULT NULL,
`company` varchar(191) DEFAULT NULL,
`title` varchar(191) DEFAULT NULL,
`email_notifications` int(1) NOT NULL DEFAULT '1',
`last_access_on` datetime DEFAULT NULL,
`last_page` varchar(192) DEFAULT NULL,
`external_id` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_users_email` (`email`),
UNIQUE KEY `idx_users_token` (`token`),
UNIQUE KEY `idx_users_external_id` (`external_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_users` (`id`, `status`, `first_name`, `last_name`, `email`, `password`, `token`, `timezone`, `locale`, `locale_options`, `avatar`, `company`, `title`, `email_notifications`, `last_access_on`, `last_page`, `external_id`) VALUES
(1, 'active', 'Admin', 'User', 'admin@ouiedire.localhost', '$2y$10$g49GoT7a7atzD8DScvSioORpK2m7a99FFb9mFMf9OB9v2ISQAg0TG', 'token', 'America/New_York', 'en-US', NULL, NULL, NULL, NULL, 1, '2019-03-12 16:46:28', '/settings', NULL);
DROP TABLE IF EXISTS `directus_user_roles`;
CREATE TABLE `directus_user_roles` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user` int(11) unsigned DEFAULT NULL,
`role` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_user_role` (`user`,`role`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `directus_user_roles` (`id`, `user`, `role`) VALUES
(1, 1, 1);
DROP TABLE IF EXISTS `flyers`;
CREATE TABLE `flyers` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'draft',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`image` int(10) unsigned DEFAULT NULL COMMENT 'Le fichier image du flyer',
`period_start` date DEFAULT NULL COMMENT 'Date de début de la programmation couverte par le flyer',
`period_stop` date DEFAULT NULL COMMENT 'Date de début de la programmation couverte par le flyer',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `flyers_illustrator`;
CREATE TABLE `flyers_illustrator` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`flyers_id` int(10) unsigned DEFAULT NULL,
`illustrator_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `illustrator`;
CREATE TABLE `illustrator` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'published',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`name` varchar(200) DEFAULT NULL COMMENT 'La nom de l''artiste',
`url` varchar(200) DEFAULT NULL COMMENT 'Lien vers le site de l''artiste',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `show`;
CREATE TABLE `show` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(20) DEFAULT 'draft',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`title` varchar(200) DEFAULT NULL COMMENT 'Le titre de l''émission',
`reference` varchar(200) DEFAULT NULL COMMENT 'La référence de l''émission au sein de la collection',
`release_date` date DEFAULT NULL COMMENT 'La date de première publication de l''émission',
`description` text COMMENT 'La description de l''émission',
`cover` int(10) unsigned DEFAULT NULL COMMENT 'L''image de couverture de l''émission',
`collection` int(10) unsigned DEFAULT NULL COMMENT 'La collection dans laquelle s''inscrit l''émission',
PRIMARY KEY (`id`),
UNIQUE KEY `reference` (`reference`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `show_directus_curator`;
CREATE TABLE `show_directus_curator` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`show_id` int(10) unsigned DEFAULT NULL,
`curator_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `show_sections`;
CREATE TABLE `show_sections` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`sort` int(10) unsigned DEFAULT '1',
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`modified_by` int(10) unsigned DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`file` int(10) unsigned DEFAULT NULL COMMENT 'Le fichier audio de la section au format FLAC',
`title` varchar(200) DEFAULT NULL COMMENT 'Le titre de la section',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `show_track`;
CREATE TABLE `show_track` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`show_id` int(10) unsigned DEFAULT NULL,
`track_id` int(10) unsigned DEFAULT NULL,
`timecode` varchar(10) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `track`;
CREATE TABLE `track` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`created_by` int(10) unsigned DEFAULT NULL,
`created_on` datetime DEFAULT NULL,
`title` varchar(200) DEFAULT NULL COMMENT 'Le titre du morceau',
`sort_order` int(10) unsigned DEFAULT '1' COMMENT 'La place du morceau dans la playlist',
`timecode` varchar(200) DEFAULT NULL COMMENT 'Le timecode correspondant au début du morceau dans l''émission',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE IF EXISTS `track_artist`;
CREATE TABLE `track_artist` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`track_id` int(10) unsigned DEFAULT NULL,
`artist_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- 2019-03-12 16:46:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment