Add resources data

This commit is contained in:
Josiah Dahl 2017-08-06 23:01:36 -07:00
parent a2cf22d426
commit 2817f3591b

View File

@ -0,0 +1,26 @@
---
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