now bank accounts exist.

This commit is contained in:
Bryce Covert
2018-05-14 09:48:44 -07:00
parent bbd9f00f30
commit 70766c6d4b
6 changed files with 34 additions and 6 deletions

View File

@@ -26,7 +26,13 @@
:company
{:fields {:id {:type 'Int}
:name {:type 'String}
:email {:type 'String}}}
:email {:type 'String}
:bank_accounts {:type '(list :bank_account)}}}
:bank_account
{:fields {:id {:type 'Int}
:number {:type 'String}
:check_number {:type 'Int}}}
:vendor
{:fields {:id {:type 'Int}
:name {:type 'String}