forked from ebhomengo/niki
24 lines
516 B
Go
24 lines
516 B
Go
package command
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var up bool
|
|
var down bool
|
|
|
|
var migrateCmd = &cobra.Command{
|
|
Use: "migrate",
|
|
Short: "Run database migrations",
|
|
Long: `This command runs the database migrations for the account service.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
migrate()
|
|
},
|
|
}
|
|
|
|
func migrate() {}
|
|
|
|
func init() {
|
|
migrateCmd.Flags().BoolVar(&up, "up", false, "Run migrations up")
|
|
migrateCmd.Flags().BoolVar(&down, "down", false, "Run migrations down")
|
|
RootCmd.AddCommand(migrateCmd)
|
|
}
|