Remove content column from Notes Table
This commit is contained in:
@@ -6,7 +6,6 @@ import me.liuwj.ktorm.schema.*
|
||||
object Notes : Table<Note>("Notes") {
|
||||
val id by int("id").primaryKey().bindTo { it.id }
|
||||
val title by varchar("title").bindTo { it.title }
|
||||
val content by text("content").bindTo { it.content }
|
||||
val user by int("user_id").references(Users) { it.user }
|
||||
val lastViewed by datetime("last_viewed").bindTo { it.lastViewed }
|
||||
}
|
||||
Reference in New Issue
Block a user