chore: move classes

This commit is contained in:
2024-09-03 09:57:18 +08:00
parent 2633135ac9
commit bceefe1d41
5 files changed
+11 -11

No files matched your search

@@ -0,0 +1,19 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/8/30
*/
package cn.rtast.fancybot.entity.db
import org.jetbrains.exposed.sql.Table
object SignTable : Table("sign") {
val id = integer("id").autoIncrement()
val userId = long("userId").uniqueIndex()
val timestamp = long("timestamp")
val point = long("point")
override val primaryKey = PrimaryKey(id)
}