Skip to content

Commit

Permalink
fix: change tables prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aliothmoon committed Jan 7, 2025
1 parent 07bc749 commit 83ceec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/model/entity/entities.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.ktorm.schema.datetime
import org.ktorm.schema.int
import org.ktorm.schema.varchar

object CDK : Table<Nothing>("mwf_cdk") {
object CDK : Table<Nothing>("mirrorc_cdk") {
val key = varchar("key").primaryKey()
val specificationId = varchar("specification_id")
val type = varchar("type")
Expand All @@ -14,7 +14,7 @@ object CDK : Table<Nothing>("mwf_cdk") {
val createdAt = datetime("created_at")
}

object OperationLog : Table<Nothing>("mwf_operation_log") {
object OperationLog : Table<Nothing>("mirrorc_operation_log") {
val id = int("id").primaryKey()
val cdk = varchar("cdk")
val source = varchar("source")
Expand Down

0 comments on commit 83ceec1

Please sign in to comment.