mirror of https://github.com/usbharu/Hideout.git
fix: 重複したindexを削除
This commit is contained in:
parent
fb6bf63c11
commit
da5beb01db
|
@ -179,7 +179,7 @@ class UserRepository(private val database: Database) : IUserRepository {
|
|||
}
|
||||
|
||||
object Users : Table("users") {
|
||||
val id = long("id").uniqueIndex()
|
||||
val id = long("id")
|
||||
val name = varchar("name", length = 64)
|
||||
val domain = varchar("domain", length = 255)
|
||||
val screenName = varchar("screen_name", length = 64)
|
||||
|
|
Loading…
Reference in New Issue