mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package commands
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/hasura/graphql-engine/cli"
|
|
mig "github.com/hasura/graphql-engine/cli/migrate/cmd"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func newMigrateCreateCmd(ec *cli.ExecutionContext) *cobra.Command {
|
|
v := viper.New()
|
|
opts := &migrateCreateOptions{
|
|
EC: ec,
|
|
}
|
|
|
|
migrateCreateCmd := &cobra.Command{
|
|
Use: "create [migration-name]",
|
|
Short: "Create files required for a migration",
|
|
Long: "Create sql and yaml files required for a migration",
|
|
SilenceUsage: true,
|
|
Args: cobra.ExactArgs(1),
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
ec.Viper = v
|
|
return ec.Validate()
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.name = args[0]
|
|
return opts.run()
|
|
},
|
|
}
|
|
|
|
return migrateCreateCmd
|
|
}
|
|
|
|
type migrateCreateOptions struct {
|
|
EC *cli.ExecutionContext
|
|
|
|
name string
|
|
}
|
|
|
|
func (o *migrateCreateOptions) run() error {
|
|
timestamp := getTime()
|
|
createOptions := mig.New(timestamp, o.name, o.EC.MigrationDir)
|
|
createOptions.IsCMD = true
|
|
err := createOptions.Create()
|
|
if err != nil {
|
|
return errors.Wrap(err, "error creating migration files")
|
|
}
|
|
o.EC.Logger.Infof("Migration files created with version %d_%s.[up|down].[yaml|sql]", timestamp, o.name)
|
|
return nil
|
|
}
|
|
|
|
func getTime() int64 {
|
|
startTime := time.Now()
|
|
return startTime.UnixNano() / int64(time.Millisecond)
|
|
}
|