Все генераторы датасетов очень с$ка платные. Придется мутить свой.

actency-mysql57-replication
Andrey Ivanov 2021-01-25 11:39:09 -05:00 committed by Andrey Ivanov
parent d88322fb3d
commit 88ac87b090
2 changed files with 18 additions and 0 deletions

View File

@ -26,6 +26,9 @@ func New(configFile, envPrefix string) (App, error) {
if err = dbInit(db); err != nil {
return App{}, err
}
if err = dbFill(db); err != nil {
return App{}, err
}
return App{Config: conf, DB: db}, nil
}
@ -72,3 +75,10 @@ func dbInit(db *sql.DB) error {
log.Println("All tables exists")
return nil
}
func dbFill(db *sql.DB) error {
log.Println("Try to generate rows and fill the DB...")
log.Println("All tables exists")
return nil
}

File diff suppressed because one or more lines are too long