Skip to content

Commit d361a2f

Browse files
committed
Removed space
1 parent b3146d6 commit d361a2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/javawebstack/orm/migration/AutoMigrator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private static void migrateTable(SQLPool pool, TableInfo info, boolean tableExis
6363
sb.append('(')
6464
.append(parameterTypes)
6565
.append(')');
66-
sb.append(info.isNotNull(fieldName) ? " NOT NULL" : " NULL");
66+
sb.append(info.isNotNull(fieldName) ? " NOT NULL" : " NULL");
6767
if (info.isAutoIncrement() && info.getIdField().equals(fieldName))
6868
sb.append(" AUTO_INCREMENT");
6969
if (columnKeys.containsKey(columnName)) {

0 commit comments

Comments
 (0)