// Code generated by relspecgo. DO NOT EDIT. package models import ( "fmt" resolvespec_common "github.com/bitechdev/ResolveSpec/pkg/spectypes" "github.com/uptrace/bun" ) type ModelPublicUser struct { bun.BaseModel `bun:"table:public.user,alias:user"` ID resolvespec_common.SqlString `bun:"id,type:varchar(36),pk," json:"id"` // UUID Active bool `bun:"active,type:boolean,default:true,notnull," json:"active"` CreatedAt resolvespec_common.SqlTimeStamp `bun:"created_at,type:timestamp,default:now(),notnull," json:"created_at"` DeletedAt resolvespec_common.SqlTimeStamp `bun:"deleted_at,type:timestamp,nullzero," json:"deleted_at"` // Soft delete Email resolvespec_common.SqlString `bun:"email,type:varchar(255),notnull," json:"email"` FullName resolvespec_common.SqlString `bun:"full_name,type:varchar(255),nullzero," json:"full_name"` Password resolvespec_common.SqlString `bun:"password,type:varchar(255),notnull," json:"password"` // Bcrypt hashed password Role resolvespec_common.SqlString `bun:"role,type:varchar(50),default:'user',notnull," json:"role"` // admin UpdatedAt resolvespec_common.SqlTimeStamp `bun:"updated_at,type:timestamp,default:now(),notnull," json:"updated_at"` Username resolvespec_common.SqlString `bun:"username,type:varchar(255),notnull," json:"username"` } // TableName returns the table name for ModelPublicUser func (m ModelPublicUser) TableName() string { return "public.user" } // TableNameOnly returns the table name without schema for ModelPublicUser func (m ModelPublicUser) TableNameOnly() string { return "user" } // SchemaName returns the schema name for ModelPublicUser func (m ModelPublicUser) SchemaName() string { return "public" } // GetID returns the primary key value func (m ModelPublicUser) GetID() int64 { return m.ID.Int64() } // GetIDStr returns the primary key as a string func (m ModelPublicUser) GetIDStr() string { return fmt.Sprintf("%d", m.ID) } // SetID sets the primary key value func (m ModelPublicUser) SetID(newid int64) { m.UpdateID(newid) } // UpdateID updates the primary key value func (m *ModelPublicUser) UpdateID(newid int64) { m.ID.FromString(fmt.Sprintf("%d", newid)) } // GetIDName returns the name of the primary key column func (m ModelPublicUser) GetIDName() string { return "id" } // GetPrefix returns the table prefix func (m ModelPublicUser) GetPrefix() string { return "USE" }