From eef20a33b9bdaef10d19ff2091027e2d492a52c8 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sat, 14 Aug 2021 00:07:52 +0800 Subject: [PATCH] Fix space --- dialects/postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialects/postgres.go b/dialects/postgres.go index b46fb711..0ff7d875 100644 --- a/dialects/postgres.go +++ b/dialects/postgres.go @@ -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(" (")