RunAppMigrations applies all new migrations registered in the [core.AppMigrations] list.
()
| 788 | |
| 789 | // RunAppMigrations applies all new migrations registered in the [core.AppMigrations] list. |
| 790 | func (app *BaseApp) RunAppMigrations() error { |
| 791 | _, err := NewMigrationsRunner(app, AppMigrations).Up() |
| 792 | return err |
| 793 | } |
| 794 | |
| 795 | // RunAllMigrations applies all system and app migrations |
| 796 | // (aka. from both [core.SystemMigrations] and [core.AppMigrations]). |
nothing calls this directly
no test coverage detected