diff options
Diffstat (limited to 'vendor/github.com/uptrace/bun/schema/tables.go')
-rw-r--r-- | vendor/github.com/uptrace/bun/schema/tables.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/uptrace/bun/schema/tables.go b/vendor/github.com/uptrace/bun/schema/tables.go index 58c45cbee..e215e499d 100644 --- a/vendor/github.com/uptrace/bun/schema/tables.go +++ b/vendor/github.com/uptrace/bun/schema/tables.go @@ -72,7 +72,7 @@ func (t *Tables) InProgress(typ reflect.Type) *Table { table := new(Table) t.inProgress[typ] = table - table.init(t.dialect, typ, false) + table.init(t.dialect, typ) return table } |