Documentation ¶
Index ¶
- Constants
- Variables
- func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error)
- func AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.Tx) error)
- func Create(db *sql.DB, dir, name, migrationType string) error
- func CreateWithTemplate(db *sql.DB, dir string, tmpl *template.Template, name, migrationType string) error
- func Down(db *sql.DB, dir string) error
- func DownTo(db *sql.DB, dir string, version int64) error
- func EnsureDBVersion(db *sql.DB) (int64, error)
- func Fix(dir string) error
- func GetDBVersion(db *sql.DB) (int64, error)
- func NumericComponent(name string) (int64, error)
- func OpenDBWithDriver(driver string, dbstring string) (*sql.DB, error)
- func Redo(db *sql.DB, dir string) error
- func Reset(db *sql.DB, dir string) error
- func Run(command string, db *sql.DB, dir string, args ...string) error
- func SetDialect(d string) error
- func SetLogger(l Logger)
- func SetTableName(n string)
- func SetVerbose(v bool)
- func Status(db *sql.DB, dir string) error
- func TableName() string
- func Up(db *sql.DB, dir string) error
- func UpByOne(db *sql.DB, dir string) error
- func UpTo(db *sql.DB, dir string, version int64) error
- func Version(db *sql.DB, dir string) error
- type Instance
- func (in *Instance) AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error)
- func (in *Instance) AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.Tx) error)
- func (in *Instance) CollectMigrations(dirpath string, current, target int64) (Migrations, error)
- func (in *Instance) Create(db *sql.DB, dir, name, migrationType string) error
- func (in *Instance) CreateWithTemplate(db *sql.DB, dir string, tmpl *template.Template, name, migrationType string) error
- func (in *Instance) Down(db *sql.DB, dir string) error
- func (in *Instance) DownTo(db *sql.DB, dir string, version int64) error
- func (in *Instance) EnsureDBVersion(db *sql.DB) (int64, error)
- func (in *Instance) Fix(dir string) error
- func (in *Instance) GetDBVersion(db *sql.DB) (int64, error)
- func (in *Instance) GetDialect() SQLDialect
- func (in *Instance) OpenDBWithDriver(driver string, dbstring string) (*sql.DB, error)
- func (in *Instance) Redo(db *sql.DB, dir string) error
- func (in *Instance) Reset(db *sql.DB, dir string) error
- func (in *Instance) Run(command string, db *sql.DB, dir string, args ...string) error
- func (in *Instance) SetDialect(d string) error
- func (in *Instance) SetLogger(l Logger)
- func (in *Instance) SetTableName(n string)
- func (in *Instance) SetVerbose(v bool)
- func (in *Instance) Status(db *sql.DB, dir string) error
- func (in *Instance) TableName() string
- func (in *Instance) Up(db *sql.DB, dir string) error
- func (in *Instance) UpByOne(db *sql.DB, dir string) error
- func (in *Instance) UpTo(db *sql.DB, dir string, version int64) error
- func (in *Instance) Version(db *sql.DB, dir string) error
- type Logger
- type Migration
- type MigrationRecord
- type Migrations
- func (ms Migrations) Current(current int64) (*Migration, error)
- func (ms Migrations) Last() (*Migration, error)
- func (ms Migrations) Len() int
- func (ms Migrations) Less(i, j int) bool
- func (ms Migrations) Next(current int64) (*Migration, error)
- func (ms Migrations) Previous(current int64) (*Migration, error)
- func (ms Migrations) String() string
- func (ms Migrations) Swap(i, j int)
- type MySQLDialect
- type PostgresDialect
- type RedshiftDialect
- type SQLDialect
- type SqlServerDialect
- type Sqlite3Dialect
- type TiDBDialect
Constants ¶
const VERSION = "v2.7.0-rc3"
Variables ¶
var ( // ErrNoCurrentVersion when a current migration version is not found. ErrNoCurrentVersion = errors.New("no current version found") // ErrNoNextVersion when the next migration version is not found. ErrNoNextVersion = errors.New("no next version found") // MaxVersion is the maximum allowed version. MaxVersion int64 = 9223372036854775807 // max(int64) )
Functions ¶
func AddMigration ¶
AddMigration adds a migration.
func AddNamedMigration ¶
AddNamedMigration : Add a named migration.
func CreateWithTemplate ¶
func CreateWithTemplate(db *sql.DB, dir string, tmpl *template.Template, name, migrationType string) error
Create writes a new blank migration file.
func EnsureDBVersion ¶
EnsureDBVersion retrieves the current version for this DB. Create and initialize the DB version table if it doesn't exist.
func GetDBVersion ¶
GetDBVersion is an alias for EnsureDBVersion, but returns -1 in error.
func NumericComponent ¶
NumericComponent looks for migration scripts with names in the form: XXX_descriptivename.ext where XXX specifies the version number and ext specifies the type of migration
func OpenDBWithDriver ¶
OpenDBWithDriver creates a connection a database, and modifies goose internals to be compatible with the supplied driver by calling SetDialect.
Types ¶
type Instance ¶
type Instance struct {
// contains filtered or unexported fields
}
Instance of goose for managing single database / migration directory. Use if you've more than one database / migration directory compiled in single Go binary.
func (*Instance) AddMigration ¶
AddMigration adds a migration.
func (*Instance) AddNamedMigration ¶
func (in *Instance) AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.Tx) error)
AddNamedMigration : Add a named migration.
func (*Instance) CollectMigrations ¶
func (in *Instance) CollectMigrations(dirpath string, current, target int64) (Migrations, error)
CollectMigrations returns all the valid looking migration scripts in the migrations folder and go func registry, and key them by version.
func (*Instance) CreateWithTemplate ¶
func (in *Instance) CreateWithTemplate(db *sql.DB, dir string, tmpl *template.Template, name, migrationType string) error
Create writes a new blank migration file.
func (*Instance) EnsureDBVersion ¶
EnsureDBVersion retrieves the current version for this DB. Create and initialize the DB version table if it doesn't exist.
func (*Instance) GetDBVersion ¶
GetDBVersion is an alias for EnsureDBVersion, but returns -1 in error.
func (*Instance) GetDialect ¶
func (in *Instance) GetDialect() SQLDialect
GetDialect gets the SQLDialect
func (*Instance) OpenDBWithDriver ¶
OpenDBWithDriver creates a connection a database, and modifies goose internals to be compatible with the supplied driver by calling SetDialect.
func (*Instance) SetDialect ¶
SetDialect sets the SQLDialect
func (*Instance) SetTableName ¶
SetTableName set goose db version table name
func (*Instance) SetVerbose ¶
SetVerbose set the goose verbosity mode
type Logger ¶
type Logger interface { Fatal(v ...interface{}) Fatalf(format string, v ...interface{}) Print(v ...interface{}) Println(v ...interface{}) Printf(format string, v ...interface{}) }
Logger is standard logger interface
type Migration ¶
type Migration struct { Version int64 Next int64 // next version, or -1 if none Previous int64 // previous version, -1 if none Source string // path to .sql script Registered bool UpFn func(*sql.Tx) error // Up go migration function DownFn func(*sql.Tx) error // Down go migration function // contains filtered or unexported fields }
Migration struct.
type MigrationRecord ¶
type MigrationRecord struct { VersionID int64 TStamp time.Time IsApplied bool // was this a result of up() or down() }
MigrationRecord struct.
type Migrations ¶
type Migrations []*Migration
Migrations slice.
func CollectMigrations ¶
func CollectMigrations(dirpath string, current, target int64) (Migrations, error)
CollectMigrations returns all the valid looking migration scripts in the migrations folder and go func registry, and key them by version.
func (Migrations) Current ¶
func (ms Migrations) Current(current int64) (*Migration, error)
Current gets the current migration.
func (Migrations) Last ¶
func (ms Migrations) Last() (*Migration, error)
Last gets the last migration.
func (Migrations) Less ¶
func (ms Migrations) Less(i, j int) bool
func (Migrations) Next ¶
func (ms Migrations) Next(current int64) (*Migration, error)
Next gets the next migration.
func (Migrations) Previous ¶
func (ms Migrations) Previous(current int64) (*Migration, error)
Previous : Get the previous migration.
func (Migrations) String ¶
func (ms Migrations) String() string
func (Migrations) Swap ¶
func (ms Migrations) Swap(i, j int)
type MySQLDialect ¶
type MySQLDialect struct {
// contains filtered or unexported fields
}
MySQLDialect struct.
type PostgresDialect ¶
type PostgresDialect struct {
// contains filtered or unexported fields
}
PostgresDialect struct.
type RedshiftDialect ¶
type RedshiftDialect struct {
// contains filtered or unexported fields
}
RedshiftDialect struct.
type SQLDialect ¶
type SQLDialect interface {
// contains filtered or unexported methods
}
SQLDialect abstracts the details of specific SQL dialects for goose's few SQL specific statements
type SqlServerDialect ¶
type SqlServerDialect struct {
// contains filtered or unexported fields
}
SqlServerDialect struct.
type Sqlite3Dialect ¶
type Sqlite3Dialect struct {
// contains filtered or unexported fields
}
Sqlite3Dialect struct.
type TiDBDialect ¶
type TiDBDialect struct {
// contains filtered or unexported fields
}
TiDBDialect struct.