Add model options

This commit is contained in:
Ritchie Martori 2013-04-19 09:51:06 -07:00
parent 7b9d7b28a9
commit 9e867f63b3
1 changed files with 9 additions and 0 deletions

9
node_modules/model/lib/model.js generated vendored
View File

@ -55,6 +55,15 @@ Model.dependencies = {
'data-source': 'data-source'
};
/**
* Options.
*/
Model.options = {
'name': {type: 'string'},
'properties': {type: 'array'}
}
/**
* Build a jugglingdb compatibile schema definition from property array.
*/