This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
snapshot.yaml
530 lines (530 loc) · 12.7 KB
/
snapshot.yaml
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
version: 1
directus: 9.21.2
collections:
- collection: articles
meta:
accountability: all
archive_app_filter: true
archive_field: status
archive_value: archived
collapse: open
collection: articles
color: null
display_template: null
group: null
hidden: false
icon: article
item_duplication_fields: null
note: null
singleton: false
sort: null
sort_field: sort
translations: null
unarchive_value: draft
schema:
name: articles
sql: >-
CREATE TABLE "articles" (`author` char(36) NULL DEFAULT null, `body`
text NULL DEFAULT null, `cover_image` char(36) NULL DEFAULT null,
`date_created` datetime NULL DEFAULT null, `date_updated` datetime NULL
DEFAULT null, `excerpt` text NULL DEFAULT null, `id` integer PRIMARY KEY
AUTOINCREMENT NOT NULL, `publish_date` datetime NULL DEFAULT null,
`sort` integer NULL DEFAULT null, `status` varchar(255) NOT NULL DEFAULT
'draft', `title` varchar(255) NULL DEFAULT null, CONSTRAINT
`articles_author_foreign` FOREIGN KEY (`author`) REFERENCES
`directus_users` (`id`) ON DELETE SET NULL, CONSTRAINT
`articles_cover_image_foreign` FOREIGN KEY (`cover_image`) REFERENCES
`directus_files` (`id`) ON DELETE SET NULL)
fields:
- collection: articles
field: author
meta:
collection: articles
conditions: null
display: related-values
display_options:
template: "{{first_name}}\_{{last_name}}"
field: author
group: null
hidden: false
interface: select-dropdown-m2o
note: null
options:
template: "{{first_name}}\_{{last_name}}"
readonly: false
required: false
sort: 9
special:
- m2o
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: char
default_value: null
foreign_key_column: id
foreign_key_table: directus_users
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: 36
name: author
numeric_precision: null
numeric_scale: null
table: articles
type: string
- collection: articles
field: body
meta:
collection: articles
conditions: null
display: null
display_options: null
field: body
group: null
hidden: false
interface: input-rich-text-html
note: null
options:
imageToken: null
readonly: false
required: false
sort: 11
special: null
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: text
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: body
numeric_precision: null
numeric_scale: null
table: articles
type: text
- collection: articles
field: cover_image
meta:
collection: articles
conditions: null
display: image
display_options: null
field: cover_image
group: null
hidden: false
interface: file-image
note: null
options: null
readonly: false
required: false
sort: 8
special:
- file
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: char
default_value: null
foreign_key_column: id
foreign_key_table: directus_files
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: 36
name: cover_image
numeric_precision: null
numeric_scale: null
table: articles
type: uuid
- collection: articles
field: date_created
meta:
collection: articles
conditions: null
display: datetime
display_options:
relative: true
field: date_created
group: null
hidden: true
interface: datetime
note: null
options: null
readonly: true
required: false
sort: 3
special:
- cast-timestamp
- date-created
translations: null
validation: null
validation_message: null
width: half
schema:
data_type: datetime
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: date_created
numeric_precision: null
numeric_scale: null
table: articles
type: timestamp
- collection: articles
field: date_updated
meta:
collection: articles
conditions: null
display: datetime
display_options:
relative: true
field: date_updated
group: null
hidden: true
interface: datetime
note: null
options: null
readonly: true
required: false
sort: 4
special:
- cast-timestamp
- date-updated
translations: null
validation: null
validation_message: null
width: half
schema:
data_type: datetime
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: date_updated
numeric_precision: null
numeric_scale: null
table: articles
type: timestamp
- collection: articles
field: excerpt
meta:
collection: articles
conditions: null
display: null
display_options: null
field: excerpt
group: null
hidden: false
interface: input-multiline
note: null
options:
trim: true
readonly: false
required: false
sort: 10
special: null
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: text
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: excerpt
numeric_precision: null
numeric_scale: null
table: articles
type: text
- collection: articles
field: id
meta:
collection: articles
conditions: null
display: null
display_options: null
field: id
group: null
hidden: true
interface: input
note: null
options: null
readonly: true
required: false
sort: 1
special: null
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: integer
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: true
is_generated: false
is_nullable: false
is_primary_key: true
is_unique: false
max_length: null
name: id
numeric_precision: null
numeric_scale: null
table: articles
type: integer
- collection: articles
field: publish_date
meta:
collection: articles
conditions: null
display: datetime
display_options:
format: short
field: publish_date
group: null
hidden: false
interface: datetime
note: null
options: null
readonly: false
required: false
sort: 6
special:
- cast-timestamp
translations: null
validation: null
validation_message: null
width: half
schema:
data_type: datetime
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: publish_date
numeric_precision: null
numeric_scale: null
table: articles
type: timestamp
- collection: articles
field: sort
meta:
collection: articles
conditions: null
display: null
display_options: null
field: sort
group: null
hidden: true
interface: input
note: null
options: null
readonly: false
required: false
sort: 2
special: null
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: integer
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: null
name: sort
numeric_precision: null
numeric_scale: null
table: articles
type: integer
- collection: articles
field: status
meta:
collection: articles
conditions: null
display: labels
display_options:
choices:
- background: '#00C897'
value: published
- background: '#D3DAE4'
value: draft
- background: '#F7971C'
value: archived
showAsDot: true
field: status
group: null
hidden: false
interface: select-dropdown
note: null
options:
choices:
- text: $t:published
value: published
- text: $t:draft
value: draft
- text: $t:archived
value: archived
readonly: false
required: false
sort: 5
special: null
translations: null
validation: null
validation_message: null
width: half
schema:
data_type: varchar
default_value: draft
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: false
is_primary_key: false
is_unique: false
max_length: 255
name: status
numeric_precision: null
numeric_scale: null
table: articles
type: string
- collection: articles
field: title
meta:
collection: articles
conditions: null
display: null
display_options:
bold: true
field: title
group: null
hidden: false
interface: input
note: null
options:
iconLeft: title
readonly: false
required: false
sort: 7
special: null
translations: null
validation: null
validation_message: null
width: full
schema:
data_type: varchar
default_value: null
foreign_key_column: null
foreign_key_table: null
generation_expression: null
has_auto_increment: false
is_generated: false
is_nullable: true
is_primary_key: false
is_unique: false
max_length: 255
name: title
numeric_precision: null
numeric_scale: null
table: articles
type: string
relations:
- collection: articles
field: author
meta:
junction_field: null
many_collection: articles
many_field: author
one_allowed_collections: null
one_collection: directus_users
one_collection_field: null
one_deselect_action: nullify
one_field: null
sort_field: null
related_collection: directus_users
schema:
column: author
constraint_name: null
foreign_key_column: id
foreign_key_table: directus_users
on_delete: SET NULL
on_update: NO ACTION
table: articles
- collection: articles
field: cover_image
meta:
junction_field: null
many_collection: articles
many_field: cover_image
one_allowed_collections: null
one_collection: directus_files
one_collection_field: null
one_deselect_action: nullify
one_field: null
sort_field: null
related_collection: directus_files
schema:
column: cover_image
constraint_name: null
foreign_key_column: id
foreign_key_table: directus_files
on_delete: SET NULL
on_update: NO ACTION
table: articles