Dan Kochetov

Results 66 comments of Dan Kochetov

@MaksymSimonov please provide a code sample

@MaksymSimonov I think this was fixed in the latest version, please test

If you check the `column` type, you'll see that it is `IndexColumn`, which is an alias for `AnySQLiteColumn | SQL`. That's because you can make indexes on SQL expressions, not...

Didn't know that! Thanks, will put it on the roadamp.

I've looked through the MySQL docs, and if I understood correctly, `match` and `against` are parts of a single expression: [MATCH (col1,col2,...) AGAINST (expr [search_modifier])](https://dev.mysql.com/doc/refman/8.0/en/fulltext-search.html#function_match). So I feel like it...

@ryoid Not sure what might cause it. If you could provide a simple reproduction repo, it would really help.

Could you provide a reproduction? It's hard to investigate this without any specifics about your project.

Yes, the ORM website is currently in development.

If you're talking about the `bytea` column type (which I believe represents the binary data in Postgres), It's not added yet. However, you can workaround that by creating a custom...

@mppub I'm a bit confused. Initially you said that you need to put the tables into different schemas for different customers, but the solution you came up with in the...