mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2025-01-06 19:15:30 +03:00
27 lines
434 B
YAML
27 lines
434 B
YAML
|
---
|
||
|
Author:
|
||
|
belongsTo: book
|
||
|
fields:
|
||
|
name:
|
||
|
schema: string
|
||
|
tags: fillable
|
||
|
Book:
|
||
|
belongsTo: librarys # Yes I know it's misspelled...
|
||
|
hasOne: author
|
||
|
fields:
|
||
|
title:
|
||
|
schema: string
|
||
|
tags: fillable
|
||
|
published:
|
||
|
schema: date
|
||
|
tags: fillable
|
||
|
Library:
|
||
|
hasMany: books
|
||
|
fields:
|
||
|
name:
|
||
|
schema: string
|
||
|
tags: fillable
|
||
|
address:
|
||
|
schema: string
|
||
|
tags: fillable
|