Alyx
Alyx
That's annoying: - DB2 does not allow nullable columns to have a unique index. - MSSQL does allow nullable unique indexes, but `null` itself can only appear once We'll have...
I think we'll have to postpone this one to v8. I think it's better if we wait until after we've made attributes non-null by default
In MySQL, this query is done using `INSERT ... ON DUPLICATE KEY UPDATE`. I believe we could have a big IF statement for the `updated_at` column that would look like...
Nothing clean as far as I know. Maybe you'll have some change with `Model.upsert`, but I doubt it, hence why I turned this into a feature request
I need to take the time to do a proper review but note that the current implementation modifies its input, which we try to avoid. injectScope should happen after the...
There already is one but I don't know how it works: https://github.com/sequelize/sequelize/blob/main/src/dialects/abstract/query-generator.js#L1705-L1730 > any identifier that crosses that limit should either be aliased or an error should be thrown. By...
I'd also like to remove it: - it's only relevant in SELECT queries (I think?), no need to run the whole test suite just for that - it's only running...
While the querystring is not included in the test, it can still be read by `srcset-loader`. i.e. this still works: `import pic3 from 'srcset-loader!./picture.png?sizes=500w';` A potential solution could be to...
This works for me as a temporary fix: https://gist.github.com/Ephys/0a7d01539a6fdc14042a14a2b848e379