Skip to content
Snippets Groups Projects
migrate.go 565 B
Newer Older
Gabriel Zachmann's avatar
Gabriel Zachmann committed
package dbmigrate

Gabriel Zachmann's avatar
Gabriel Zachmann committed
// Commands is a type for holding sql commands that should run before and after a version update
Gabriel Zachmann's avatar
Gabriel Zachmann committed
type Commands struct {
	Before []string `yaml:"before"`
	After  []string `yaml:"after"`
}

Gabriel Zachmann's avatar
Gabriel Zachmann committed
// VersionCommands is type holding the Commands that are related to a mytoken version
Gabriel Zachmann's avatar
Gabriel Zachmann committed
type VersionCommands map[string]Commands

Gabriel Zachmann's avatar
Gabriel Zachmann committed
// Migrate holds the VersionCommands for mytoken. These commands are used to migrate the database between mytoken
// versions.
Gabriel Zachmann's avatar
Gabriel Zachmann committed
var Migrate = VersionCommands{
	"0.2.0": {Before: v0_2_0_Before},
	"0.3.0": {Before: v0_3_0_Before},
Gabriel Zachmann's avatar
Gabriel Zachmann committed
}