Skip to content

Commit d8cb533

Browse files
committed
Remove autoincrement from Symbols model
1 parent 8b766df commit d8cb533

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/kotlin/org/javacs/kt/index/SymbolIndex.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import org.jetbrains.exposed.sql.Database
1313
import org.jetbrains.exposed.sql.insert
1414

1515
private object Symbols : Table() {
16-
val fqName = varchar("fqname", length = 255).autoIncrement().primaryKey()
16+
val fqName = varchar("fqname", length = 255).primaryKey()
1717
val shortName = varchar("shortname", length = 127)
1818
val kind = integer("kind")
1919
}

0 commit comments

Comments
 (0)