// // Code generated by go-jet DO NOT EDIT. // // WARNING: Changes to this file may cause incorrect behavior // and will be lost if the code is regenerated // package table import ( "github.com/go-jet/jet/v2/postgres" ) var Config = newConfigTable("payments", "config", "") type configTable struct { postgres.Table // Columns OnlyRow postgres.ColumnBool RewardedPayoutChips postgres.ColumnInteger CooldownGlobalSeconds postgres.ColumnInteger CooldownVsAiSeconds postgres.ColumnInteger CooldownHintSeconds postgres.ColumnInteger OrderTTLSeconds postgres.ColumnInteger RewardDailyCap postgres.ColumnInteger RewardHourlyCap postgres.ColumnInteger AllColumns postgres.ColumnList MutableColumns postgres.ColumnList DefaultColumns postgres.ColumnList } type ConfigTable struct { configTable EXCLUDED configTable } // AS creates new ConfigTable with assigned alias func (a ConfigTable) AS(alias string) *ConfigTable { return newConfigTable(a.SchemaName(), a.TableName(), alias) } // Schema creates new ConfigTable with assigned schema name func (a ConfigTable) FromSchema(schemaName string) *ConfigTable { return newConfigTable(schemaName, a.TableName(), a.Alias()) } // WithPrefix creates new ConfigTable with assigned table prefix func (a ConfigTable) WithPrefix(prefix string) *ConfigTable { return newConfigTable(a.SchemaName(), prefix+a.TableName(), a.TableName()) } // WithSuffix creates new ConfigTable with assigned table suffix func (a ConfigTable) WithSuffix(suffix string) *ConfigTable { return newConfigTable(a.SchemaName(), a.TableName()+suffix, a.TableName()) } func newConfigTable(schemaName, tableName, alias string) *ConfigTable { return &ConfigTable{ configTable: newConfigTableImpl(schemaName, tableName, alias), EXCLUDED: newConfigTableImpl("", "excluded", ""), } } func newConfigTableImpl(schemaName, tableName, alias string) configTable { var ( OnlyRowColumn = postgres.BoolColumn("only_row") RewardedPayoutChipsColumn = postgres.IntegerColumn("rewarded_payout_chips") CooldownGlobalSecondsColumn = postgres.IntegerColumn("cooldown_global_seconds") CooldownVsAiSecondsColumn = postgres.IntegerColumn("cooldown_vs_ai_seconds") CooldownHintSecondsColumn = postgres.IntegerColumn("cooldown_hint_seconds") OrderTTLSecondsColumn = postgres.IntegerColumn("order_ttl_seconds") RewardDailyCapColumn = postgres.IntegerColumn("reward_daily_cap") RewardHourlyCapColumn = postgres.IntegerColumn("reward_hourly_cap") allColumns = postgres.ColumnList{OnlyRowColumn, RewardedPayoutChipsColumn, CooldownGlobalSecondsColumn, CooldownVsAiSecondsColumn, CooldownHintSecondsColumn, OrderTTLSecondsColumn, RewardDailyCapColumn, RewardHourlyCapColumn} mutableColumns = postgres.ColumnList{RewardedPayoutChipsColumn, CooldownGlobalSecondsColumn, CooldownVsAiSecondsColumn, CooldownHintSecondsColumn, OrderTTLSecondsColumn, RewardDailyCapColumn, RewardHourlyCapColumn} defaultColumns = postgres.ColumnList{OnlyRowColumn, RewardedPayoutChipsColumn, CooldownGlobalSecondsColumn, CooldownVsAiSecondsColumn, CooldownHintSecondsColumn, OrderTTLSecondsColumn, RewardDailyCapColumn, RewardHourlyCapColumn} ) return configTable{ Table: postgres.NewTable(schemaName, tableName, alias, allColumns...), //Columns OnlyRow: OnlyRowColumn, RewardedPayoutChips: RewardedPayoutChipsColumn, CooldownGlobalSeconds: CooldownGlobalSecondsColumn, CooldownVsAiSeconds: CooldownVsAiSecondsColumn, CooldownHintSeconds: CooldownHintSecondsColumn, OrderTTLSeconds: OrderTTLSecondsColumn, RewardDailyCap: RewardDailyCapColumn, RewardHourlyCap: RewardHourlyCapColumn, AllColumns: allColumns, MutableColumns: mutableColumns, DefaultColumns: defaultColumns, } }