-
Notifications
You must be signed in to change notification settings - Fork 0
/
directussqldump.sql
544 lines (477 loc) · 222 KB
/
directussqldump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
-- MySQL dump 10.13 Distrib 5.7.31, for Linux (x86_64)
--
-- Host: localhost Database: directus
-- ------------------------------------------------------
-- Server version 5.7.31
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `directus_activity`
--
DROP TABLE IF EXISTS `directus_activity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 CHARACTER SET utf8mb4,
`comment_deleted_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_activity`
--
LOCK TABLES `directus_activity` WRITE;
/*!40000 ALTER TABLE `directus_activity` DISABLE KEYS */;
INSERT INTO `directus_activity` VALUES (1,'authenticate',1,'2020-10-04 21:34:42','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_users','1',NULL,NULL,NULL),(2,'create',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(3,'create',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','172',NULL,NULL,NULL),(4,'create',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','173',NULL,NULL,NULL),(5,'create',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(6,'create',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(7,'update',1,'2020-10-04 21:52:40','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_collections','recipes',NULL,NULL,NULL),(8,'create',1,'2020-10-04 23:29:58','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(9,'create',1,'2020-10-04 23:30:21','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','177',NULL,NULL,NULL),(10,'create',1,'2020-10-04 23:32:02','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(11,'update',1,'2020-10-04 23:32:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(12,'update',1,'2020-10-04 23:32:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(13,'update',1,'2020-10-04 23:32:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(14,'update',1,'2020-10-04 23:32:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(15,'update',1,'2020-10-04 23:32:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(16,'update',1,'2020-10-04 23:32:06','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(17,'update',1,'2020-10-04 23:32:06','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(18,'update',1,'2020-10-04 23:32:06','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(19,'update',1,'2020-10-04 23:32:06','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(20,'update',1,'2020-10-04 23:32:06','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(21,'create',1,'2020-10-04 23:32:49','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(22,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(23,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(24,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(25,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(26,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(27,'update',1,'2020-10-04 23:32:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(28,'create',1,'2020-10-04 23:33:05','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','180',NULL,NULL,NULL),(29,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(30,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(31,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(32,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(33,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','180',NULL,NULL,NULL),(34,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(35,'update',1,'2020-10-04 23:33:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(36,'create',1,'2020-10-04 23:37:53','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','181',NULL,NULL,NULL),(37,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(38,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(39,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(40,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(41,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','181',NULL,NULL,NULL),(42,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','180',NULL,NULL,NULL),(43,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(44,'update',1,'2020-10-04 23:38:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(45,'update',1,'2020-10-04 23:44:23','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(46,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','171',NULL,NULL,NULL),(47,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','176',NULL,NULL,NULL),(48,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','178',NULL,NULL,NULL),(49,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(50,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','180',NULL,NULL,NULL),(51,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','181',NULL,NULL,NULL),(52,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','174',NULL,NULL,NULL),(53,'update',1,'2020-10-04 23:44:32','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','175',NULL,NULL,NULL),(54,'update',1,'2020-10-04 23:44:39','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','180',NULL,NULL,NULL),(55,'create',1,'2020-10-04 23:47:17','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(56,'create',1,'2020-10-04 23:48:13','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','2',NULL,NULL,NULL),(57,'create',1,'2020-10-04 23:49:08','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','3',NULL,NULL,NULL),(58,'create',1,'2020-10-05 00:25:37','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','182',NULL,NULL,NULL),(59,'upload',1,'2020-10-05 01:02:33','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','1',NULL,NULL,NULL),(60,'update',1,'2020-10-05 01:02:37','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(61,'upload',1,'2020-10-05 01:02:52','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','2',NULL,NULL,NULL),(62,'update',1,'2020-10-05 01:02:54','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','2',NULL,NULL,NULL),(63,'upload',1,'2020-10-05 01:03:07','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','3',NULL,NULL,NULL),(64,'update',1,'2020-10-05 01:03:11','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','3',NULL,NULL,NULL),(65,'create',1,'2020-10-05 01:15:15','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_permissions','1',NULL,NULL,NULL),(66,'update',1,'2020-10-05 01:17:58','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_roles','2',NULL,NULL,NULL),(67,'update',1,'2020-10-05 01:17:58','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_permissions','1',NULL,NULL,NULL),(68,'update',1,'2020-10-05 01:25:17','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_settings','22',NULL,NULL,NULL),(69,'update',1,'2020-10-05 01:25:54','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_settings','22',NULL,NULL,NULL),(70,'update',1,'2020-10-05 01:26:28','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_roles','2',NULL,NULL,NULL),(71,'update',1,'2020-10-05 01:27:24','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_roles','2',NULL,NULL,NULL),(72,'update',1,'2020-10-05 01:27:24','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_permissions','1',NULL,NULL,NULL),(73,'update',1,'2020-10-05 01:32:27','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_roles','1',NULL,NULL,NULL),(74,'update',1,'2020-10-05 05:10:55','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(75,'update',1,'2020-10-05 05:11:02','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','2',NULL,NULL,NULL),(76,'update',1,'2020-10-05 05:11:09','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','3',NULL,NULL,NULL),(77,'delete',1,'2020-10-05 05:11:18','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','3',NULL,NULL,NULL),(78,'delete',1,'2020-10-05 05:11:18','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','2',NULL,NULL,NULL),(79,'delete',1,'2020-10-05 05:11:18','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','1',NULL,NULL,NULL),(80,'upload',1,'2020-10-05 05:11:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','4',NULL,NULL,NULL),(81,'upload',1,'2020-10-05 05:11:29','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','5',NULL,NULL,NULL),(82,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','6',NULL,NULL,NULL),(83,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','7',NULL,NULL,NULL),(84,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','9',NULL,NULL,NULL),(85,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','8',NULL,NULL,NULL),(86,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','10',NULL,NULL,NULL),(87,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','11',NULL,NULL,NULL),(88,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','12',NULL,NULL,NULL),(89,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','13',NULL,NULL,NULL),(90,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','14',NULL,NULL,NULL),(91,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','15',NULL,NULL,NULL),(92,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','16',NULL,NULL,NULL),(93,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','17',NULL,NULL,NULL),(94,'upload',1,'2020-10-05 05:11:30','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','18',NULL,NULL,NULL),(95,'delete',1,'2020-10-05 05:11:48','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','15',NULL,NULL,NULL),(96,'delete',1,'2020-10-05 05:12:01','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','12',NULL,NULL,NULL),(97,'delete',1,'2020-10-05 05:12:09','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_files','10',NULL,NULL,NULL),(98,'update',1,'2020-10-05 05:12:34','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(99,'update',1,'2020-10-05 05:12:47','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','2',NULL,NULL,NULL),(100,'update',1,'2020-10-05 05:12:58','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','3',NULL,NULL,NULL),(101,'update',1,'2020-10-05 05:14:33','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(102,'update',1,'2020-10-05 05:16:19','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','directus_fields','179',NULL,NULL,NULL),(103,'update',1,'2020-10-05 05:16:51','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL),(104,'update',1,'2020-10-05 05:18:14','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','recipes','1',NULL,NULL,NULL);
/*!40000 ALTER TABLE `directus_activity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_collection_presets`
--
DROP TABLE IF EXISTS `directus_collection_presets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_collection_presets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) CHARACTER SET utf8mb4 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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_collection_presets`
--
LOCK TABLES `directus_collection_presets` WRITE;
/*!40000 ALTER TABLE `directus_collection_presets` DISABLE KEYS */;
INSERT INTO `directus_collection_presets` VALUES (1,NULL,NULL,NULL,'directus_activity',NULL,NULL,'timeline','{\"timeline\":{\"sort\":\"-action_on\"}}','{\"timeline\":{\"date\":\"action_on\",\"title\":\"{{ action }} by {{ action_by.first_name }} {{ action_by.last_name }} (#{{ item }})\",\"content\":\"collection\",\"color\":\"action\"}}',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,NULL,NULL,'directus_webhooks',NULL,NULL,'tabular','{\"tabular\":{\"fields\":\"status,http_action,url,collection,directus_action\"}}','{\"tabular\":{\"widths\":{\"status\":32,\"http_action\":72,\"url\":200,\"collection\":200,\"directus_action\":200}}}',NULL),(5,'Recipes',1,NULL,'recipes',NULL,NULL,'tabular',NULL,NULL,NULL),(6,NULL,1,NULL,'directus_activity',NULL,NULL,'timeline','{\"timeline\":{\"sort\":\"-action_on\"}}','{\"timeline\":{\"date\":\"action_on\",\"title\":\"{{ action }} by {{ action_by.first_name }} {{ action_by.last_name }} (#{{ item }})\",\"content\":\"collection\",\"color\":\"action\"}}',NULL);
/*!40000 ALTER TABLE `directus_collection_presets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_collections`
--
DROP TABLE IF EXISTS `directus_collections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_collections`
--
LOCK TABLES `directus_collections` WRITE;
/*!40000 ALTER TABLE `directus_collections` DISABLE KEYS */;
INSERT INTO `directus_collections` VALUES ('recipes',1,0,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `directus_collections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_fields`
--
DROP TABLE IF EXISTS `directus_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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(500) 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` varchar(50) DEFAULT 'full',
`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 AUTO_INCREMENT=183 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_fields`
--
LOCK TABLES `directus_fields` WRITE;
/*!40000 ALTER TABLE `directus_fields` DISABLE KEYS */;
INSERT INTO `directus_fields` VALUES (1,'directus_fields','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(2,'directus_fields','collection','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(3,'directus_fields','field','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(4,'directus_fields','type','string','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(5,'directus_fields','interface','string','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(6,'directus_fields','options','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(7,'directus_fields','locked','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(8,'directus_fields','translation','json','repeater','{\n \"fields\": [\n {\n \"field\": \"locale\",\n \"type\": \"string\",\n \"interface\": \"language\",\n \"options\": {\n \"limit\": true\n },\n \"width\": \"half\"\n },\n {\n \"field\": \"translation\",\n \"type\": \"string\",\n \"interface\": \"text-input\",\n \"width\": \"half\"\n }\n ]\n }',1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(9,'directus_fields','readonly','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(10,'directus_fields','validation','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(11,'directus_fields','required','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(12,'directus_fields','sort','sort','sort',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(13,'directus_fields','note','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(14,'directus_fields','hidden_detail','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(15,'directus_fields','hidden_browse','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(16,'directus_fields','width','integer','numeric',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(17,'directus_fields','group','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(18,'directus_fields','auth_token_ttl','integer','numeric',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(19,'directus_activity','id','integer','primary-key',NULL,1,NULL,1,1,1,0,NULL,'full',NULL,NULL,NULL),(20,'directus_activity','action','string','text-input','{\"iconRight\":\"change_history\"}',1,NULL,0,1,0,0,1,'full',NULL,NULL,NULL),(21,'directus_activity','collection','string','collections','{\"iconRight\":\"list_alt\",\"include_system\":true}',1,NULL,0,1,0,0,2,'half',NULL,NULL,NULL),(22,'directus_activity','item','string','text-input','{\"iconRight\":\"link\"}',1,NULL,0,1,0,0,3,'half',NULL,NULL,NULL),(23,'directus_activity','action_by','integer','user','{\"iconRight\":\"account_circle\"}',1,NULL,0,1,0,0,4,'half',NULL,NULL,NULL),(24,'directus_activity','action_on','datetime','datetime','{\"showRelative\":true,\"iconRight\":\"calendar_today\"}',1,NULL,0,1,0,0,5,'half',NULL,NULL,NULL),(25,'directus_activity','edited_on','datetime','datetime','{\"showRelative\":true,\"iconRight\":\"edit\"}',1,NULL,0,1,0,0,6,'half',NULL,NULL,NULL),(26,'directus_activity','comment_deleted_on','datetime','datetime','{\"showRelative\":true,\"iconRight\":\"delete_outline\"}',1,NULL,0,1,0,0,7,'half',NULL,NULL,NULL),(27,'directus_activity','ip','string','text-input','{\"iconRight\":\"my_location\"}',1,NULL,0,1,0,0,8,'half',NULL,NULL,NULL),(28,'directus_activity','user_agent','string','text-input','{\"iconRight\":\"devices_other\"}',1,NULL,0,1,0,0,9,'half',NULL,NULL,NULL),(29,'directus_activity','comment','string','textarea',NULL,1,NULL,0,1,0,0,10,'full',NULL,NULL,NULL),(30,'directus_collection_presets','id','integer','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(31,'directus_collection_presets','title','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(32,'directus_collection_presets','user','integer','user',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(33,'directus_collection_presets','role','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(34,'directus_collection_presets','collection','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(35,'directus_collection_presets','search_query','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(36,'directus_collection_presets','filters','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(37,'directus_collection_presets','view_options','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(38,'directus_collection_presets','view_type','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(39,'directus_collection_presets','view_query','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(40,'directus_collections','fields','o2m','one-to-many',NULL,1,NULL,0,0,1,1,1,'full',NULL,NULL,NULL),(41,'directus_collections','collection','string','primary-key',NULL,1,NULL,1,1,0,0,2,'half',NULL,NULL,NULL),(42,'directus_collections','note','string','text-input',NULL,1,NULL,0,0,0,0,3,'half',NULL,'An internal description.',NULL),(43,'directus_collections','managed','boolean','switch',NULL,1,NULL,0,0,1,0,4,'half',NULL,'[Learn More](https://docs.directus.io/guides/collections.html#managing-collections).',NULL),(44,'directus_collections','hidden','boolean','switch',NULL,1,NULL,0,0,0,0,5,'half',NULL,'[Learn More](https://docs.directus.io/guides/collections.html#hidden).',NULL),(45,'directus_collections','single','boolean','switch',NULL,1,NULL,0,0,0,0,6,'half',NULL,'[Learn More](https://docs.directus.io/guides/collections.html#single).',NULL),(46,'directus_collections','translation','json','repeater','{\n \"fields\": [\n {\n \"field\": \"locale\",\n \"type\": \"string\",\n \"interface\": \"language\",\n \"options\": {\n \"limit\": true\n },\n \"width\": \"half\"\n },\n {\n \"field\": \"translation\",\n \"type\": \"string\",\n \"interface\": \"text-input\",\n \"width\": \"half\"\n }\n ]\n }',1,NULL,0,0,0,0,7,'full',NULL,NULL,NULL),(47,'directus_collections','icon','string','icon',NULL,1,NULL,0,0,0,0,8,'full',NULL,'The icon shown in the App\'s navigation sidebar.',NULL),(48,'directus_files','preview','alias','file-preview',NULL,1,NULL,0,0,0,0,1,'full',NULL,NULL,NULL),(49,'directus_files','title','string','text-input','{\"placeholder\":\"Enter a descriptive title...\",\"iconRight\":\"title\"}',1,NULL,0,0,0,0,2,'full',NULL,NULL,NULL),(50,'directus_files','tags','array','tags','{\"placeholder\":\"Enter a keyword then hit enter...\"}',1,NULL,0,0,0,0,3,'half',NULL,NULL,NULL),(51,'directus_files','location','string','text-input','{\"placeholder\":\"Enter a location...\",\"iconRight\":\"place\"}',1,NULL,0,0,0,0,4,'half',NULL,NULL,NULL),(52,'directus_files','description','string','wysiwyg','{\"toolbar\":[\"bold\",\"italic\",\"underline\",\"link\",\"code\"]}',1,NULL,0,0,0,0,5,'full',NULL,NULL,NULL),(53,'directus_files','filename_download','string','text-input','{\"monospace\":true,\"iconRight\":\"get_app\"}',1,NULL,0,0,0,0,6,'full',NULL,NULL,NULL),(54,'directus_files','filename_disk','string','text-input','{\"placeholder\":\"Enter a unique file name...\",\"iconRight\":\"insert_drive_file\"}',1,NULL,0,0,0,0,7,'full',NULL,NULL,NULL),(55,'directus_files','private_hash','string','slug','{\"iconRight\":\"lock\"}',1,NULL,0,0,0,0,8,'half',NULL,NULL,NULL),(56,'directus_files','checksum','string','text-input','{\"iconRight\":\"check\",\"monospace\":true}',1,NULL,0,1,0,0,9,'half',NULL,NULL,NULL),(57,'directus_files','uploaded_on','datetime','datetime','{\"iconRight\":\"today\"}',1,NULL,1,1,0,0,10,'half',NULL,NULL,NULL),(58,'directus_files','uploaded_by','owner','owner',NULL,1,NULL,1,1,0,0,11,'half',NULL,NULL,NULL),(59,'directus_files','width','integer','numeric','{\"iconRight\":\"straighten\"}',1,NULL,0,1,0,0,12,'half',NULL,NULL,NULL),(60,'directus_files','height','integer','numeric','{\"iconRight\":\"straighten\"}',1,NULL,0,1,0,0,13,'half',NULL,NULL,NULL),(61,'directus_files','duration','integer','numeric','{\"iconRight\":\"timer\"}',1,NULL,0,1,0,0,14,'half',NULL,NULL,NULL),(62,'directus_files','filesize','integer','file-size','{\"iconRight\":\"storage\"}',1,NULL,0,1,0,0,15,'half',NULL,NULL,NULL),(63,'directus_files','metadata','json','key-value','{\"keyInterface\":\"text-input\",\"keyDataType\":\"string\",\"keyOptions\":{\"monospace\":true,\"placeholder\":\"Key\"},\"valueInterface\":\"text-input\",\"valueDataType\":\"string\",\"valueOptions\":{\"monospace\":true,\"placeholder\":\"Value\"}}',1,NULL,0,0,0,0,15,'full',NULL,NULL,NULL),(64,'directus_files','data','alias','file',NULL,1,NULL,0,0,1,0,NULL,'full',NULL,NULL,NULL),(65,'directus_files','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(66,'directus_files','type','string','text-input',NULL,1,NULL,0,1,1,0,NULL,'full',NULL,NULL,NULL),(67,'directus_files','charset','string','text-input',NULL,1,NULL,0,1,1,1,NULL,'full',NULL,NULL,NULL),(68,'directus_files','embed','string','text-input',NULL,1,NULL,0,1,1,0,NULL,'full',NULL,NULL,NULL),(69,'directus_files','folder','m2o','many-to-one',NULL,1,NULL,0,0,1,0,NULL,'full',NULL,NULL,NULL),(70,'directus_files','storage','string','text-input',NULL,1,NULL,0,0,1,1,NULL,'full',NULL,NULL,NULL),(71,'directus_folders','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(72,'directus_folders','name','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(73,'directus_folders','parent_folder','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(74,'directus_roles','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(75,'directus_roles','external_id','string','text-input',NULL,1,NULL,0,1,1,1,NULL,'full',NULL,NULL,NULL),(76,'directus_roles','name','string','text-input',NULL,1,NULL,1,0,0,0,1,'half',NULL,NULL,NULL),(77,'directus_roles','description','string','text-input',NULL,1,NULL,0,0,0,0,2,'half',NULL,NULL,NULL),(78,'directus_roles','ip_whitelist','array','tags','{\"\":\"Add an IP address...\"}',1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(79,'directus_roles','enforce_2fa','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(80,'directus_roles','users','o2m','one-to-many','{\"fields\":\"first_name,last_name\"}',1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(81,'directus_roles','module_listing','json','repeater','{\"template\":\"{{ name }}\",\"createItemText\":\"Add Module\",\"fields\":[{\"field\":\"name\",\"interface\":\"text-input\",\"type\":\"string\",\"width\":\"half\"},{\"field\":\"link\",\"interface\":\"text-input\",\"type\":\"string\",\"width\":\"half\"},{\"field\":\"icon\",\"interface\":\"icon\",\"type\":\"string\",\"width\":\"full\"}]}',1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(82,'directus_roles','collection_listing','json','repeater','{\"template\":\"{{ group_name }}\",\"createItemText\":\"Add Group\",\"fields\":[{\"field\":\"group_name\",\"width\":\"full\",\"interface\":\"text-input\",\"type\":\"string\"},{\"field\":\"collections\",\"interface\":\"repeater\",\"type\":\"JSON\",\"options\":{\"createItemText\":\"Add Collection\",\"fields\":[{\"field\":\"collection\",\"type\":\"string\",\"interface\":\"collections\",\"width\":\"full\"}]}}]}',1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(83,'directus_permissions','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(84,'directus_permissions','collection','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(85,'directus_permissions','role','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(86,'directus_permissions','status','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(87,'directus_permissions','create','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(88,'directus_permissions','read','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(89,'directus_permissions','update','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(90,'directus_permissions','delete','string','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(91,'directus_permissions','comment','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(92,'directus_permissions','explain','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(93,'directus_permissions','status_blacklist','array','tags',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(94,'directus_permissions','read_field_blacklist','array','tags',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(95,'directus_permissions','write_field_blacklist','array','tags',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(96,'directus_relations','id','integer','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(97,'directus_relations','collection_many','string','collections',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(98,'directus_relations','field_many','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(99,'directus_relations','collection_one','string','collections',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(100,'directus_relations','field_one','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(101,'directus_relations','junction_field','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(102,'directus_revisions','id','integer','primary-key',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(103,'directus_revisions','activity','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(104,'directus_revisions','collection','m2o','many-to-one',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(105,'directus_revisions','item','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(106,'directus_revisions','data','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(107,'directus_revisions','delta','json','json',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(108,'directus_revisions','parent_item','string','text-input',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(109,'directus_revisions','parent_collection','string','collections',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(110,'directus_revisions','parent_changed','boolean','switch',NULL,1,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(111,'directus_settings','project_name','string','text-input','{\"iconRight\":\"title\"}',1,NULL,1,0,0,0,1,'half',NULL,'Logo in the top-left of the App (40x40)',NULL),(112,'directus_settings','project_url','string','text-input','{\"iconRight\":\"link\"}',1,NULL,0,0,0,0,2,'half',NULL,'External link for the App\'s top-left logo',NULL),(113,'directus_settings','project_logo','file','file',NULL,1,NULL,0,0,0,0,3,'half',NULL,'A 40x40 brand logo, ideally a white SVG/PNG',NULL),(114,'directus_settings','project_color','string','color',NULL,1,NULL,0,0,0,0,4,'half',NULL,'Color for login background and App\'s logo',NULL),(115,'directus_settings','project_foreground','file','file',NULL,1,NULL,0,0,0,0,5,'half',NULL,'Centered image (eg: logo) for the login page',NULL),(116,'directus_settings','project_background','file','file',NULL,1,NULL,0,0,0,0,6,'half',NULL,'Full-screen background for the login page',NULL),(117,'directus_settings','project_public_note','string','markdown',NULL,1,NULL,0,0,0,0,7,'full',NULL,'This value will be shown on the public pages of the app',NULL),(118,'directus_settings','default_locale','string','language','{\"limit\":true}',1,NULL,0,0,0,0,8,'half',NULL,'Default locale for Directus Users',NULL),(119,'directus_settings','telemetry','boolean','switch',NULL,1,NULL,0,0,0,0,9,'half',NULL,'<a href=\"https://docs.directus.io/getting-started/concepts.html#telemetry\" target=\"_blank\">Learn More</a>',NULL),(120,'directus_settings','data_divider','alias','divider','{\"style\":\"large\",\"title\":\"Data\",\"hr\":true}',1,NULL,0,0,0,1,11,'full',NULL,NULL,NULL),(121,'directus_settings','default_limit','integer','numeric','{\"iconRight\":\"keyboard_tab\"}',1,NULL,1,0,0,0,12,'half',NULL,'Default item count in API and App responses',NULL),(122,'directus_settings','sort_null_last','boolean','switch',NULL,1,NULL,0,0,0,0,13,'half',NULL,'NULL values are sorted last',NULL),(123,'directus_settings','security_divider','alias','divider','{\"style\":\"large\",\"title\":\"Security\",\"hr\":true}',1,NULL,0,0,0,1,20,'full',NULL,NULL,NULL),(124,'directus_settings','auto_sign_out','integer','numeric','{\"iconRight\":\"timer\"}',1,NULL,1,0,0,0,22,'half',NULL,'Minutes before idle users are signed out',NULL),(125,'directus_settings','login_attempts_allowed','integer','numeric','{\"iconRight\":\"lock\"}',1,NULL,0,0,0,0,23,'half',NULL,'Failed login attempts before suspending users',NULL),(126,'directus_settings','password_policy','string','dropdown','{\"choices\":{\"\":\"None\",\"\\/^.{8,}$\\/\":\"Weak\",\"\\/(?=^.{8,}$)(?=.*\\\\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*()_+}{\';\'?>.<,])(?!.*\\\\s).*$\\/\":\"Strong\"}}',1,NULL,0,0,0,0,24,'half',NULL,'Weak: Minimum length 8; Strong: 1 small-case letter, 1 capital letter, 1 digit, 1 special character and the length should be minimum 8',NULL),(127,'directus_settings','auth_token_ttl','integer','numeric','{\"iconRight\":\"timer\"}',1,NULL,0,0,0,0,25,'half',NULL,'Minutes the API authorization token will last',NULL),(128,'directus_settings','files_divider','alias','divider','{\"style\":\"large\",\"title\":\"Files & Thumbnails\",\"hr\":true}',1,NULL,0,0,0,1,30,'full',NULL,NULL,NULL),(129,'directus_settings','file_naming','string','dropdown','{\"choices\":{\"uuid\":\"UUID (Obfuscated)\",\"file_name\":\"File Name (Readable)\"}}',1,NULL,0,0,0,0,31,'half',NULL,'File-system naming convention for uploads',NULL),(130,'directus_settings','asset_url_naming','string','dropdown','{\"choices\":{\"private_hash\":\"Private Hash (Obfuscated)\",\"filename_download\":\"File Name (Readable)\"}}',1,NULL,0,0,0,0,32,'half',NULL,'Thumbnail URL convention',NULL),(131,'directus_settings','file_mimetype_whitelist','array','tags','{\"placeholder\":\"Enter a file mimetype then hit enter (eg: image\\/jpeg)\"}',1,NULL,0,0,0,0,33,'half',NULL,'Enter a file mimetype then hit enter (eg: image/jpeg)',NULL),(132,'directus_settings','asset_whitelist','json','repeater','{\"template\":\"{{key}}\",\"fields\":[{\"field\":\"key\",\"interface\":\"slug\",\"width\":\"half\",\"type\":\"string\",\"required\":true,\"options\":{\"onlyOnCreate\":false}},{\"field\":\"fit\",\"interface\":\"dropdown\",\"width\":\"half\",\"type\":\"string\",\"options\":{\"choices\":{\"crop\":\"Crop (forces exact size)\",\"contain\":\"Contain (preserve aspect ratio)\"}},\"required\":true},{\"field\":\"width\",\"interface\":\"numeric\",\"width\":\"half\",\"type\":\"integer\",\"required\":true},{\"field\":\"height\",\"interface\":\"numeric\",\"width\":\"half\",\"type\":\"integer\",\"required\":true},{\"field\":\"quality\",\"interface\":\"slider\",\"width\":\"full\",\"type\":\"integer\",\"default\":80,\"options\":{\"min\":0,\"max\":100,\"step\":1},\"required\":true}]}',0,NULL,0,0,0,0,34,'full',NULL,'Defines how the thumbnail will be generated based on the requested params.',NULL),(133,'directus_settings','asset_whitelist_system','json','json',NULL,0,NULL,0,1,1,1,35,'half',NULL,NULL,NULL),(134,'directus_settings','youtube_api_key','string','text-input','{\"iconRight\":\"videocam\"}',1,NULL,0,0,0,0,36,'full',NULL,'Allows fetching more YouTube Embed info',NULL),(135,'directus_users','id','integer','primary-key',NULL,1,NULL,1,0,1,0,1,'full',NULL,NULL,NULL),(136,'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,1,0,0,0,2,'full',NULL,NULL,NULL),(137,'directus_users','first_name','string','text-input','{\"iconRight\":\"account_circle\"}',1,NULL,1,0,0,0,3,'half',NULL,NULL,NULL),(138,'directus_users','last_name','string','text-input','{\"iconRight\":\"account_circle\"}',1,NULL,1,0,0,0,4,'half',NULL,NULL,NULL),(139,'directus_users','email','string','text-input','{\"iconRight\":\"alternate_email\"}',1,'$email',1,0,0,0,5,'half',NULL,NULL,NULL),(140,'directus_users','email_notifications','boolean','switch',NULL,1,NULL,0,0,0,0,6,'half',NULL,NULL,NULL),(141,'directus_users','password','hash','password',NULL,1,NULL,1,0,0,0,7,'half',NULL,NULL,NULL),(142,'directus_users','role','m2o','user-roles',NULL,1,NULL,1,0,0,0,8,'half',NULL,NULL,NULL),(143,'directus_users','company','string','text-input','{\"iconRight\":\"location_city\"}',0,NULL,0,0,0,0,9,'half',NULL,NULL,NULL),(144,'directus_users','title','string','text-input','{\"iconRight\":\"text_fields\"}',0,NULL,0,0,0,0,10,'half',NULL,NULL,NULL),(145,'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,1,0,0,0,11,'half',NULL,NULL,NULL),(146,'directus_users','locale','string','language','{\"limit\":true}',1,NULL,0,0,0,0,12,'half',NULL,NULL,NULL),(147,'directus_users','avatar','file','file',NULL,1,NULL,0,0,0,0,13,'full',NULL,NULL,NULL),(148,'directus_users','theme','string','radio-buttons','{\"format\":true,\"choices\":{\"auto\":\"Auto\",\"light\":\"Light\",\"dark\":\"Dark\"}}',1,NULL,0,0,0,0,14,'full',NULL,NULL,NULL),(149,'directus_users','2fa_secret','string','2fa-secret',NULL,1,NULL,0,1,0,0,15,'full',NULL,NULL,NULL),(150,'directus_users','locale_options','json','json',NULL,1,NULL,0,0,1,1,16,'full',NULL,NULL,NULL),(151,'directus_users','token','string','text-input',NULL,1,NULL,0,0,1,1,17,'full',NULL,NULL,NULL),(152,'directus_users','last_access_on','datetime','datetime',NULL,1,NULL,0,1,1,0,18,'full',NULL,NULL,NULL),(153,'directus_users','last_page','string','text-input',NULL,1,NULL,0,1,1,1,19,'full',NULL,NULL,NULL),(154,'directus_users','external_id','string','text-input',NULL,1,NULL,0,1,1,1,NULL,'full',NULL,NULL,NULL),(155,'directus_users','password_reset_token','string','text-input',NULL,1,NULL,0,1,1,0,NULL,'full',NULL,NULL,NULL),(156,'directus_user_sessions','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(157,'directus_user_sessions','user','user','user',NULL,0,NULL,1,0,0,0,NULL,'full',NULL,NULL,NULL),(158,'directus_user_sessions','token_type','string','text-input',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(159,'directus_user_sessions','token','string','text-input',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(160,'directus_user_sessions','ip_address','string','text-input',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(161,'directus_user_sessions','user_agent','string','text-input',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(162,'directus_user_sessions','created_on','datetime','datetime',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(163,'directus_user_sessions','token_expired_at','datetime','datetime',NULL,0,NULL,0,0,0,0,NULL,'full',NULL,NULL,NULL),(164,'directus_webhooks','id','integer','primary-key',NULL,1,NULL,1,0,1,0,NULL,'full',NULL,NULL,NULL),(165,'directus_webhooks','status','status','status','{\"status_mapping\":{\"active\":{\"name\":\"Active\",\"value\":\"active\",\"text_color\":\"white\",\"background_color\":\"green\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true},\"inactive\":{\"name\":\"Inactive\",\"value\":\"inactive\",\"text_color\":\"white\",\"background_color\":\"blue-grey\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false}}}',1,NULL,0,0,0,0,1,'full',NULL,NULL,NULL),(166,'directus_webhooks','http_action','string','dropdown','{\"choices\":{\"get\":\"GET\",\"post\":\"POST\"}}',1,NULL,1,0,0,0,2,'half-space',NULL,NULL,NULL),(167,'directus_webhooks','url','string','text-input','{\"placeholder\":\"https:\\/\\/example.com\",\"iconRight\":\"link\"}',1,NULL,1,0,0,0,3,'full',NULL,'',NULL),(168,'directus_webhooks','collection','string','collections',NULL,1,NULL,1,0,0,0,4,'half',NULL,'',NULL),(169,'directus_webhooks','directus_action','string','dropdown','{\"choices\":{\"item.create:after\":\"Create\",\"item.update:after\":\"Update\",\"item.delete:after\":\"Delete\"}}',1,NULL,1,0,0,0,5,'half',NULL,'',NULL),(170,'directus_webhooks','info','alias','divider','{\"style\":\"medium\",\"title\":\"How Webhooks Work\",\"hr\":true,\"margin\":false,\"description\":\"When the selected action occurs for the selected collection, Directus will send an HTTP request to the above URL.\"}',1,NULL,0,0,0,1,6,'full',NULL,NULL,NULL),(171,'recipes','id','integer','primary-key',NULL,0,NULL,0,0,1,1,1,'full',NULL,NULL,NULL),(174,'recipes','created_on','datetime_created','datetime-created',NULL,0,NULL,0,1,1,1,7,'full',NULL,NULL,NULL),(175,'recipes','modified_on','datetime_updated','datetime-updated',NULL,0,NULL,0,1,1,1,8,'full',NULL,NULL,NULL),(176,'recipes','name','string','text-input','{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false}',0,NULL,1,0,0,0,2,'full',NULL,NULL,'[]'),(178,'recipes','description','string','textarea','{\"rows\":8,\"serif\":false}',0,NULL,0,0,0,0,3,'full',NULL,NULL,'[]'),(179,'recipes','ingredients','string','wysiwyg','{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\",\"aligncenter\",\"alignjustify\",\"alignleft\",\"alignnone\",\"alignright\",\"forecolor\",\"backcolor\",\"strikethrough\",\"subscript\",\"superscript\",\"unlink\",\"copy\",\"cut\",\"paste\",\"h4\",\"h5\",\"h6\",\"fontselect\",\"fontsizeselect\",\"indent\",\"outdent\",\"undo\",\"redo\",\"remove\",\"selectall\",\"table\"],\"custom_formats\":null}',0,NULL,1,0,0,0,4,'full',NULL,'','[]'),(180,'recipes','directions','string','wysiwyg','{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null}',0,NULL,1,0,0,0,5,'full',NULL,'','[]'),(181,'recipes','tags','array','tags','{\"iconRight\":\"local_offer\",\"validationMessage\":\"Please enter a valid tag\",\"alphabetize\":true,\"lowercase\":true,\"wrap\":false,\"format\":false,\"sanitize\":false}',0,NULL,1,0,0,0,6,'full',NULL,NULL,'[]'),(182,'recipes','image','file','file','{\"crop\":true,\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[],\"allowDelete\":false}',0,NULL,0,0,0,0,NULL,'full',NULL,NULL,'[]');
/*!40000 ALTER TABLE `directus_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_files`
--
DROP TABLE IF EXISTS `directus_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_files` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`storage` varchar(50) NOT NULL DEFAULT 'local',
`private_hash` varchar(16) DEFAULT NULL,
`filename_disk` varchar(255) NOT NULL,
`filename_download` 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 AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_files`
--
LOCK TABLES `directus_files` WRITE;
/*!40000 ALTER TABLE `directus_files` DISABLE KEYS */;
INSERT INTO `directus_files` VALUES (4,'local','knlmt9pts7408s84','6bece9b0-f21b-49a4-81b9-b825babf5c06.jpg','00000000008.jpg','00000000008','image/jpeg',1,'2020-10-05 05:11:29','',71360,744,596,0,NULL,NULL,'','','','d977897068dc5266565a5f181b946218',NULL),(5,'local','1nglsplu1akg44gs','e422cce2-0d79-4927-8b08-b6a532aa023d.jpg','00000000005.jpg','00000000005','image/jpeg',1,'2020-10-05 05:11:29','',95155,930,759,0,NULL,NULL,'','','','c8c6bf00e1552ce25fc317099ef5f4cb',NULL),(6,'local','12mw6fwoz7v48sog','ed896970-2e11-49ae-b0aa-df3966b1447b.jpg','00000000009.jpg','00000000009','image/jpeg',1,'2020-10-05 05:11:29','',243548,1080,1064,0,NULL,NULL,'','','','73fda79e427d79fe87fcbf8092a7b623',NULL),(7,'local','28vgbbn7mhhck4gk','09ed4f82-c314-4aac-b77d-a7763953063b.jpg','00000000006.jpg','00000000006','image/jpeg',1,'2020-10-05 05:11:29','',234576,1280,1023,0,NULL,NULL,'','','','75e59ea78aca3242f4139f3bfa9481cc',NULL),(8,'local','6eb03ocdvg0s008s','5e973f62-c085-4be4-8856-4c16d4eaba68.jpg','00000000010.jpg','00000000010','image/jpeg',1,'2020-10-05 05:11:29','',190867,960,1280,0,NULL,NULL,'','','','2b89d19ab52f0819dd7f81af103dd9a5',NULL),(9,'local','cpcrx78sdpcgccck','2a22b5c8-70d9-47f2-9d8c-48255d660120.jpg','00000000007.jpg','00000000007','image/jpeg',1,'2020-10-05 05:11:29','',155313,1280,1224,0,NULL,NULL,'','','','aa6616fae0441101227887a3502a2705',NULL),(11,'local','8vq7yxp7ibcwcgoc','542ecced-ecfe-4464-b3c2-a493d053396f.jpg','00000000013.jpg','00000000013','image/jpeg',1,'2020-10-05 05:11:30','',87868,997,898,0,NULL,NULL,'','','','e112fc7a5b4c432fcbdb034071c568b0',NULL),(13,'local','ip3uhbcejmgcckw8','c136b0fe-ca3f-46b8-b93a-7efed8489b73.jpg','00000000014.jpg','00000000014','image/jpeg',1,'2020-10-05 05:11:30','',116439,1280,960,0,NULL,NULL,'','','','fc776faa7ddbc31142d725ec5dfc978e',NULL),(14,'local','lj2cyx28gyok8k0c','481dc12a-1bc4-430b-ab48-6c847fc4acf6.jpg','00000000016.jpg','00000000016','image/jpeg',1,'2020-10-05 05:11:30','',170046,1280,960,0,NULL,NULL,'','','','5f0c4d7d8211c44053bd5a2b7b0696fc',NULL),(16,'local','tahgf8xtuo00c4oc','cb8338ba-3dcc-4db0-97b3-ef70b432ef4c.jpg','00000000017.jpg','00000000017','image/jpeg',1,'2020-10-05 05:11:30','',97952,720,592,0,NULL,NULL,'','','','746573ad531c285b328ea9f847399c20',NULL),(17,'local','2xyceggt3280kg8g','b6a0fcd4-8ab6-4f92-8148-39f98c462f28.jpg','00000000018.jpg','00000000018','image/jpeg',1,'2020-10-05 05:11:30','',119367,954,1086,0,NULL,NULL,'','','','e83d2fddc464f52b52fe7aaf49b7a853',NULL),(18,'local','80lru08jcj4sg8cg','4de7f818-afe9-4d00-8ba2-a9314c039290.jpg','00000000019.jpg','00000000019','image/jpeg',1,'2020-10-05 05:11:30','',185756,960,995,0,NULL,NULL,'','','','967f521c38f7852de5ec57b4a767c7f5',NULL);
/*!40000 ALTER TABLE `directus_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_folders`
--
DROP TABLE IF EXISTS `directus_folders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_folders`
--
LOCK TABLES `directus_folders` WRITE;
/*!40000 ALTER TABLE `directus_folders` DISABLE KEYS */;
/*!40000 ALTER TABLE `directus_folders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_migrations`
--
DROP TABLE IF EXISTS `directus_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_migrations`
--
LOCK TABLES `directus_migrations` WRITE;
/*!40000 ALTER TABLE `directus_migrations` DISABLE KEYS */;
INSERT INTO `directus_migrations` VALUES (20180220023123,'CreateFieldsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023138,'CreateActivityTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023152,'CreateCollectionsPresetsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023157,'CreateCollectionsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023208,'CreateFilesTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023213,'CreateFoldersTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023217,'CreateRolesTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023226,'CreatePermissionsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023232,'CreateRelationsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023238,'CreateRevisionsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023243,'CreateSettingsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20180220023248,'CreateUsersTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181022175715,'Upgrade070003','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181102153600,'TimezoneChoices','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181105165224,'Upgrade070006','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181122195602,'LocaleInterface','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181123171520,'RemoveScope','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181210204720,'AddTrustedProxiesSettingField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181222023800,'AddProjectUrlSettingField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20181227042755,'IncreaseUsersLastPageLength','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190104155309,'AddUsersEmailValidation','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190111193724,'AddAppUrlSettingField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190111212736,'AddMissingSettingsField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190118181424,'AddRolesUsersField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190130215921,'AddFilesChecksumField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190318173400,'AddNavOverride','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190412122400,'SetPasswordTypeToHash','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190412123000,'UseFileInterface','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190412145800,'SetO2mOptionsRoles','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190415125300,'SetWidth','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190419154400,'SettingsFields','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190419161200,'CollectionNotes','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190419173000,'MiscRequiredFields','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190422131600,'UseJson','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190426156200,'SetNullableValueFieldSettingsTable','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190520094300,'UseTimeline','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190614103321,'AddUsers2faSecretField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190618190024,'AddEnforce2faRoleField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190626114228,'AddFileNamingInSetting','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190702092323,'AddLoginAttemptsAllowedSetting','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190704063752,'UpdateIstanbulTimezone','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190708095522,'AddFileExtensionSetting','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190722110232,'PasswordValidationSettingField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190726064001,'UpdateNoteForDefaultLimit','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190819070856,'UpdateDirectusFieldsField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190912072543,'CreateUserSessions','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20190917090849,'CreateWebHooks','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191123053252,'UpdateDirectusFilesField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191129123300,'UseNewWysiwyg','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164200,'AddUserSessions','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164201,'AddWebhooks','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164202,'RemoveActivitySeen','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164203,'ConvertUserRoles','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164204,'UpdateDirectusUsers','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164205,'UpdateDirectusSettings','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164206,'UpdateDirectusFiles','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164207,'UpdateDirectusRoles','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164208,'ResetDirectusRelations','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191202164209,'ResetDirectusFields','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191203105400,'AddHashFiledownloadIfEmpty','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191204151300,'UseCorrectWysiwyg','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191205150000,'UpdateDirectusThumbnailSizes','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191209130300,'AddProjectPublicNote','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191209141700,'SetOptionsCollectionListing','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191211140300,'AllowNullInSettings','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191211141600,'HideExternalid','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191213160000,'NewTranslationsStructure','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191216134009,'AddUserLastPasswordUpdate','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191216175050,'RemoveFileMaxSize','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191220102232,'UpdateUserCreatedToOwner','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20191223121542,'UpdateSlugType','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200108122313,'AddAssetUrlNamingSetting','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200120170859,'UpdateTypeOfCollectionListing','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200121134200,'RenameToggle','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200121134353,'UpdateUserCreatedInterface','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200123161848,'UpdateValidationSizeForDirectusField','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200129100037,'UpdateLoginAttemptValue','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200207095101,'UpdateSlugOptionForAssetWhiteList','2020-10-04 21:34:22','2020-10-04 21:34:22',0),(20200303111750,'AddAuthTtlField','2020-10-04 21:34:22','2020-10-04 21:34:22',0);
/*!40000 ALTER TABLE `directus_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_permissions`
--
DROP TABLE IF EXISTS `directus_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_permissions`
--
LOCK TABLES `directus_permissions` WRITE;
/*!40000 ALTER TABLE `directus_permissions` DISABLE KEYS */;
INSERT INTO `directus_permissions` VALUES (1,'recipes',2,NULL,'full','full','full','full','full','none',NULL,NULL,NULL);
/*!40000 ALTER TABLE `directus_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_relations`
--
DROP TABLE IF EXISTS `directus_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_relations`
--
LOCK TABLES `directus_relations` WRITE;
/*!40000 ALTER TABLE `directus_relations` DISABLE KEYS */;
INSERT INTO `directus_relations` VALUES (1,'directus_activity','action_by','directus_users',NULL,NULL),(2,'directus_collections_presets','user','directus_users',NULL,NULL),(3,'directus_collections_presets','group','directus_groups',NULL,NULL),(4,'directus_fields','collection','directus_collections','fields',NULL),(5,'directus_files','uploaded_by','directus_users',NULL,NULL),(6,'directus_files','folder','directus_folders',NULL,NULL),(7,'directus_folders','parent_folder','directus_folders',NULL,NULL),(8,'directus_permissions','group','directus_groups',NULL,NULL),(9,'directus_revisions','activity','directus_activity',NULL,NULL),(10,'directus_users','role','directus_roles','users',NULL),(11,'directus_users','avatar','directus_files',NULL,NULL);
/*!40000 ALTER TABLE `directus_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_revisions`
--
DROP TABLE IF EXISTS `directus_revisions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 AUTO_INCREMENT=98 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_revisions`
--
LOCK TABLES `directus_revisions` WRITE;
/*!40000 ALTER TABLE `directus_revisions` DISABLE KEYS */;
INSERT INTO `directus_revisions` VALUES (1,2,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"collection\":\"recipes\",\"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','172','{\"id\":\"172\",\"collection\":\"recipes\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"value\":\"published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true,\"required_fields\":true},\"draft\":{\"name\":\"Draft\",\"value\":\"draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-100\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false,\"required_fields\":false},\"deleted\":{\"name\":\"Deleted\",\"value\":\"deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false,\"required_fields\":false}}},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"0\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"collection\":\"recipes\",\"field\":\"status\",\"type\":\"status\",\"interface\":\"status\",\"required\":true,\"sort\":0,\"note\":null,\"hidden_detail\":0,\"hidden_browse\":0,\"options\":{\"status_mapping\":{\"published\":{\"name\":\"Published\",\"value\":\"published\",\"text_color\":\"white\",\"background_color\":\"accent\",\"browse_subdued\":false,\"browse_badge\":true,\"soft_delete\":false,\"published\":true,\"required_fields\":true},\"draft\":{\"name\":\"Draft\",\"value\":\"draft\",\"text_color\":\"white\",\"background_color\":\"blue-grey-100\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":false,\"published\":false,\"required_fields\":false},\"deleted\":{\"name\":\"Deleted\",\"value\":\"deleted\",\"text_color\":\"white\",\"background_color\":\"red\",\"browse_subdued\":true,\"browse_badge\":true,\"soft_delete\":true,\"published\":false,\"required_fields\":false}}},\"width\":\"full\"}',NULL,NULL,NULL),(3,4,'directus_fields','173','{\"id\":\"173\",\"collection\":\"recipes\",\"field\":\"owner\",\"type\":\"owner\",\"interface\":\"owner\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"collection\":\"recipes\",\"field\":\"owner\",\"type\":\"owner\",\"interface\":\"owner\",\"required\":false,\"sort\":0,\"note\":null,\"hidden_detail\":true,\"hidden_browse\":true,\"options\":{\"template\":\"{{first_name}} {{last_name}}\",\"display\":\"both\"},\"readonly\":true,\"width\":\"full\"}',NULL,NULL,NULL),(4,5,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"collection\":\"recipes\",\"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,\"width\":\"full\"}',NULL,NULL,NULL),(5,6,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"collection\":\"recipes\",\"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,\"width\":\"full\"}',NULL,NULL,NULL),(6,7,'directus_collections','recipes','{\"collection\":\"recipes\",\"managed\":true,\"hidden\":false,\"single\":false,\"icon\":null,\"note\":null,\"translation\":null}','{\"managed\":true,\"hidden\":0}',NULL,NULL,NULL),(7,8,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":true,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(8,9,'directus_fields','177','{\"id\":\"177\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"text-input\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(9,10,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"rows\":8,\"serif\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(10,11,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(11,12,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(12,13,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":3}',NULL,NULL,NULL),(13,14,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"4\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":4}',NULL,NULL,NULL),(14,15,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":5}',NULL,NULL,NULL),(15,16,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(16,17,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(17,18,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"3\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":3}',NULL,NULL,NULL),(18,19,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":4}',NULL,NULL,NULL),(19,20,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":5}',NULL,NULL,NULL),(20,21,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"textarea\",\"required\":true,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"rows\":8,\"serif\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(21,22,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(22,23,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(23,24,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"3\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":3}',NULL,NULL,NULL),(24,25,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":4}',NULL,NULL,NULL),(25,26,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":5}',NULL,NULL,NULL),(26,27,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":6}',NULL,NULL,NULL),(27,28,'directus_fields','180','{\"id\":\"180\",\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"textarea\",\"required\":true,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"rows\":8,\"serif\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(28,29,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(29,30,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(30,31,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"3\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":3}',NULL,NULL,NULL),(31,32,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":4}',NULL,NULL,NULL),(32,33,'directus_fields','180','{\"id\":\"180\",\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":5}',NULL,NULL,NULL),(33,34,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"6\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":6}',NULL,NULL,NULL),(34,35,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"7\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":7}',NULL,NULL,NULL),(35,36,'directus_fields','181','{\"id\":\"181\",\"collection\":\"recipes\",\"field\":\"tags\",\"type\":\"array\",\"interface\":\"tags\",\"options\":{\"iconRight\":\"local_offer\",\"validationMessage\":\"Please enter a valid tag\",\"alphabetize\":true,\"lowercase\":true,\"wrap\":false,\"format\":false,\"sanitize\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"tags\",\"type\":\"array\",\"interface\":\"tags\",\"required\":true,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"iconRight\":\"local_offer\",\"validationMessage\":\"Please enter a valid tag\",\"alphabetize\":true,\"lowercase\":true,\"wrap\":false,\"format\":false,\"sanitize\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(36,37,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(37,38,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(38,39,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"3\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":3}',NULL,NULL,NULL),(39,40,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":4}',NULL,NULL,NULL),(40,41,'directus_fields','181','{\"id\":\"181\",\"collection\":\"recipes\",\"field\":\"tags\",\"type\":\"array\",\"interface\":\"tags\",\"options\":{\"iconRight\":\"local_offer\",\"validationMessage\":\"Please enter a valid tag\",\"alphabetize\":true,\"lowercase\":true,\"wrap\":false,\"format\":false,\"sanitize\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":5}',NULL,NULL,NULL),(41,42,'directus_fields','180','{\"id\":\"180\",\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":6}',NULL,NULL,NULL),(42,43,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"7\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":7}',NULL,NULL,NULL),(43,44,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"8\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":8}',NULL,NULL,NULL),(44,45,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":\"\",\"translation\":[]}','{\"sort\":4,\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null},\"readonly\":false,\"required\":true,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(45,46,'directus_fields','171','{\"id\":\"171\",\"collection\":\"recipes\",\"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\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":1}',NULL,NULL,NULL),(46,47,'directus_fields','176','{\"id\":\"176\",\"collection\":\"recipes\",\"field\":\"name\",\"type\":\"string\",\"interface\":\"text-input\",\"options\":{\"placeholder\":\"\",\"trim\":true,\"showCharacterCount\":true,\"formatValue\":false,\"monospace\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"2\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":2}',NULL,NULL,NULL),(47,48,'directus_fields','178','{\"id\":\"178\",\"collection\":\"recipes\",\"field\":\"description\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"3\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":3}',NULL,NULL,NULL),(48,49,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":\"\",\"translation\":[]}','{\"sort\":4}',NULL,NULL,NULL),(49,50,'directus_fields','180','{\"id\":\"180\",\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"textarea\",\"options\":{\"rows\":8,\"serif\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":5}',NULL,NULL,NULL),(50,51,'directus_fields','181','{\"id\":\"181\",\"collection\":\"recipes\",\"field\":\"tags\",\"type\":\"array\",\"interface\":\"tags\",\"options\":{\"iconRight\":\"local_offer\",\"validationMessage\":\"Please enter a valid tag\",\"alphabetize\":true,\"lowercase\":true,\"wrap\":false,\"format\":false,\"sanitize\":false},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"6\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"sort\":6}',NULL,NULL,NULL),(51,52,'directus_fields','174','{\"id\":\"174\",\"collection\":\"recipes\",\"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\":\"7\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":7}',NULL,NULL,NULL),(52,53,'directus_fields','175','{\"id\":\"175\",\"collection\":\"recipes\",\"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\":\"8\",\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":null}','{\"sort\":8}',NULL,NULL,NULL),(53,54,'directus_fields','180','{\"id\":\"180\",\"collection\":\"recipes\",\"field\":\"directions\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"5\",\"width\":\"full\",\"group\":null,\"note\":\"\",\"translation\":[]}','{\"sort\":5,\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\"],\"custom_formats\":null},\"readonly\":false,\"required\":true,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(54,55,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-04 23:47:17\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">Batter:<\\/span><\\/div>\\n<div>\\n<ul>\\n<li>1 cup all-purpose flour<\\/li>\\n<li>2 eggs<\\/li>\\n<li>1\\/2 cup of milk<\\/li>\\n<li>1\\/2 cup of water<\\/li>\\n<li>1\\/4 teaspoon of salt<\\/li>\\n<li>2 tablespoons melted butter<\\/li>\\n<li>2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<p>For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/p>\\n<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"]}','{\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">Batter:<\\/span><\\/div>\\n<div>\\n<ul>\\n<li>1 cup all-purpose flour<\\/li>\\n<li>2 eggs<\\/li>\\n<li>1\\/2 cup of milk<\\/li>\\n<li>1\\/2 cup of water<\\/li>\\n<li>1\\/4 teaspoon of salt<\\/li>\\n<li>2 tablespoons melted butter<\\/li>\\n<li>2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<p>For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/p>\\n<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"]}',NULL,NULL,NULL),(55,56,'recipes','2','{\"id\":\"2\",\"created_on\":\"2020-10-04 23:48:13\",\"modified_on\":\"2020-10-04 23:48:13\",\"name\":\"Chicken Siciliano\",\"description\":\"Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.\",\"ingredients\":\"<p>Sauce:<\\/p>\\n<ul>\\n<li>1\\/2 green bell pepper, finely diced<\\/li>\\n<li>1 white onion, chopped<\\/li>\\n<li>4\\/5 jar hot cherry peppers<\\/li>\\n<li>1 can diced tomatoes with green chilis<\\/li>\\n<li>1 handful of yellow grape tomatoes, quartered<\\/li>\\n<li>1 tablespoon olive oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>1 tablespoon salt<\\/li>\\n<li>2 tablespoons red pepper flakes<\\/li>\\n<li>1 tablespoon Italian seasoning<\\/li>\\n<li>1 jar Trader Joe\'s plain marinara<\\/li>\\n<\\/ul>\\n<p>Chicken:<\\/p>\\n<ul>\\n<li>3 chicken breasts<\\/li>\\n<li>2 eggs<\\/li>\\n<li>3 cups all-purpose flour<\\/li>\\n<li>4 cups breadcrumbs<\\/li>\\n<li>1 tablespoon parsley<\\/li>\\n<li>2 tablespoons salt<\\/li>\\n<li>1\\/2 cup vegetable oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>6 slices of mozzarella <\\/li>\\n<\\/ul>\",\"directions\":\"<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.<\\/p>\\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.<\\/p>\\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.<\\/p>\",\"tags\":[\"dinner\"]}','{\"description\":\"Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.\",\"name\":\"Chicken Siciliano\",\"ingredients\":\"<p>Sauce:<\\/p>\\n<ul>\\n<li>1\\/2 green bell pepper, finely diced<\\/li>\\n<li>1 white onion, chopped<\\/li>\\n<li>4\\/5 jar hot cherry peppers<\\/li>\\n<li>1 can diced tomatoes with green chilis<\\/li>\\n<li>1 handful of yellow grape tomatoes, quartered<\\/li>\\n<li>1 tablespoon olive oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>1 tablespoon salt<\\/li>\\n<li>2 tablespoons red pepper flakes<\\/li>\\n<li>1 tablespoon Italian seasoning<\\/li>\\n<li>1 jar Trader Joe\'s plain marinara<\\/li>\\n<\\/ul>\\n<p>Chicken:<\\/p>\\n<ul>\\n<li>3 chicken breasts<\\/li>\\n<li>2 eggs<\\/li>\\n<li>3 cups all-purpose flour<\\/li>\\n<li>4 cups breadcrumbs<\\/li>\\n<li>1 tablespoon parsley<\\/li>\\n<li>2 tablespoons salt<\\/li>\\n<li>1\\/2 cup vegetable oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>6 slices of mozzarella <\\/li>\\n<\\/ul>\",\"directions\":\"<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.<\\/p>\\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.<\\/p>\\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.<\\/p>\",\"tags\":[\"dinner\"]}',NULL,NULL,NULL),(56,57,'recipes','3','{\"id\":\"3\",\"created_on\":\"2020-10-04 23:49:08\",\"modified_on\":\"2020-10-04 23:49:08\",\"name\":\"Nutella Butter and Banana Cream Cheese Stuffed French Toast\",\"description\":\"Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.\",\"ingredients\":\"<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">4 pieces of thickly sliced bread<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 tablespoon cinnamon<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 teaspoons of vanilla extract<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup Nutella<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">8oz whipped cream cheese<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 banana<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 teapsoon confectioner sugar<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">4 tablespoons butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">Cooking spray<\\/li>\\n<\\/ul>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"]}','{\"name\":\"Nutella Butter and Banana Cream Cheese Stuffed French Toast\",\"description\":\"Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.\",\"ingredients\":\"<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">4 pieces of thickly sliced bread<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 tablespoon cinnamon<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 teaspoons of vanilla extract<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup Nutella<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">8oz whipped cream cheese<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 banana<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 teapsoon confectioner sugar<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">4 tablespoons butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">Cooking spray<\\/li>\\n<\\/ul>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"]}',NULL,NULL,NULL),(57,58,'directus_fields','182','{\"id\":\"182\",\"collection\":\"recipes\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"options\":{\"crop\":true,\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[],\"allowDelete\":false},\"locked\":false,\"validation\":null,\"required\":false,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":null,\"width\":\"full\",\"group\":null,\"note\":null,\"translation\":[]}','{\"collection\":\"recipes\",\"field\":\"image\",\"type\":\"file\",\"interface\":\"file\",\"required\":false,\"sort\":null,\"note\":null,\"hidden_detail\":false,\"hidden_browse\":false,\"options\":{\"crop\":true,\"viewType\":\"cards\",\"viewOptions\":{\"title\":\"title\",\"subtitle\":\"type\",\"content\":\"description\",\"src\":\"data\"},\"viewQuery\":[],\"filters\":[],\"allowDelete\":false},\"id\":null,\"readonly\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(58,59,'directus_files','1','{\"id\":\"1\",\"storage\":\"local\",\"private_hash\":\"dzif8aihgb48c4go\",\"filename_disk\":\"ae3e5928-b3d1-49df-9bd3-87647ae00668.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.00 PM.png\",\"title\":\"Screen Shot 2020 10 04 At 9.02.00 Pm\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 01:02:33\",\"charset\":\"\",\"filesize\":\"666260\",\"width\":\"680\",\"height\":\"556\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"f0ca4eba335a32929092dd344e62741d\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/ae3e5928-b3d1-49df-9bd3-87647ae00668.png\",\"url\":\"\\/uploads\\/_\\/originals\\/ae3e5928-b3d1-49df-9bd3-87647ae00668.png\",\"asset_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/dzif8aihgb48c4go?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/dzif8aihgb48c4go?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"ae3e5928-b3d1-49df-9bd3-87647ae00668.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.00 PM.png\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 01:02:33\",\"type\":\"image\\/png\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":666260,\"width\":680,\"height\":556,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"f0ca4eba335a32929092dd344e62741d\",\"duration\":0,\"title\":\"Screen Shot 2020 10 04 At 9.02.00 Pm\",\"private_hash\":\"dzif8aihgb48c4go\"}',NULL,NULL,NULL),(59,60,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 01:02:37\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">Batter:<\\/span><\\/div>\\n<div>\\n<ul>\\n<li>1 cup all-purpose flour<\\/li>\\n<li>2 eggs<\\/li>\\n<li>1\\/2 cup of milk<\\/li>\\n<li>1\\/2 cup of water<\\/li>\\n<li>1\\/4 teaspoon of salt<\\/li>\\n<li>2 tablespoons melted butter<\\/li>\\n<li>2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<p>For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/p>\\n<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"1\"}','{\"image\":1}',NULL,NULL,NULL),(60,61,'directus_files','2','{\"id\":\"2\",\"storage\":\"local\",\"private_hash\":\"duso2iifihsgkskw\",\"filename_disk\":\"a78a216a-e1cb-490a-ba95-a495c8fc6724.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.13 PM.png\",\"title\":\"Screen Shot 2020 10 04 At 9.02.13 Pm\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 01:02:52\",\"charset\":\"\",\"filesize\":\"839856\",\"width\":\"678\",\"height\":\"544\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"e73bd356f3513f306824652c1bb49347\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/a78a216a-e1cb-490a-ba95-a495c8fc6724.png\",\"url\":\"\\/uploads\\/_\\/originals\\/a78a216a-e1cb-490a-ba95-a495c8fc6724.png\",\"asset_url\":\"\\/_\\/assets\\/duso2iifihsgkskw\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/duso2iifihsgkskw?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/duso2iifihsgkskw?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"a78a216a-e1cb-490a-ba95-a495c8fc6724.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.13 PM.png\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 01:02:52\",\"type\":\"image\\/png\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":839856,\"width\":678,\"height\":544,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"e73bd356f3513f306824652c1bb49347\",\"duration\":0,\"title\":\"Screen Shot 2020 10 04 At 9.02.13 Pm\",\"private_hash\":\"duso2iifihsgkskw\"}',NULL,NULL,NULL),(61,62,'recipes','2','{\"id\":\"2\",\"created_on\":\"2020-10-04 23:48:13\",\"modified_on\":\"2020-10-05 01:02:54\",\"name\":\"Chicken Siciliano\",\"description\":\"Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.\",\"ingredients\":\"<p>Sauce:<\\/p>\\n<ul>\\n<li>1\\/2 green bell pepper, finely diced<\\/li>\\n<li>1 white onion, chopped<\\/li>\\n<li>4\\/5 jar hot cherry peppers<\\/li>\\n<li>1 can diced tomatoes with green chilis<\\/li>\\n<li>1 handful of yellow grape tomatoes, quartered<\\/li>\\n<li>1 tablespoon olive oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>1 tablespoon salt<\\/li>\\n<li>2 tablespoons red pepper flakes<\\/li>\\n<li>1 tablespoon Italian seasoning<\\/li>\\n<li>1 jar Trader Joe\'s plain marinara<\\/li>\\n<\\/ul>\\n<p>Chicken:<\\/p>\\n<ul>\\n<li>3 chicken breasts<\\/li>\\n<li>2 eggs<\\/li>\\n<li>3 cups all-purpose flour<\\/li>\\n<li>4 cups breadcrumbs<\\/li>\\n<li>1 tablespoon parsley<\\/li>\\n<li>2 tablespoons salt<\\/li>\\n<li>1\\/2 cup vegetable oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>6 slices of mozzarella <\\/li>\\n<\\/ul>\",\"directions\":\"<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.<\\/p>\\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.<\\/p>\\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.<\\/p>\",\"tags\":[\"dinner\"],\"image\":\"2\"}','{\"image\":2}',NULL,NULL,NULL),(62,63,'directus_files','3','{\"id\":\"3\",\"storage\":\"local\",\"private_hash\":\"l2e8xb1nyxsgo8w8\",\"filename_disk\":\"9e6f0b58-6cfa-4232-bb6a-0bcca089e09b.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.21 PM.png\",\"title\":\"Screen Shot 2020 10 04 At 9.02.21 Pm\",\"type\":\"image\\/png\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 01:03:07\",\"charset\":\"\",\"filesize\":\"754258\",\"width\":\"682\",\"height\":\"650\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"4ea98f966e52688215d165b5ef25cef2\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/9e6f0b58-6cfa-4232-bb6a-0bcca089e09b.png\",\"url\":\"\\/uploads\\/_\\/originals\\/9e6f0b58-6cfa-4232-bb6a-0bcca089e09b.png\",\"asset_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/l2e8xb1nyxsgo8w8?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"9e6f0b58-6cfa-4232-bb6a-0bcca089e09b.png\",\"filename_download\":\"Screen Shot 2020-10-04 at 9.02.21 PM.png\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 01:03:07\",\"type\":\"image\\/png\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":754258,\"width\":682,\"height\":650,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"4ea98f966e52688215d165b5ef25cef2\",\"duration\":0,\"title\":\"Screen Shot 2020 10 04 At 9.02.21 Pm\",\"private_hash\":\"l2e8xb1nyxsgo8w8\"}',NULL,NULL,NULL),(63,64,'recipes','3','{\"id\":\"3\",\"created_on\":\"2020-10-04 23:49:08\",\"modified_on\":\"2020-10-05 01:03:11\",\"name\":\"Nutella Butter and Banana Cream Cheese Stuffed French Toast\",\"description\":\"Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.\",\"ingredients\":\"<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">4 pieces of thickly sliced bread<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 tablespoon cinnamon<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 teaspoons of vanilla extract<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup Nutella<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">8oz whipped cream cheese<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 banana<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 teapsoon confectioner sugar<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">4 tablespoons butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">Cooking spray<\\/li>\\n<\\/ul>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"3\"}','{\"image\":3}',NULL,NULL,NULL),(64,65,'directus_permissions','1','{\"id\":\"1\",\"collection\":\"recipes\",\"role\":\"2\",\"status\":null,\"create\":\"none\",\"read\":\"full\",\"update\":\"none\",\"delete\":\"none\",\"comment\":\"none\",\"explain\":\"none\",\"read_field_blacklist\":[],\"write_field_blacklist\":[],\"status_blacklist\":[]}','{\"collection\":\"recipes\",\"role\":2,\"create\":\"none\",\"read\":\"full\"}',NULL,NULL,NULL),(65,66,'directus_roles','2','{\"id\":\"2\",\"name\":\"Public\",\"description\":\"Controls what API data is publicly available without authenticating\",\"ip_whitelist\":[],\"external_id\":null,\"module_listing\":null,\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}]}],\"enforce_2fa\":false}','{\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}]}],\"enforce_2fa\":false,\"module_listing\":null}',NULL,NULL,NULL),(66,67,'directus_permissions','1','{\"id\":\"1\",\"collection\":\"recipes\",\"role\":\"2\",\"status\":null,\"create\":\"none\",\"read\":\"full\",\"update\":\"none\",\"delete\":\"none\",\"comment\":\"read\",\"explain\":\"none\",\"read_field_blacklist\":[],\"write_field_blacklist\":[],\"status_blacklist\":[]}','{\"create\":\"none\",\"update\":\"none\",\"delete\":\"none\",\"comment\":\"read\"}',NULL,NULL,NULL),(67,68,'directus_settings','22','{\"id\":\"22\",\"key\":\"project_name\",\"value\":\"quinnvissak\"}','{\"value\":\"quinnvissak\"}',NULL,NULL,NULL),(68,69,'directus_settings','22','{\"id\":\"22\",\"key\":\"project_name\",\"value\":\"Directus\"}','{\"value\":\"Directus\"}',NULL,NULL,NULL),(69,70,'directus_roles','2','{\"id\":\"2\",\"name\":\"Public\",\"description\":\"Controls what API data is publicly available without authenticating\",\"ip_whitelist\":[],\"external_id\":null,\"module_listing\":null,\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}],\"group_name\":\"Public access\"}],\"enforce_2fa\":false}','{\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}],\"group_name\":\"Public access\"}],\"module_listing\":null}',NULL,NULL,NULL),(70,71,'directus_roles','2','{\"id\":\"2\",\"name\":\"Public\",\"description\":\"Controls what API data is publicly available without authenticating\",\"ip_whitelist\":[],\"external_id\":null,\"module_listing\":null,\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}],\"group_name\":\"Public access\"}],\"enforce_2fa\":false}','{\"collection_listing\":[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}],\"group_name\":\"Public access\"}]}',NULL,NULL,NULL),(71,72,'directus_permissions','1','{\"id\":\"1\",\"collection\":\"recipes\",\"role\":\"2\",\"status\":null,\"create\":\"full\",\"read\":\"full\",\"update\":\"full\",\"delete\":\"full\",\"comment\":\"full\",\"explain\":\"none\",\"read_field_blacklist\":[],\"write_field_blacklist\":[],\"status_blacklist\":[]}','{\"create\":\"full\",\"update\":\"full\",\"delete\":\"full\",\"comment\":\"full\"}',NULL,NULL,NULL),(72,73,'directus_roles','1','{\"id\":\"1\",\"name\":\"Administrator\",\"description\":\"Admins have access to all managed data within the system by default\",\"ip_whitelist\":[],\"external_id\":null,\"module_listing\":null,\"collection_listing\":[{\"newItem\":true,\"group_name\":\"Public access\",\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}]}],\"enforce_2fa\":false}','{\"collection_listing\":[{\"newItem\":true,\"group_name\":\"Public access\",\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}]}]}',NULL,NULL,NULL),(73,74,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 05:10:55\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">Batter:<\\/span><\\/div>\\n<div>\\n<ul>\\n<li>1 cup all-purpose flour<\\/li>\\n<li>2 eggs<\\/li>\\n<li>1\\/2 cup of milk<\\/li>\\n<li>1\\/2 cup of water<\\/li>\\n<li>1\\/4 teaspoon of salt<\\/li>\\n<li>2 tablespoons melted butter<\\/li>\\n<li>2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<p>For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/p>\\n<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":null}','{\"image\":null}',NULL,NULL,NULL),(74,75,'recipes','2','{\"id\":\"2\",\"created_on\":\"2020-10-04 23:48:13\",\"modified_on\":\"2020-10-05 05:11:02\",\"name\":\"Chicken Siciliano\",\"description\":\"Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.\",\"ingredients\":\"<p>Sauce:<\\/p>\\n<ul>\\n<li>1\\/2 green bell pepper, finely diced<\\/li>\\n<li>1 white onion, chopped<\\/li>\\n<li>4\\/5 jar hot cherry peppers<\\/li>\\n<li>1 can diced tomatoes with green chilis<\\/li>\\n<li>1 handful of yellow grape tomatoes, quartered<\\/li>\\n<li>1 tablespoon olive oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>1 tablespoon salt<\\/li>\\n<li>2 tablespoons red pepper flakes<\\/li>\\n<li>1 tablespoon Italian seasoning<\\/li>\\n<li>1 jar Trader Joe\'s plain marinara<\\/li>\\n<\\/ul>\\n<p>Chicken:<\\/p>\\n<ul>\\n<li>3 chicken breasts<\\/li>\\n<li>2 eggs<\\/li>\\n<li>3 cups all-purpose flour<\\/li>\\n<li>4 cups breadcrumbs<\\/li>\\n<li>1 tablespoon parsley<\\/li>\\n<li>2 tablespoons salt<\\/li>\\n<li>1\\/2 cup vegetable oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>6 slices of mozzarella <\\/li>\\n<\\/ul>\",\"directions\":\"<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.<\\/p>\\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.<\\/p>\\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.<\\/p>\",\"tags\":[\"dinner\"],\"image\":null}','{\"image\":null}',NULL,NULL,NULL),(75,76,'recipes','3','{\"id\":\"3\",\"created_on\":\"2020-10-04 23:49:08\",\"modified_on\":\"2020-10-05 05:11:09\",\"name\":\"Nutella Butter and Banana Cream Cheese Stuffed French Toast\",\"description\":\"Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.\",\"ingredients\":\"<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">4 pieces of thickly sliced bread<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 tablespoon cinnamon<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 teaspoons of vanilla extract<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup Nutella<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">8oz whipped cream cheese<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 banana<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 teapsoon confectioner sugar<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">4 tablespoons butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">Cooking spray<\\/li>\\n<\\/ul>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":null}','{\"image\":null}',NULL,NULL,NULL),(76,80,'directus_files','4','{\"id\":\"4\",\"storage\":\"local\",\"private_hash\":\"knlmt9pts7408s84\",\"filename_disk\":\"6bece9b0-f21b-49a4-81b9-b825babf5c06.jpg\",\"filename_download\":\"00000000008.jpg\",\"title\":\"00000000008\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"71360\",\"width\":\"744\",\"height\":\"596\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"d977897068dc5266565a5f181b946218\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/6bece9b0-f21b-49a4-81b9-b825babf5c06.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/6bece9b0-f21b-49a4-81b9-b825babf5c06.jpg\",\"asset_url\":\"\\/_\\/assets\\/knlmt9pts7408s84\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/knlmt9pts7408s84?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/knlmt9pts7408s84?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"6bece9b0-f21b-49a4-81b9-b825babf5c06.jpg\",\"filename_download\":\"00000000008.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":71360,\"width\":744,\"height\":596,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"d977897068dc5266565a5f181b946218\",\"duration\":0,\"title\":\"00000000008\",\"private_hash\":\"knlmt9pts7408s84\"}',NULL,NULL,NULL),(77,81,'directus_files','5','{\"id\":\"5\",\"storage\":\"local\",\"private_hash\":\"1nglsplu1akg44gs\",\"filename_disk\":\"e422cce2-0d79-4927-8b08-b6a532aa023d.jpg\",\"filename_download\":\"00000000005.jpg\",\"title\":\"00000000005\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"95155\",\"width\":\"930\",\"height\":\"759\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"c8c6bf00e1552ce25fc317099ef5f4cb\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/e422cce2-0d79-4927-8b08-b6a532aa023d.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/e422cce2-0d79-4927-8b08-b6a532aa023d.jpg\",\"asset_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/1nglsplu1akg44gs?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/1nglsplu1akg44gs?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"e422cce2-0d79-4927-8b08-b6a532aa023d.jpg\",\"filename_download\":\"00000000005.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":95155,\"width\":930,\"height\":759,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"c8c6bf00e1552ce25fc317099ef5f4cb\",\"duration\":0,\"title\":\"00000000005\",\"private_hash\":\"1nglsplu1akg44gs\"}',NULL,NULL,NULL),(78,82,'directus_files','6','{\"id\":\"6\",\"storage\":\"local\",\"private_hash\":\"12mw6fwoz7v48sog\",\"filename_disk\":\"ed896970-2e11-49ae-b0aa-df3966b1447b.jpg\",\"filename_download\":\"00000000009.jpg\",\"title\":\"00000000009\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"243548\",\"width\":\"1080\",\"height\":\"1064\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"73fda79e427d79fe87fcbf8092a7b623\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/ed896970-2e11-49ae-b0aa-df3966b1447b.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/ed896970-2e11-49ae-b0aa-df3966b1447b.jpg\",\"asset_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/12mw6fwoz7v48sog?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/12mw6fwoz7v48sog?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"ed896970-2e11-49ae-b0aa-df3966b1447b.jpg\",\"filename_download\":\"00000000009.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":243548,\"width\":1080,\"height\":1064,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"73fda79e427d79fe87fcbf8092a7b623\",\"duration\":0,\"title\":\"00000000009\",\"private_hash\":\"12mw6fwoz7v48sog\"}',NULL,NULL,NULL),(79,83,'directus_files','7','{\"id\":\"7\",\"storage\":\"local\",\"private_hash\":\"28vgbbn7mhhck4gk\",\"filename_disk\":\"09ed4f82-c314-4aac-b77d-a7763953063b.jpg\",\"filename_download\":\"00000000006.jpg\",\"title\":\"00000000006\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"234576\",\"width\":\"1280\",\"height\":\"1023\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"75e59ea78aca3242f4139f3bfa9481cc\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/09ed4f82-c314-4aac-b77d-a7763953063b.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/09ed4f82-c314-4aac-b77d-a7763953063b.jpg\",\"asset_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/28vgbbn7mhhck4gk?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/28vgbbn7mhhck4gk?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"09ed4f82-c314-4aac-b77d-a7763953063b.jpg\",\"filename_download\":\"00000000006.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":234576,\"width\":1280,\"height\":1023,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"75e59ea78aca3242f4139f3bfa9481cc\",\"duration\":0,\"title\":\"00000000006\",\"private_hash\":\"28vgbbn7mhhck4gk\"}',NULL,NULL,NULL),(80,85,'directus_files','8','{\"id\":\"8\",\"storage\":\"local\",\"private_hash\":\"6eb03ocdvg0s008s\",\"filename_disk\":\"5e973f62-c085-4be4-8856-4c16d4eaba68.jpg\",\"filename_download\":\"00000000010.jpg\",\"title\":\"00000000010\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"190867\",\"width\":\"960\",\"height\":\"1280\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"2b89d19ab52f0819dd7f81af103dd9a5\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/5e973f62-c085-4be4-8856-4c16d4eaba68.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/5e973f62-c085-4be4-8856-4c16d4eaba68.jpg\",\"asset_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/6eb03ocdvg0s008s?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/6eb03ocdvg0s008s?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"5e973f62-c085-4be4-8856-4c16d4eaba68.jpg\",\"filename_download\":\"00000000010.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":190867,\"width\":960,\"height\":1280,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"2b89d19ab52f0819dd7f81af103dd9a5\",\"duration\":0,\"title\":\"00000000010\",\"private_hash\":\"6eb03ocdvg0s008s\"}',NULL,NULL,NULL),(81,84,'directus_files','9','{\"id\":\"9\",\"storage\":\"local\",\"private_hash\":\"cpcrx78sdpcgccck\",\"filename_disk\":\"2a22b5c8-70d9-47f2-9d8c-48255d660120.jpg\",\"filename_download\":\"00000000007.jpg\",\"title\":\"00000000007\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:29\",\"charset\":\"\",\"filesize\":\"155313\",\"width\":\"1280\",\"height\":\"1224\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"aa6616fae0441101227887a3502a2705\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/2a22b5c8-70d9-47f2-9d8c-48255d660120.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/2a22b5c8-70d9-47f2-9d8c-48255d660120.jpg\",\"asset_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cpcrx78sdpcgccck?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/cpcrx78sdpcgccck?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"2a22b5c8-70d9-47f2-9d8c-48255d660120.jpg\",\"filename_download\":\"00000000007.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:29\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":155313,\"width\":1280,\"height\":1224,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"aa6616fae0441101227887a3502a2705\",\"duration\":0,\"title\":\"00000000007\",\"private_hash\":\"cpcrx78sdpcgccck\"}',NULL,NULL,NULL),(82,87,'directus_files','11','{\"id\":\"11\",\"storage\":\"local\",\"private_hash\":\"8vq7yxp7ibcwcgoc\",\"filename_disk\":\"542ecced-ecfe-4464-b3c2-a493d053396f.jpg\",\"filename_download\":\"00000000013.jpg\",\"title\":\"00000000013\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"87868\",\"width\":\"997\",\"height\":\"898\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"e112fc7a5b4c432fcbdb034071c568b0\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/542ecced-ecfe-4464-b3c2-a493d053396f.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/542ecced-ecfe-4464-b3c2-a493d053396f.jpg\",\"asset_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/8vq7yxp7ibcwcgoc?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"542ecced-ecfe-4464-b3c2-a493d053396f.jpg\",\"filename_download\":\"00000000013.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":87868,\"width\":997,\"height\":898,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"e112fc7a5b4c432fcbdb034071c568b0\",\"duration\":0,\"title\":\"00000000013\",\"private_hash\":\"8vq7yxp7ibcwcgoc\"}',NULL,NULL,NULL),(83,86,'directus_files','10','{\"id\":\"10\",\"storage\":\"local\",\"private_hash\":\"cp7oha44teogo848\",\"filename_disk\":\"f308a32d-8cdd-493f-b760-cdd8e7e2d50d.jpg\",\"filename_download\":\"00000000012.jpg\",\"title\":\"00000000012\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"219858\",\"width\":\"1366\",\"height\":\"2049\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[\"INSTANT POT CARNITAS\"],\"checksum\":\"0edaaab4bf52e5731a50a65eed0d6cce\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/f308a32d-8cdd-493f-b760-cdd8e7e2d50d.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/f308a32d-8cdd-493f-b760-cdd8e7e2d50d.jpg\",\"asset_url\":\"\\/_\\/assets\\/cp7oha44teogo848\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/cp7oha44teogo848?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/cp7oha44teogo848?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"f308a32d-8cdd-493f-b760-cdd8e7e2d50d.jpg\",\"filename_download\":\"00000000012.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"INSTANT POT CARNITAS\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":219858,\"width\":1366,\"height\":2049,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"0edaaab4bf52e5731a50a65eed0d6cce\",\"duration\":0,\"title\":\"00000000012\",\"private_hash\":\"cp7oha44teogo848\"}',NULL,NULL,NULL),(84,88,'directus_files','12','{\"id\":\"12\",\"storage\":\"local\",\"private_hash\":\"eclrkxzuxdwgkwww\",\"filename_disk\":\"2ae82ef4-3ca7-428b-8075-6e9481f20900.jpg\",\"filename_download\":\"00000000011.jpg\",\"title\":\"00000000011\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"367498\",\"width\":\"1500\",\"height\":\"1125\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"6cee77a8e1a9150cd898b542fcdfadd9\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/2ae82ef4-3ca7-428b-8075-6e9481f20900.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/2ae82ef4-3ca7-428b-8075-6e9481f20900.jpg\",\"asset_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/eclrkxzuxdwgkwww?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/eclrkxzuxdwgkwww?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"2ae82ef4-3ca7-428b-8075-6e9481f20900.jpg\",\"filename_download\":\"00000000011.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":367498,\"width\":1500,\"height\":1125,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"6cee77a8e1a9150cd898b542fcdfadd9\",\"duration\":0,\"title\":\"00000000011\",\"private_hash\":\"eclrkxzuxdwgkwww\"}',NULL,NULL,NULL),(85,89,'directus_files','13','{\"id\":\"13\",\"storage\":\"local\",\"private_hash\":\"ip3uhbcejmgcckw8\",\"filename_disk\":\"c136b0fe-ca3f-46b8-b93a-7efed8489b73.jpg\",\"filename_download\":\"00000000014.jpg\",\"title\":\"00000000014\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"116439\",\"width\":\"1280\",\"height\":\"960\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"fc776faa7ddbc31142d725ec5dfc978e\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/c136b0fe-ca3f-46b8-b93a-7efed8489b73.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/c136b0fe-ca3f-46b8-b93a-7efed8489b73.jpg\",\"asset_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/ip3uhbcejmgcckw8?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/ip3uhbcejmgcckw8?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"c136b0fe-ca3f-46b8-b93a-7efed8489b73.jpg\",\"filename_download\":\"00000000014.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":116439,\"width\":1280,\"height\":960,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"fc776faa7ddbc31142d725ec5dfc978e\",\"duration\":0,\"title\":\"00000000014\",\"private_hash\":\"ip3uhbcejmgcckw8\"}',NULL,NULL,NULL),(86,90,'directus_files','14','{\"id\":\"14\",\"storage\":\"local\",\"private_hash\":\"lj2cyx28gyok8k0c\",\"filename_disk\":\"481dc12a-1bc4-430b-ab48-6c847fc4acf6.jpg\",\"filename_download\":\"00000000016.jpg\",\"title\":\"00000000016\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"170046\",\"width\":\"1280\",\"height\":\"960\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"5f0c4d7d8211c44053bd5a2b7b0696fc\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/481dc12a-1bc4-430b-ab48-6c847fc4acf6.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/481dc12a-1bc4-430b-ab48-6c847fc4acf6.jpg\",\"asset_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/lj2cyx28gyok8k0c?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/lj2cyx28gyok8k0c?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"481dc12a-1bc4-430b-ab48-6c847fc4acf6.jpg\",\"filename_download\":\"00000000016.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":170046,\"width\":1280,\"height\":960,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"5f0c4d7d8211c44053bd5a2b7b0696fc\",\"duration\":0,\"title\":\"00000000016\",\"private_hash\":\"lj2cyx28gyok8k0c\"}',NULL,NULL,NULL),(87,91,'directus_files','15','{\"id\":\"15\",\"storage\":\"local\",\"private_hash\":\"rv3av37i9j4wcoc4\",\"filename_disk\":\"ba4b5970-a757-48e0-8696-3f95815290be.jpg\",\"filename_download\":\"00000000015.jpg\",\"title\":\"00000000015\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"165454\",\"width\":\"1280\",\"height\":\"960\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"2ea911da221512f59b1ffe4c1b38b578\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/ba4b5970-a757-48e0-8696-3f95815290be.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/ba4b5970-a757-48e0-8696-3f95815290be.jpg\",\"asset_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/rv3av37i9j4wcoc4?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/rv3av37i9j4wcoc4?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"ba4b5970-a757-48e0-8696-3f95815290be.jpg\",\"filename_download\":\"00000000015.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":165454,\"width\":1280,\"height\":960,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"2ea911da221512f59b1ffe4c1b38b578\",\"duration\":0,\"title\":\"00000000015\",\"private_hash\":\"rv3av37i9j4wcoc4\"}',NULL,NULL,NULL),(88,92,'directus_files','16','{\"id\":\"16\",\"storage\":\"local\",\"private_hash\":\"tahgf8xtuo00c4oc\",\"filename_disk\":\"cb8338ba-3dcc-4db0-97b3-ef70b432ef4c.jpg\",\"filename_download\":\"00000000017.jpg\",\"title\":\"00000000017\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"97952\",\"width\":\"720\",\"height\":\"592\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"746573ad531c285b328ea9f847399c20\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/cb8338ba-3dcc-4db0-97b3-ef70b432ef4c.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/cb8338ba-3dcc-4db0-97b3-ef70b432ef4c.jpg\",\"asset_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/tahgf8xtuo00c4oc?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/tahgf8xtuo00c4oc?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"cb8338ba-3dcc-4db0-97b3-ef70b432ef4c.jpg\",\"filename_download\":\"00000000017.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":97952,\"width\":720,\"height\":592,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"746573ad531c285b328ea9f847399c20\",\"duration\":0,\"title\":\"00000000017\",\"private_hash\":\"tahgf8xtuo00c4oc\"}',NULL,NULL,NULL),(89,93,'directus_files','17','{\"id\":\"17\",\"storage\":\"local\",\"private_hash\":\"2xyceggt3280kg8g\",\"filename_disk\":\"b6a0fcd4-8ab6-4f92-8148-39f98c462f28.jpg\",\"filename_download\":\"00000000018.jpg\",\"title\":\"00000000018\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"119367\",\"width\":\"954\",\"height\":\"1086\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"e83d2fddc464f52b52fe7aaf49b7a853\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/b6a0fcd4-8ab6-4f92-8148-39f98c462f28.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/b6a0fcd4-8ab6-4f92-8148-39f98c462f28.jpg\",\"asset_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/2xyceggt3280kg8g?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/2xyceggt3280kg8g?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"b6a0fcd4-8ab6-4f92-8148-39f98c462f28.jpg\",\"filename_download\":\"00000000018.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":119367,\"width\":954,\"height\":1086,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"e83d2fddc464f52b52fe7aaf49b7a853\",\"duration\":0,\"title\":\"00000000018\",\"private_hash\":\"2xyceggt3280kg8g\"}',NULL,NULL,NULL),(90,94,'directus_files','18','{\"id\":\"18\",\"storage\":\"local\",\"private_hash\":\"80lru08jcj4sg8cg\",\"filename_disk\":\"4de7f818-afe9-4d00-8ba2-a9314c039290.jpg\",\"filename_download\":\"00000000019.jpg\",\"title\":\"00000000019\",\"type\":\"image\\/jpeg\",\"uploaded_by\":\"1\",\"uploaded_on\":\"2020-10-05 05:11:30\",\"charset\":\"\",\"filesize\":\"185756\",\"width\":\"960\",\"height\":\"995\",\"duration\":\"0\",\"embed\":null,\"folder\":null,\"description\":\"\",\"location\":\"\",\"tags\":[],\"checksum\":\"967f521c38f7852de5ec57b4a767c7f5\",\"metadata\":null,\"data\":{\"full_url\":\"http:\\/\\/localhost:8080\\/uploads\\/_\\/originals\\/4de7f818-afe9-4d00-8ba2-a9314c039290.jpg\",\"url\":\"\\/uploads\\/_\\/originals\\/4de7f818-afe9-4d00-8ba2-a9314c039290.jpg\",\"asset_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg\",\"thumbnails\":[{\"key\":\"directus-small-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-small-crop\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-small-crop\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-small-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-small-contain\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-small-contain\",\"dimension\":\"64x64\",\"width\":64,\"height\":64},{\"key\":\"directus-medium-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-medium-crop\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-medium-crop\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-medium-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-medium-contain\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-medium-contain\",\"dimension\":\"300x300\",\"width\":300,\"height\":300},{\"key\":\"directus-large-crop\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-large-crop\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-large-crop\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"directus-large-contain\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-large-contain\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=directus-large-contain\",\"dimension\":\"800x600\",\"width\":800,\"height\":600},{\"key\":\"thumbnail\",\"url\":\"http:\\/\\/localhost:8080\\/_\\/assets\\/80lru08jcj4sg8cg?key=thumbnail\",\"relative_url\":\"\\/_\\/assets\\/80lru08jcj4sg8cg?key=thumbnail\",\"dimension\":\"200x200\",\"width\":200,\"height\":200}],\"embed\":null}}','{\"filename_disk\":\"4de7f818-afe9-4d00-8ba2-a9314c039290.jpg\",\"filename_download\":\"00000000019.jpg\",\"uploaded_by\":1,\"uploaded_on\":\"2020-10-05 05:11:30\",\"type\":\"image\\/jpeg\",\"tags\":\"\",\"description\":\"\",\"location\":\"\",\"charset\":\"\",\"filesize\":185756,\"width\":960,\"height\":995,\"metadata\":null,\"storage\":\"local\",\"checksum\":\"967f521c38f7852de5ec57b4a767c7f5\",\"duration\":0,\"title\":\"00000000019\",\"private_hash\":\"80lru08jcj4sg8cg\"}',NULL,NULL,NULL),(91,98,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 05:12:34\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">Batter:<\\/span><\\/div>\\n<div>\\n<ul>\\n<li>1 cup all-purpose flour<\\/li>\\n<li>2 eggs<\\/li>\\n<li>1\\/2 cup of milk<\\/li>\\n<li>1\\/2 cup of water<\\/li>\\n<li>1\\/4 teaspoon of salt<\\/li>\\n<li>2 tablespoons melted butter<\\/li>\\n<li>2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<p>For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/p>\\n<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"5\"}','{\"image\":5}',NULL,NULL,NULL),(92,99,'recipes','2','{\"id\":\"2\",\"created_on\":\"2020-10-04 23:48:13\",\"modified_on\":\"2020-10-05 05:12:47\",\"name\":\"Chicken Siciliano\",\"description\":\"Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.\",\"ingredients\":\"<p>Sauce:<\\/p>\\n<ul>\\n<li>1\\/2 green bell pepper, finely diced<\\/li>\\n<li>1 white onion, chopped<\\/li>\\n<li>4\\/5 jar hot cherry peppers<\\/li>\\n<li>1 can diced tomatoes with green chilis<\\/li>\\n<li>1 handful of yellow grape tomatoes, quartered<\\/li>\\n<li>1 tablespoon olive oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>1 tablespoon salt<\\/li>\\n<li>2 tablespoons red pepper flakes<\\/li>\\n<li>1 tablespoon Italian seasoning<\\/li>\\n<li>1 jar Trader Joe\'s plain marinara<\\/li>\\n<\\/ul>\\n<p>Chicken:<\\/p>\\n<ul>\\n<li>3 chicken breasts<\\/li>\\n<li>2 eggs<\\/li>\\n<li>3 cups all-purpose flour<\\/li>\\n<li>4 cups breadcrumbs<\\/li>\\n<li>1 tablespoon parsley<\\/li>\\n<li>2 tablespoons salt<\\/li>\\n<li>1\\/2 cup vegetable oil<\\/li>\\n<li>2 tablespoons butter<\\/li>\\n<li>6 slices of mozzarella <\\/li>\\n<\\/ul>\",\"directions\":\"<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.<\\/p>\\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.<\\/p>\\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.<\\/p>\",\"tags\":[\"dinner\"],\"image\":\"7\"}','{\"image\":7}',NULL,NULL,NULL),(93,100,'recipes','3','{\"id\":\"3\",\"created_on\":\"2020-10-04 23:49:08\",\"modified_on\":\"2020-10-05 05:12:58\",\"name\":\"Nutella Butter and Banana Cream Cheese Stuffed French Toast\",\"description\":\"Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.\",\"ingredients\":\"<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-family: Merriweather, serif; font-size: 16px;\\\">4 pieces of thickly sliced bread<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 tablespoon cinnamon<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 teaspoons of vanilla extract<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup Nutella<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">8oz whipped cream cheese<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 banana<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 teapsoon confectioner sugar<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">4 tablespoons butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">Cooking spray<\\/li>\\n<\\/ul>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"9\"}','{\"image\":9}',NULL,NULL,NULL),(94,101,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 05:14:33\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\">Batter:<\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup all-purpose flour<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/2 cup of milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/2 cup of water<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/4 teaspoon of salt<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 tablespoons melted butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"> <\\/div>\\n<div class=\\\"recipedetails-ingredients-text\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"5\"}','{\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\">Batter:<\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\">1 cup all-purpose flour<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 eggs<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/2 cup of milk<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/2 cup of water<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">1\\/4 teaspoon of salt<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 tablespoons melted butter<\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\">2 tablespoons of sugar (optional)<\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"> <\\/div>\\n<div class=\\\"recipedetails-ingredients-text\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/div>\"}',NULL,NULL,NULL),(95,102,'directus_fields','179','{\"id\":\"179\",\"collection\":\"recipes\",\"field\":\"ingredients\",\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\",\"aligncenter\",\"alignjustify\",\"alignleft\",\"alignnone\",\"alignright\",\"forecolor\",\"backcolor\",\"strikethrough\",\"subscript\",\"superscript\",\"unlink\",\"copy\",\"cut\",\"paste\",\"h4\",\"h5\",\"h6\",\"fontselect\",\"fontsizeselect\",\"indent\",\"outdent\",\"undo\",\"redo\",\"remove\",\"selectall\",\"table\"],\"custom_formats\":null},\"locked\":false,\"validation\":null,\"required\":true,\"readonly\":false,\"hidden_detail\":false,\"hidden_browse\":false,\"sort\":\"4\",\"width\":\"full\",\"group\":null,\"note\":\"\",\"translation\":[]}','{\"sort\":4,\"type\":\"string\",\"interface\":\"wysiwyg\",\"options\":{\"rows\":8,\"serif\":false,\"tinymce_options\":null,\"toolbar\":[\"bold\",\"italic\",\"underline\",\"removeformat\",\"link\",\"bullist\",\"numlist\",\"blockquote\",\"h1\",\"h2\",\"h3\",\"image\",\"media\",\"hr\",\"code\",\"fullscreen\",\"aligncenter\",\"alignjustify\",\"alignleft\",\"alignnone\",\"alignright\",\"forecolor\",\"backcolor\",\"strikethrough\",\"subscript\",\"superscript\",\"unlink\",\"copy\",\"cut\",\"paste\",\"h4\",\"h5\",\"h6\",\"fontselect\",\"fontsizeselect\",\"indent\",\"outdent\",\"undo\",\"redo\",\"remove\",\"selectall\",\"table\"],\"custom_formats\":null},\"readonly\":false,\"required\":true,\"note\":\"\",\"hidden_detail\":false,\"hidden_browse\":false,\"validation\":null,\"width\":\"full\",\"translation\":[]}',NULL,NULL,NULL),(96,103,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 05:16:51\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">Batter:<\\/span><\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1 cup all-purpose flour<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 eggs<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/2 cup of milk<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/2 cup of water<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/4 teaspoon of salt<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 tablespoons melted butter<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 tablespoons of sugar (optional)<\\/span><\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"> <\\/div>\\n<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/span><\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"5\"}','{\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">Batter:<\\/span><\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1 cup all-purpose flour<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 eggs<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/2 cup of milk<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/2 cup of water<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">1\\/4 teaspoon of salt<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 tablespoons melted butter<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">2 tablespoons of sugar (optional)<\\/span><\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"> <\\/div>\\n<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 12pt;\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/span><\\/div>\"}',NULL,NULL,NULL),(97,104,'recipes','1','{\"id\":\"1\",\"created_on\":\"2020-10-04 23:47:17\",\"modified_on\":\"2020-10-05 05:18:14\",\"name\":\"Crepes\",\"description\":\"Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.\",\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">Batter:<\\/span><\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1 cup all-purpose flour<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 eggs<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/2 cup of milk<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/2 cup of water<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/4 teaspoon of salt<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 tablespoons melted butter<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 tablespoons of sugar (optional)<\\/span><\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/span><\\/div>\",\"directions\":\"<main>\\n<div class=\\\"recipedetails-container\\\">\\n<div class=\\\"recipedetails-content-container\\\">\\n<div class=\\\"recipedetails-directions\\\">\\n<div>\\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1\\/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!<\\/p>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/main>\",\"tags\":[\"breakfast\"],\"image\":\"5\"}','{\"ingredients\":\"<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">Batter:<\\/span><\\/div>\\n<ul>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1 cup all-purpose flour<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 eggs<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/2 cup of milk<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/2 cup of water<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">1\\/4 teaspoon of salt<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 tablespoons melted butter<\\/span><\\/li>\\n<li class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">2 tablespoons of sugar (optional)<\\/span><\\/li>\\n<\\/ul>\\n<div class=\\\"recipedetails-ingredients-text\\\"><span style=\\\"font-size: 10pt;\\\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.<\\/span><\\/div>\"}',NULL,NULL,NULL);
/*!40000 ALTER TABLE `directus_revisions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_roles`
--
DROP TABLE IF EXISTS `directus_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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,
`external_id` varchar(255) DEFAULT NULL,
`module_listing` text,
`collection_listing` text,
`enforce_2fa` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_group_name` (`name`),
UNIQUE KEY `idx_roles_external_id` (`external_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_roles`
--
LOCK TABLES `directus_roles` WRITE;
/*!40000 ALTER TABLE `directus_roles` DISABLE KEYS */;
INSERT INTO `directus_roles` VALUES (1,'Administrator','Admins have access to all managed data within the system by default',NULL,NULL,NULL,'[{\"newItem\":true,\"group_name\":\"Public access\",\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}]}]',0),(2,'Public','Controls what API data is publicly available without authenticating',NULL,NULL,NULL,'[{\"newItem\":true,\"collections\":[{\"newItem\":true,\"collection\":\"recipes\"}],\"group_name\":\"Public access\"}]',0);
/*!40000 ALTER TABLE `directus_roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_settings`
--
DROP TABLE IF EXISTS `directus_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_settings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(64) NOT NULL,
`value` text,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_key` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_settings`
--
LOCK TABLES `directus_settings` WRITE;
/*!40000 ALTER TABLE `directus_settings` DISABLE KEYS */;
INSERT INTO `directus_settings` VALUES (1,'project_url',''),(2,'project_logo',''),(3,'project_color','#263238'),(4,'project_foreground',''),(5,'project_background',''),(6,'project_public_note',''),(7,'default_locale',NULL),(8,'telemetry','1'),(9,'default_limit','200'),(10,'sort_null_last','1'),(11,'password_policy',''),(12,'auto_sign_out','10080'),(13,'login_attempts_allowed','25'),(14,'auth_token_ttl','20'),(15,'trusted_proxies',''),(16,'file_mimetype_whitelist',''),(17,'file_naming','uuid'),(18,'asset_url_naming','private_hash'),(19,'youtube_api_key',''),(20,'asset_whitelist','[{\"key\":\"thumbnail\",\"width\":200,\"height\":200,\"fit\":\"contain\",\"quality\":80}]'),(21,'asset_whitelist_system','[{\"key\":\"directus-small-crop\",\"width\":64,\"height\":64,\"fit\":\"crop\",\"quality\":80},{\"key\":\"directus-small-contain\",\"width\":64,\"height\":64,\"fit\":\"contain\",\"quality\":80},{\"key\":\"directus-medium-crop\",\"width\":300,\"height\":300,\"fit\":\"crop\",\"quality\":80},{\"key\":\"directus-medium-contain\",\"width\":300,\"height\":300,\"fit\":\"contain\",\"quality\":80},{\"key\":\"directus-large-crop\",\"width\":800,\"height\":600,\"fit\":\"crop\",\"quality\":80},{\"key\":\"directus-large-contain\",\"width\":800,\"height\":600,\"fit\":\"contain\",\"quality\":80}]'),(22,'project_name','Directus');
/*!40000 ALTER TABLE `directus_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_user_sessions`
--
DROP TABLE IF EXISTS `directus_user_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_user_sessions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user` int(11) unsigned DEFAULT NULL,
`token_type` varchar(255) DEFAULT NULL,
`token` varchar(520) DEFAULT NULL,
`ip_address` varchar(255) DEFAULT NULL,
`user_agent` text,
`created_on` datetime DEFAULT NULL,
`token_expired_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_user_sessions`
--
LOCK TABLES `directus_user_sessions` WRITE;
/*!40000 ALTER TABLE `directus_user_sessions` DISABLE KEYS */;
INSERT INTO `directus_user_sessions` VALUES (1,1,'cookie','1VeakrA1jBflEI4PPDY9qXGd-1','172.19.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','2020-10-04 21:34:42','2020-10-12 05:18:16');
/*!40000 ALTER TABLE `directus_user_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_users`
--
DROP TABLE IF EXISTS `directus_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(16) NOT NULL DEFAULT 'draft',
`role` int(11) DEFAULT NULL,
`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 NULL,
`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,
`theme` varchar(100) DEFAULT 'auto',
`2fa_secret` varchar(100) DEFAULT NULL,
`password_reset_token` varchar(520) 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_users`
--
LOCK TABLES `directus_users` WRITE;
/*!40000 ALTER TABLE `directus_users` DISABLE KEYS */;
INSERT INTO `directus_users` VALUES (1,'active',1,'Admin','User','email@example.com','$2y$10$gChVZmQTK31RH26B7QnMeOrjesVC0rPx9K.GA5Xf3eNWkqLn.6tay','1VeakrA1jBflEI4PPDY9qXGd','UTC','en-US',NULL,NULL,NULL,NULL,1,'2020-10-05 05:18:15','/_/collections/recipes',NULL,'auto',NULL,NULL);
/*!40000 ALTER TABLE `directus_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `directus_webhooks`
--
DROP TABLE IF EXISTS `directus_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directus_webhooks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(16) NOT NULL DEFAULT 'inactive',
`http_action` varchar(255) DEFAULT NULL,
`url` varchar(510) DEFAULT NULL,
`collection` varchar(255) DEFAULT NULL,
`directus_action` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `directus_webhooks`
--
LOCK TABLES `directus_webhooks` WRITE;
/*!40000 ALTER TABLE `directus_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `directus_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `recipes`
--
DROP TABLE IF EXISTS `recipes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `recipes` (
`id` int(15) unsigned NOT NULL AUTO_INCREMENT,
`created_on` datetime DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
`name` varchar(200) NOT NULL,
`description` text,
`ingredients` varchar(2000) NOT NULL,
`directions` varchar(2000) NOT NULL,
`tags` varchar(2000) NOT NULL,
`image` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `recipes`
--
LOCK TABLES `recipes` WRITE;
/*!40000 ALTER TABLE `recipes` DISABLE KEYS */;
INSERT INTO `recipes` VALUES (1,'2020-10-04 23:47:17','2020-10-05 05:18:14','Crepes','Cheap, easy, but most importantly, gourmet without the hassle. Wow your friends with this classic upscale pancake and make them think you\'re a chef. This recipes will serve as the base to any sweet breakfast or savory dinner.','<div class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">Batter:</span></div>\n<ul>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">1 cup all-purpose flour</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">2 eggs</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">1/2 cup of milk</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">1/2 cup of water</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">1/4 teaspoon of salt</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">2 tablespoons melted butter</span></li>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">2 tablespoons of sugar (optional)</span></li>\n</ul>\n<div class=\"recipedetails-ingredients-text\"><span style=\"font-size: 10pt;\">For breakfast crepes, fill with fresh fruit, chocolate chips, powdered sugar, brown sugar, whipped cream, nuetella, cream-cheese frosting, syrup, etc.</span></div>','<main>\n<div class=\"recipedetails-container\">\n<div class=\"recipedetails-content-container\">\n<div class=\"recipedetails-directions\">\n<div>\n<p>Mix flour, salt and sugar in large bowl. Add eggs, milk, water, and melted butter, whisking thoroughly. Pour into a spray-greased pan on medium heat (5-6) using most of a 1/2 cup measuring instrument. Swirl around until a thin layer coats the pan. Allow cook for a couple minutes. Do NOT flip over. Fill with toppings and slowly roll. Plate with care!</p>\n</div>\n</div>\n</div>\n</div>\n</main>','breakfast',5),(2,'2020-10-04 23:48:13','2020-10-05 05:12:47','Chicken Siciliano','Flavor overload. A take on thick, chunky and spicy southern Italian marinara sauce. Amazing flavor that pairs well with chicken or calamari. A great way to flavor jar pasta sauce from the store without crushing tomatoes yourself for hours.','<p>Sauce:</p>\n<ul>\n<li>1/2 green bell pepper, finely diced</li>\n<li>1 white onion, chopped</li>\n<li>4/5 jar hot cherry peppers</li>\n<li>1 can diced tomatoes with green chilis</li>\n<li>1 handful of yellow grape tomatoes, quartered</li>\n<li>1 tablespoon olive oil</li>\n<li>2 tablespoons butter</li>\n<li>1 tablespoon salt</li>\n<li>2 tablespoons red pepper flakes</li>\n<li>1 tablespoon Italian seasoning</li>\n<li>1 jar Trader Joe\'s plain marinara</li>\n</ul>\n<p>Chicken:</p>\n<ul>\n<li>3 chicken breasts</li>\n<li>2 eggs</li>\n<li>3 cups all-purpose flour</li>\n<li>4 cups breadcrumbs</li>\n<li>1 tablespoon parsley</li>\n<li>2 tablespoons salt</li>\n<li>1/2 cup vegetable oil</li>\n<li>2 tablespoons butter</li>\n<li>6 slices of mozzarella </li>\n</ul>','<p>Sautee white onion and green bell pepper in oil and butter until pepper is soft. Add grape tomatoes, hot cherry peppers. Continue to sautee until vegetables congeal into sauce. Add to large pot, add marinara sauce, let simmer.</p>\n<p>Meanwhile, put flour, eggs, breadcrumbs in separate containers, season breadcrumbs with parsley. Halve chicken breasts. Dredge in flour, egg, and coat in breadcrumbs.</p>\n<p>Add vegetable oil to pan, allow time to heat. Fry chicken in pan, adding butter as desired. Move chicken to glass tray (oven-safe). Salt chicken immediately once out of oil. Preheat oven to 425 degrees about halfway through frying. Layer chicken in the tray, pour sauce over top and coat with mozzarella. Bake for 5-10 minutes.</p>','dinner',7),(3,'2020-10-04 23:49:08','2020-10-05 05:12:58','Nutella Butter and Banana Cream Cheese Stuffed French Toast','Flavor overload. The creaminess of the banana cream cheese with the sweetness from the Nutella butter will render you in a food coma for the rest of the day. Don\'t consume if you want to be productive.','<ul>\n<li class=\"recipedetails-ingredients-text\"><span style=\"font-family: Merriweather, serif; font-size: 16px;\">4 pieces of thickly sliced bread</span></li>\n<li class=\"recipedetails-ingredients-text\">1 cup milk</li>\n<li class=\"recipedetails-ingredients-text\">2 eggs</li>\n<li class=\"recipedetails-ingredients-text\">1 tablespoon cinnamon</li>\n<li class=\"recipedetails-ingredients-text\">2 teaspoons of vanilla extract</li>\n<li class=\"recipedetails-ingredients-text\">1 cup Nutella</li>\n<li class=\"recipedetails-ingredients-text\">8oz whipped cream cheese</li>\n<li class=\"recipedetails-ingredients-text\">1 banana</li>\n<li class=\"recipedetails-ingredients-text\">1 teapsoon confectioner sugar</li>\n<li class=\"recipedetails-ingredients-text\">4 tablespoons butter</li>\n<li class=\"recipedetails-ingredients-text\">Cooking spray</li>\n</ul>','<main>\n<div class=\"recipedetails-container\">\n<div class=\"recipedetails-content-container\">\n<div class=\"recipedetails-directions\">\n<div>\n<p>Mash the banana and mix with the cream cheese and 1 teapsoon of vanilla extract thoroughly. Cut the pieces of bread open and stuff with the cream cheese mixture. Dip in mixture of egg, milk, vanilla extract and cinnamon. Fry and top with warm Nutella and butter mixture.</p>\n</div>\n</div>\n</div>\n</div>\n</main>','breakfast',9);
/*!40000 ALTER TABLE `recipes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-10-05 5:26:53