Does exposed (DAO) support inheritance of tables? ...
# exposed
v
Does exposed (DAO) support inheritance of tables? I'm hoping for
Copy code
abstract class BaseTable : LongIdTable() {
val createdOn = datetime("createdOn")
val lastUpdatedOn = datetime("createdOn")
}

object Page : BaseTable() {
val name = varchar("name",255)
.... *etc*
Ah, possibly mentioned in issue 247 on Github https://github.com/JetBrains/Exposed/issues/247
126 Views