Alyx

Results 453 comments of Alyx

Feel free :) My only note is, because of the support table (does any other dialect than postgres support this?) I think this shouldn't be the default & add a...

The new decorator proposal [has reached stage 3](https://github.com/babel/proposals/issues/81#issuecomment-1081019813), we can consider implementing experimental support if we don't need the metadata part of it.

That's a strange decision by next, recursive imports should work as long as the export is not used during the initial module execution I don't see why we couldn't include...

It's always the hook test that fails 😅

Just FYI but I will take this on *eventually*, but not before I've eliminated some of my current backlog. I don't consider it to be a very high priority

> So if a table is now called archive.users they need to update the name to users and set the schema to archive? Can you provide an example query to...

I think the best way to support custom operators is going to be by implementing https://github.com/sequelize/sequelize/issues/14299 & https://github.com/sequelize/sequelize/issues/14297. Once they are ready, a custom operator could be implemented like this:...

They are here https://sequelize.org/api/v7/classes/queryinterface#createTable

The type of attributes in createTable is `ModelAttributes`, which is an object where the key is the name of the attribute & the value is either a [`DataType`](https://sequelize.org/docs/v7/other-topics/other-data-types/) or this...

The first step would be to determine what the API would look like. We need to be able to specify multiple columns & tuples. The main issue is that `[]`...