Andrey.Tarashevskiy
Andrey.Tarashevskiy
I'll close it just after all tests will pass on CI. The fix is on the way.
I think you can try to declare your own `CountOver` expression and check what it will return: ```kotlin class CountOver(val partitionBy: Expression? = null, val orderBy: Pair? = null) :...
@Komdosh , did you remove foreign key constraint as well? Or you just remove mapping to the column?
Looks like the problem is that Exposed located foreign key and can't find corresponding column in mapping. I'll take a look how it can be solved.
Should be solved in the next release
@xiaoliang-cn looks like you are trying to serialize UserTable with gson. Can you show the complete stacktrace to confirm it?
Also, please check [Join part](https://github.com/JetBrains/Exposed/wiki/DSL#join) of Wiki, full `join` syntax can help you.
@xJoeWoo , as I can see from MySQL documentation `ON UPDATE` clause could be used even without `DEFAULT` part (what could be hard to implement with current `Column.defaultExpression()` approach. But...
I guess it's a little bit out of the scope of Exposed as orm/dao framework. We have functionality to automatically add columns and indices (and log differences which can't be...
@Wnzebkhan , there is no updates or plans to implement it in the near future, only if someone will provide a PR. At the moment you can use `SchemaUtils.createMissingTablesAndColumns()`, please...