Alyx

Results 453 comments of Alyx

@j-refs So sorry, I did not see your latest message The SQLite package has been split to its own package (https://github.com/sequelize/sequelize/tree/main/packages). You can fork the repository, create a new package...

Sorry for the late response. Unfortunately yes, integration tests do need to pass in our CI. We have accepted dialects that did not have integration tests in the past and...

If the issue comes from the very frequent dropping and creation of tables before and after each test, we could look into optimizing that. This would be a huge task,...

If you want to give it a try, removing this forced reset of the database and placing it in each test suite instead would be a good start (https://github.com/sequelize/sequelize/blob/main/test/integration/support.js#L23-L25). That...

PR #17078 adds a new version of manual cascade that, in theory, fixes the core issues with the old implementation. This new version is only available in the method rewrite...

If you use ESM, you can't set a path as the value for the `models` property. You need to provide the models directly, like this: ```ts import { AddressListEntry }...

If you want you can also copy the Sequelize 7 `importModels` utility function: https://github.com/sequelize/sequelize/blob/9ada1b20b080cf727016e9acc02b6745f116a3ce/packages/core/src/import-models.ts I'll move this issue to the sequelize-typescript repo as for Sequelize 6, that's where I'd expect...

There are plans for supporting the new decorators format (sometimes after Sequelize 7 is stable). When we imported the decorators in `@sequelize/core`, we put all decorators that use the old...

To add to this, very sorry for all the conflicts I've been introducing recently

I'm all for supporting `readOnly: true` but it wouldn't be as a `STORED` column. From what I gather, [`STORED`](https://www.postgresql.org/docs/12/ddl-generated-columns.html) can only be used in generated columns. I think `STORED` would...