cobble/models.go

16 lines
213 B
Go

package main
type MigrationHeaders struct {
Requirements []string
}
type Migration struct {
Path string
Name string
Requires string
Run bool
}
type DB interface {
Execute(sql string) error
}