// 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 import ( "time" ) const TableNameIssueRandomCommitments = "issue_random_commitments" // IssueRandomCommitments mapped from table type IssueRandomCommitments struct { ID int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"` CreatedAt time.Time `gorm:"column:created_at;not null;default:CURRENT_TIMESTAMP(3)" json:"created_at"` UpdatedAt time.Time `gorm:"column:updated_at;not null;default:CURRENT_TIMESTAMP(3)" json:"updated_at"` IssueID int64 `gorm:"column:issue_id;not null" json:"issue_id"` AlgoVersion string `gorm:"column:algo_version;not null" json:"algo_version"` ServerSeedMaster []byte `gorm:"column:server_seed_master;not null" json:"server_seed_master"` ServerSeedHash []byte `gorm:"column:server_seed_hash;not null" json:"server_seed_hash"` ItemsRoot []byte `gorm:"column:items_root;not null" json:"items_root"` WeightsTotal int64 `gorm:"column:weights_total;not null" json:"weights_total"` StateVersion int32 `gorm:"column:state_version;not null" json:"state_version"` } // TableName IssueRandomCommitments's table name func (*IssueRandomCommitments) TableName() string { return TableNameIssueRandomCommitments }