-
I was wondering if you could add an option to simply queue up the tables and indexes that need to be created, but NOT create them as the models initialize.
It would be preferable to me to manually tr…
-
I just discovered that if I have a nested object on my model the object property itself becomes required. I don't think this is very consistent with other model behaviors.
Example:
```
var Foo = thi…
-
I just discovered what I believe is a bug. If you do the following:
```
Post.belongsTo(User, 'owner', 'userId', 'id');
post = new Post({ title: "Hello", owner: { name: 'foo' } } );
post.saveAll();
//…
-
Right now I get the following error when attempting to use `.saveAll()` on a new model instance where I have not included the relations:
```
Possibly unhandled TypeError: Cannot read property 'length…
-
I was trying to do some log processing, so document structure varies. There seems to be some problem when joining. I am doing something like this:
var stream1 = Log.between()
var stream2 = Log.between…
-
Hi,
First of all, thanks for this work, very useful !
I think it would be nice if we could declare some ID generators and then map them to some classes/tables so they would be used on the fly to gene…
-
This is a bit like this:
http://thinky.io/documentation/api/model/#define
But I was thinking of a couple of useful features / enhancements.
For one, if I could provide something more like an Object…
-
I'm having trouble understand how `saveAll()` is supposed to work.
It seems as though it is attempting to create the objects I specify, even though I am specifying existing values, and simply want t…
-
I can't seem to create an object than contains a null value for any key. I'm using the default `enforce` settings. Am I missing something?
-
Because many control flow libraries (async, etc) rely on the current node control flow, which is based on the callback(err, data) pattern, it would be nice if most methods supported this... even if it…