First commit
This commit is contained in:
10
src/main/kotlin/tables/Pronunciation.kt
Normal file
10
src/main/kotlin/tables/Pronunciation.kt
Normal file
@@ -0,0 +1,10 @@
|
||||
package tables
|
||||
|
||||
import org.jetbrains.exposed.dao.id.IntIdTable
|
||||
|
||||
object Pronunciations : IntIdTable() {
|
||||
val typeId = reference("type_id",PronunciationTypes)
|
||||
|
||||
val ipa = varchar("ipa", 255).nullable()
|
||||
val filename = varchar("filename", 255).nullable()
|
||||
}
|
||||
Reference in New Issue
Block a user