DB Migrations #67

Merged
konrad merged 44 commits from feature/migrations into master 2019-03-29 17:54:36 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9de5787b00 - Show all commits

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