Files
kami_scripts/order/model/schema_migrations.gen.go

19 lines
547 B
Go

// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
package model
const TableNameSchemaMigration = "schema_migrations"
// SchemaMigration mapped from table <schema_migrations>
type SchemaMigration struct {
Version int64 `gorm:"column:version;primaryKey" json:"version"`
Dirty bool `gorm:"column:dirty;not null" json:"dirty"`
}
// TableName SchemaMigration's table name
func (*SchemaMigration) TableName() string {
return TableNameSchemaMigration
}