Remove .DS_Store - fix packages yaml

This commit is contained in:
Jonathan
2020-03-12 01:01:01 +01:00
parent 2acd831320
commit 0fcc357d16
3 changed files with 19 additions and 19 deletions
BIN
View File
Binary file not shown.
Binary file not shown.
@@ -1,19 +1,19 @@
#fast_entity:
# tables:
# - { name: 'admin' }
# - { name: 'formation' }
# schema:
# # User
# - { entity: 'admin', property: 'username', type: 'string', length: 255, nullable: true }
# - { entity: 'admin', property: 'password', type: 'string', length: 255, nullable: true }
# - { entity: 'admin', property: 'email', type: 'string', length: 255, nullable: true }
# - { entity: 'admin', property: 'active', type: 'boolean', nullable: true }
# - { entity: 'admin', property: 'created', type: 'datetime', nullable: true }
# - { entity: 'admin', property: 'updated', type: 'datetime', nullable: true }
# # Conference
# - { entity: 'formation', property: 'location', type: 'string', length: 255, nullable: true }
# - { entity: 'formation', property: 'price', type: 'integer', length: 11, nullable: true }
# - { entity: 'formation', property: 'created', type: 'datetime', nullable: true }
# - { entity: 'formation', property: 'updated', type: 'datetime', nullable: true }
# relations:
# - { entityTo: 'admin', entityFrom: 'formation', relation: 'OneToOne' }
fast_entity:
tables:
- { name: 'admin' }
- { name: 'formation' }
schema:
# User
- { entity: 'admin', property: 'username', type: 'string', length: 255, nullable: true }
- { entity: 'admin', property: 'password', type: 'string', length: 255, nullable: true }
- { entity: 'admin', property: 'email', type: 'string', length: 255, nullable: true }
- { entity: 'admin', property: 'active', type: 'boolean', nullable: true }
- { entity: 'admin', property: 'created', type: 'datetime', nullable: true }
- { entity: 'admin', property: 'updated', type: 'datetime', nullable: true }
# Formation
- { entity: 'formation', property: 'location', type: 'string', length: 255, nullable: true }
- { entity: 'formation', property: 'price', type: 'integer', length: 11, nullable: true }
- { entity: 'formation', property: 'created', type: 'datetime', nullable: true }
- { entity: 'formation', property: 'updated', type: 'datetime', nullable: true }
relations:
- { entityTo: 'admin', entityFrom: 'formation', relation: 'OneToOne' }