fix: 重複したindexを削除

This commit is contained in:
usbharu 2023-04-26 17:10:19 +09:00
parent fb6bf63c11
commit da5beb01db
1 changed files with 1 additions and 1 deletions

View File

@ -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)