mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2025-01-05 02:25:29 +03:00
434e7f6b2c
Finialized testing the changes to the resources command.
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
|