20 lines
650 B
Go
20 lines
650 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 prestadb
|
|
|
|
const TableNamePsHookAlias = "ps_hook_alias"
|
|
|
|
// PsHookAlias mapped from table <ps_hook_alias>
|
|
type PsHookAlias struct {
|
|
IDHookAlias int32 `gorm:"column:id_hook_alias;primaryKey;autoIncrement:true" json:"id_hook_alias"`
|
|
Alias string `gorm:"column:alias;not null;uniqueIndex:alias,priority:1" json:"alias"`
|
|
Name string `gorm:"column:name;not null" json:"name"`
|
|
}
|
|
|
|
// TableName PsHookAlias's table name
|
|
func (*PsHookAlias) TableName() string {
|
|
return TableNamePsHookAlias
|
|
}
|