Fix space

This commit is contained in:
Lunny Xiao 2021-08-14 00:07:52 +08:00
parent b4cde70a15
commit eef20a33b9
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -972,7 +972,7 @@ func (db *postgres) CreateTableSQL(table *schemas.Table, tableName string) ([]st
quoter := db.Quoter()
var b strings.Builder
b.WriteString("CREATE TABLE IF NOT EXISTS ")
b.WriteString("CREATE TABLE IF NOT EXISTS ")
quoter.QuoteTo(&b, tableName)
b.WriteString(" (")