lumen-generators/lumen-test/tests/_data/ResourcesTest.yml
Josiah Dahl 434e7f6b2c Testing Resources Command
Finialized testing the changes to the resources command.
2017-08-06 09:36:57 -07:00

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