Skip to content

Commit 4083201

Browse files
committed
fix invalid column definition for BooleanSqlValueConverter
1 parent ed6d1e6 commit 4083201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/sql/converter/src/main/java/me/hsgamer/topper/storage/sql/converter/BooleanSqlValueConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public String[] getSqlColumns() {
2121

2222
@Override
2323
public String[] getSqlColumnDefinitions() {
24-
return new String[]{valueName + " BOOLEAN NOT NULL"};
24+
return new String[]{"BOOLEAN NOT NULL"};
2525
}
2626

2727
@Override

0 commit comments

Comments
 (0)