Skip to content

Commit

Permalink
Removed reserved keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Aug 25, 2024
1 parent f1b831b commit fd80662
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class MySQLPersistentDataHandler(
}

private abstract inner class KeyTable<T>(name: String) : ProfileTable(name) {
val key = varchar("key", 128)
val key = varchar("dataKey", 128)
abstract val value: Column<T>

override val primaryKey = PrimaryKey(uuid, key)
Expand All @@ -230,7 +230,7 @@ class MySQLPersistentDataHandler(
}

private abstract inner class ListKeyTable<T>(name: String) : ProfileTable(name) {
val key = varchar("key", 128)
val key = varchar("dataKey", 128)
val index = integer("index")
abstract val value: Column<T>

Expand Down

0 comments on commit fd80662

Please sign in to comment.