woodpecker/pkg/database/migrate/all.go
Nurahmadie 4ef0f1b437 Integrate migrations with drone.
Also add migration to tests.
2014-02-16 03:47:30 +07:00

11 lines
159 B
Go

package migrate
func (m *Migration) All() *Migration {
// List all migrations here
m.Add(RenamePrivelegedToPrivileged)
// m.Add(...)
// ...
return m
}