From 9de5787b00c07bebdd439fc24fccce83e4533725 Mon Sep 17 00:00:00 2001 From: konrad Date: Mon, 25 Mar 2019 21:07:06 +0100 Subject: [PATCH] Properly call the migrate function from the cli --- pkg/cmd/migrate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/migrate.go b/pkg/cmd/migrate.go index 79cfda698..fcbb4c16a 100644 --- a/pkg/cmd/migrate.go +++ b/pkg/cmd/migrate.go @@ -29,6 +29,6 @@ var migrateCmd = &cobra.Command{ Use: "migrate", Short: "Run all database migrations which didn't already run.", Run: func(cmd *cobra.Command, args []string) { - migration.Migrate() + migration.Migrate(nil) }, }