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() }