RunSystemMigrations applies all new migrations registered in the [core.SystemMigrations] list.
()
| 782 | |
| 783 | // RunSystemMigrations applies all new migrations registered in the [core.SystemMigrations] list. |
| 784 | func (app *BaseApp) RunSystemMigrations() error { |
| 785 | _, err := NewMigrationsRunner(app, SystemMigrations).Up() |
| 786 | return err |
| 787 | } |
| 788 | |
| 789 | // RunAppMigrations applies all new migrations registered in the [core.AppMigrations] list. |
| 790 | func (app *BaseApp) RunAppMigrations() error { |
no test coverage detected