Skip to content

Commit

Permalink
Fix creating unique keys on SQLite
Browse files Browse the repository at this point in the history
  • Loading branch information
buschmann23 committed May 25, 2024
1 parent 0dd15d8 commit f464565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firfuorida/column.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ QString ColumnPrivate::typeString() const
str = QStringLiteral("PRIMARY KEY");
break;
case UniqueKey:
str = QStringLiteral("UNIQUE KEY");
str = QStringLiteral("UNIQUE");
break;
case ForeignKey:
str = QStringLiteral("FOREIGN KEY");
Expand Down

0 comments on commit f464565

Please sign in to comment.