2024-04-03 09:05:12 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reCoreD-UI/controllers"
|
2024-04-09 08:28:18 +00:00
|
|
|
"reCoreD-UI/database"
|
2024-04-03 09:05:12 +00:00
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
2024-04-10 05:24:01 +00:00
|
|
|
var migrationCommand = &cli.Command{
|
|
|
|
Name: "migrate",
|
|
|
|
Usage: "migrate database",
|
|
|
|
Action: migrateDatabase,
|
|
|
|
}
|
2024-04-03 09:05:12 +00:00
|
|
|
|
2024-04-10 05:24:01 +00:00
|
|
|
var DatabaseCommand = &cli.Command{
|
|
|
|
Name: "database",
|
|
|
|
Usage: "database administration",
|
|
|
|
Aliases: []string{"db"},
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
migrationCommand,
|
|
|
|
},
|
2024-04-03 09:05:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func migrateDatabase(c *cli.Context) error {
|
2024-04-09 08:28:18 +00:00
|
|
|
if err := database.Connect(c.String("mysql-dsn")); err != nil {
|
2024-04-03 09:05:12 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-04-09 08:28:18 +00:00
|
|
|
return controllers.Migrate()
|
2024-04-03 09:05:12 +00:00
|
|
|
}
|