fix quotes
This commit is contained in:
parent
445473ec9d
commit
95f8f79171
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ func createSchema(dest *sql.DB) error {
|
|||
_, err = dest.Exec(`
|
||||
INSERT INTO flyway_schema_history
|
||||
(installed_rank, version, description, type, script, checksum, installed_by, execution_time, success)
|
||||
VALUES ($1, $2, $3, "SQL", $4, $5, current_user, 0, true)
|
||||
VALUES ($1, $2, $3, 'SQL', $4, $5, current_user, 0, true)
|
||||
`,
|
||||
migration.InstalledRank, migration.Version, migration.Description, migration.Script, migration.Checksum,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue