mirror of
https://git.oceanpay.cc/danial/kami_scripts.git
synced 2025-12-18 22:47:10 +00:00
19 lines
547 B
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
|
|
}
|