Aleksander Barszczewski

Results 37 comments of Aleksander Barszczewski

Thanks, I managed to install master. Hovever I still can't make it work according to my issue: ``` Post.hasMany(PostTranslation); q = ' SELECT "Posts".*, "PostTranslations"."id" AS "PostTranslations.id", "PostTranslations"."language" AS "PostTranslations.language",...

Hmm, for now I cant make it work :(. I looked up queryOptions that are passed when normal Post.findAll is executed and it's pretty much the same as queryOptions after...

I am trying still trying to make it work. For now I get strange error which appears only on `2.0.0-dev11` and `master` and it works fine on `1.7.5` - For...

I solved the unhandledException error - it was caused because I manually set up getter called `postTranslations`... Anyway I gave up trying to force Sequelize to parse results correctly -...

Perfect, it works :) Thanks For me this is enough and you can close this issue if you want.

Something what I don't understand is why `createConnection()` reads migration files - the method itself does not need them AFAIK. They are only needed by migration commands. My current workaround...

In fact instance.save() also does not provide informations if record has been actually updated. Also I was wondering why `Model.destroy` (bulk destroy) returns `(rows)` from promise while `Model.update` returns `([rows])`...

@mickhansen maybe it would be possible to make `instance.save()` to return `(instance, saved)` where `saved` would be a boolean indicating if row has been updated or not? For example: ```...

@janmeier @mickhansen So maybe yet flag in model instance despite race probability? If someone would update instance just once, then it would still be useful. The use case for me...

@rainabba `arguments` is a javascript reserved keyword and it "contains" array (well not exactly array, let's call it object) of all arguments passed to the function.