Properly call the migrate function from the cli
continuous-integration/drone/push Build is failing Details

This commit is contained in:
konrad 2019-03-25 21:07:06 +01:00
parent ef6377f2ae
commit 9de5787b00
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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)
},
}