84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
//
|
|
// 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/Gleipnir-Technology/jet/postgres"
|
|
)
|
|
|
|
var Sessions = newSessionsTable("public", "sessions", "")
|
|
|
|
type sessionsTable struct {
|
|
postgres.Table
|
|
|
|
// Columns
|
|
Token postgres.ColumnString
|
|
Data postgres.ColumnBytea
|
|
Expiry postgres.ColumnTimestampz
|
|
|
|
AllColumns postgres.ColumnList
|
|
MutableColumns postgres.ColumnList
|
|
DefaultColumns postgres.ColumnList
|
|
}
|
|
|
|
type SessionsTable struct {
|
|
sessionsTable
|
|
|
|
EXCLUDED sessionsTable
|
|
}
|
|
|
|
// AS creates new SessionsTable with assigned alias
|
|
func (a SessionsTable) AS(alias string) *SessionsTable {
|
|
return newSessionsTable(a.SchemaName(), a.TableName(), alias)
|
|
}
|
|
|
|
// Schema creates new SessionsTable with assigned schema name
|
|
func (a SessionsTable) FromSchema(schemaName string) *SessionsTable {
|
|
return newSessionsTable(schemaName, a.TableName(), a.Alias())
|
|
}
|
|
|
|
// WithPrefix creates new SessionsTable with assigned table prefix
|
|
func (a SessionsTable) WithPrefix(prefix string) *SessionsTable {
|
|
return newSessionsTable(a.SchemaName(), prefix+a.TableName(), a.TableName())
|
|
}
|
|
|
|
// WithSuffix creates new SessionsTable with assigned table suffix
|
|
func (a SessionsTable) WithSuffix(suffix string) *SessionsTable {
|
|
return newSessionsTable(a.SchemaName(), a.TableName()+suffix, a.TableName())
|
|
}
|
|
|
|
func newSessionsTable(schemaName, tableName, alias string) *SessionsTable {
|
|
return &SessionsTable{
|
|
sessionsTable: newSessionsTableImpl(schemaName, tableName, alias),
|
|
EXCLUDED: newSessionsTableImpl("", "excluded", ""),
|
|
}
|
|
}
|
|
|
|
func newSessionsTableImpl(schemaName, tableName, alias string) sessionsTable {
|
|
var (
|
|
TokenColumn = postgres.StringColumn("token")
|
|
DataColumn = postgres.ByteaColumn("data")
|
|
ExpiryColumn = postgres.TimestampzColumn("expiry")
|
|
allColumns = postgres.ColumnList{TokenColumn, DataColumn, ExpiryColumn}
|
|
mutableColumns = postgres.ColumnList{DataColumn, ExpiryColumn}
|
|
defaultColumns = postgres.ColumnList{}
|
|
)
|
|
|
|
return sessionsTable{
|
|
Table: postgres.NewTable(schemaName, tableName, alias, allColumns...),
|
|
|
|
//Columns
|
|
Token: TokenColumn,
|
|
Data: DataColumn,
|
|
Expiry: ExpiryColumn,
|
|
|
|
AllColumns: allColumns,
|
|
MutableColumns: mutableColumns,
|
|
DefaultColumns: defaultColumns,
|
|
}
|
|
}
|