package stub

import "github.com/golang-migrate/migrate/v4/database/stub"

Index

Constants

const DROP = "DROP"

Functions

func WithInstance

func WithInstance(instance interface{}, config *Config) (database.Driver, error)

Types

type Config

type Config struct{}

type Stub

type Stub struct {
	Url               string
	Instance          interface{}
	CurrentVersion    int
	MigrationSequence []string
	LastRunMigration  []byte // todo: make []string
	IsDirty           bool

	Config *Config
	// contains filtered or unexported fields
}

func (*Stub) Close

func (s *Stub) Close() error

func (*Stub) Drop

func (s *Stub) Drop() error

func (*Stub) EqualSequence

func (s *Stub) EqualSequence(seq []string) bool

func (*Stub) Lock

func (s *Stub) Lock() error

func (*Stub) Open

func (s *Stub) Open(url string) (database.Driver, error)

func (*Stub) Run

func (s *Stub) Run(migration io.Reader) error

func (*Stub) SetVersion

func (s *Stub) SetVersion(version int, state bool) error

func (*Stub) Unlock

func (s *Stub) Unlock() error

func (*Stub) Version

func (s *Stub) Version() (version int, dirty bool, err error)

Source Files

stub.go

Version
v4.18.2 (latest)
Published
Jan 27, 2025
Platform
js/wasm
Imports
4 packages
Last checked
1 week ago

Tools for package owners.