diff --git a/src/storage/postgres/migration.go b/src/storage/postgres/migration.go index 4002b24..bf0d62d 100644 --- a/src/storage/postgres/migration.go +++ b/src/storage/postgres/migration.go @@ -13,7 +13,7 @@ var maxVersion = int64(len(migrations)) func migrate(db *sql.DB) error { if _, err := db.Exec( - `create table if not exists schema_version (version bigint primary key)` + `create table if not exists schema_version (version bigint primary key)`, ); err != nil { return err }