diff --git a/go/libraries/doltcore/sqle/sqlfmt/schema_fmt.go b/go/libraries/doltcore/sqle/sqlfmt/schema_fmt.go index b636677d6c..cfc9311194 100644 --- a/go/libraries/doltcore/sqle/sqlfmt/schema_fmt.go +++ b/go/libraries/doltcore/sqle/sqlfmt/schema_fmt.go @@ -38,12 +38,12 @@ func GenerateCreateTableIndentedColumnDefinition(col schema.Column) string { return sql.GenerateCreateTableColumnDefinition( &sql.Column{ - Name: col.Name, - Type: col.TypeInfo.ToSqlType(), - Default: defaultVal, - AutoIncrement: col.AutoIncrement, - Nullable: col.IsNullable(), - Comment: col.Comment, + Name: col.Name, + Type: col.TypeInfo.ToSqlType(), + Default: defaultVal, + AutoIncrement: col.AutoIncrement, + Nullable: col.IsNullable(), + Comment: col.Comment, // TODO // Generated: nil, // Virtual: false,