mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 18:31:00 +00:00
20 lines
446 B
Go
20 lines
446 B
Go
package migrate
|
|
|
|
// All is called to collect all migration scripts
|
|
// and adds them to Revision list. New Revision
|
|
// should be added here ordered by its revision
|
|
// number.
|
|
func (m *Migration) All() *Migration {
|
|
|
|
// List all migrations here
|
|
m.Add(SetupTables)
|
|
m.Add(SetupIndices)
|
|
m.Add(RenamePrivelegedToPrivileged)
|
|
m.Add(GitHubEnterpriseSupport)
|
|
m.Add(AddOpenInvitationColumn)
|
|
m.Add(AddGitlabColumns)
|
|
|
|
// m.Add(...)
|
|
// ...
|
|
return m
|
|
}
|