gorm/migrator.go

71 lines
1.8 KiB
Go
Raw Normal View History

2020-01-28 18:01:35 +03:00
package gorm
import (
"gorm.io/gorm/clause"
"gorm.io/gorm/schema"
2020-01-28 18:01:35 +03:00
)
2020-02-20 18:04:03 +03:00
// Migrator returns migrator
func (db *DB) Migrator() Migrator {
return db.Dialector.Migrator(db.Session(&Session{WithConditions: true}))
2020-02-20 18:04:03 +03:00
}
2020-06-08 08:45:41 +03:00
// AutoMigrate run auto migration for given models
func (db *DB) AutoMigrate(dst ...interface{}) error {
return db.Migrator().AutoMigrate(dst...)
}
2020-01-28 18:01:35 +03:00
// ViewOption view option
type ViewOption struct {
Replace bool
CheckOption string
Query *DB
}
type ColumnType interface {
Name() string
DatabaseTypeName() string
Length() (length int64, ok bool)
DecimalSize() (precision int64, scale int64, ok bool)
Nullable() (nullable bool, ok bool)
}
2020-01-28 18:01:35 +03:00
type Migrator interface {
// AutoMigrate
AutoMigrate(dst ...interface{}) error
2020-02-20 18:04:03 +03:00
// Database
CurrentDatabase() string
FullDataTypeOf(*schema.Field) clause.Expr
2020-02-20 18:04:03 +03:00
2020-01-28 18:01:35 +03:00
// Tables
CreateTable(dst ...interface{}) error
DropTable(dst ...interface{}) error
2020-02-22 12:53:57 +03:00
HasTable(dst interface{}) bool
2020-05-31 05:24:49 +03:00
RenameTable(oldName, newName interface{}) error
2020-01-28 18:01:35 +03:00
// Columns
AddColumn(dst interface{}, field string) error
DropColumn(dst interface{}, field string) error
AlterColumn(dst interface{}, field string) error
MigrateColumn(dst interface{}, field *schema.Field, columnType ColumnType) error
2020-02-22 08:09:57 +03:00
HasColumn(dst interface{}, field string) bool
2020-01-28 18:01:35 +03:00
RenameColumn(dst interface{}, oldName, field string) error
ColumnTypes(dst interface{}) ([]ColumnType, error)
2020-01-28 18:01:35 +03:00
// Views
CreateView(name string, option ViewOption) error
DropView(name string) error
// Constraints
CreateConstraint(dst interface{}, name string) error
DropConstraint(dst interface{}, name string) error
2020-02-22 08:09:57 +03:00
HasConstraint(dst interface{}, name string) bool
2020-01-28 18:01:35 +03:00
// Indexes
CreateIndex(dst interface{}, name string) error
DropIndex(dst interface{}, name string) error
2020-02-20 18:04:03 +03:00
HasIndex(dst interface{}, name string) bool
2020-01-28 18:01:35 +03:00
RenameIndex(dst interface{}, oldName, newName string) error
}