You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-boardvoting/db/migrations_embedded.go

15 lines
285 B
Go

package db
import (
"git.cacert.org/cacert-boardvoting/boardvoting"
"github.com/rubenv/sql-migrate"
)
func Migrations() migrate.MigrationSource {
return &migrate.AssetMigrationSource{
Asset: boardvoting.Asset,
AssetDir: boardvoting.AssetDir,
Dir: "migrations",
}
}