29 lines
565 B
Go
29 lines
565 B
Go
package models
|
|
|
|
// SchemaMigration represents an intended migration.
|
|
type SchemaMigration struct {
|
|
Version int
|
|
Name string
|
|
Provider string
|
|
Up bool
|
|
Query string
|
|
}
|
|
|
|
// Before returns the version the schema should be at Before the migration is applied.
|
|
func (m SchemaMigration) Before() (before int) {
|
|
if m.Up {
|
|
return m.Version - 1
|
|
}
|
|
|
|
return m.Version
|
|
}
|
|
|
|
// After returns the version the schema will be at After the migration is applied.
|
|
func (m SchemaMigration) After() (after int) {
|
|
if m.Up {
|
|
return m.Version
|
|
}
|
|
|
|
return m.Version - 1
|
|
}
|