(scripts []MigrationScript, comment string)
| 32 | // Migrator is responsible for making sure the registered scripts get applied to database and only once |
| 33 | type Migrator interface { |
| 34 | Register(scripts []MigrationScript, comment string) |
| 35 | Execute() errors.Error |
| 36 | HasPendingScripts() bool |
| 37 | } |
no outgoing calls