type github.com/go-pg/migrations/v8.Collection

29 uses

	github.com/go-pg/migrations/v8 (current package)
		collection.go#L38: type Collection struct {
		collection.go#L47: func NewCollection(migrations ...*Migration) *Collection {
		collection.go#L48: 	c := &Collection{
		collection.go#L57: func (c *Collection) SetTableName(tableName string) *Collection {
		collection.go#L62: func (c *Collection) schemaTableName() (string, string) {
		collection.go#L69: func (c *Collection) DisableSQLAutodiscover(flag bool) *Collection {
		collection.go#L76: func (c *Collection) Register(fns ...func(DB) error) error {
		collection.go#L81: func (c *Collection) RegisterTx(fns ...func(DB) error) error {
		collection.go#L85: func (c *Collection) register(tx bool, fns ...func(DB) error) error {
		collection.go#L146: func (c *Collection) DiscoverSQLMigrations(dir string) error {
		collection.go#L157: func (c *Collection) DiscoverSQLMigrationsFromFilesystem(fs http.FileSystem, dir string) error {
		collection.go#L253: func (c *Collection) isVisitedDir(dir string) bool {
		collection.go#L326: func (c *Collection) addMigration(migration *Migration) {
		collection.go#L347: func (c *Collection) MustRegister(fns ...func(DB) error) {
		collection.go#L354: func (c *Collection) MustRegisterTx(fns ...func(DB) error) {
		collection.go#L361: func (c *Collection) Migrations() []*Migration {
		collection.go#L381: func (c *Collection) Run(db DB, a ...string) (oldVersion, newVersion int64, err error) {
		collection.go#L549: func (c *Collection) runUp(db DB, tx *pg.Tx, m *Migration) (int64, error) {
		collection.go#L562: func (c *Collection) runDown(db DB, tx *pg.Tx, m *Migration) (int64, error) {
		collection.go#L577: func (c *Collection) run(
		collection.go#L588: func (c *Collection) down(db DB, tx *pg.Tx, migrations []*Migration, oldVersion int64) (int64, error) {
		collection.go#L608: func (c *Collection) schemaExists(db DB) (bool, error) {
		collection.go#L616: func (c *Collection) tableExists(db DB) (bool, error) {
		collection.go#L625: func (c *Collection) Version(db DB) (int64, error) {
		collection.go#L639: func (c *Collection) SetVersion(db DB, version int64) error {
		collection.go#L646: func (c *Collection) createTable(db DB) error {
		collection.go#L674: func (c *Collection) begin(db DB) (*pg.Tx, int64, error) {