103 lines
3.1 KiB
Go
103 lines
3.1 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/go-jet/jet/v2/postgres"
|
|
)
|
|
|
|
var Users = newUsersTable("public", "users", "")
|
|
|
|
type usersTable struct {
|
|
postgres.Table
|
|
|
|
// Columns
|
|
ID postgres.ColumnInteger
|
|
CreatedAt postgres.ColumnTimestamp
|
|
UpdatedAt postgres.ColumnTimestamp
|
|
DeletedAt postgres.ColumnTimestamp
|
|
Status postgres.ColumnInteger
|
|
OpenID postgres.ColumnString
|
|
Username postgres.ColumnString
|
|
Avatar postgres.ColumnString
|
|
Metas postgres.ColumnString
|
|
AuthToken postgres.ColumnString
|
|
|
|
AllColumns postgres.ColumnList
|
|
MutableColumns postgres.ColumnList
|
|
}
|
|
|
|
type UsersTable struct {
|
|
usersTable
|
|
|
|
EXCLUDED usersTable
|
|
}
|
|
|
|
// AS creates new UsersTable with assigned alias
|
|
func (a UsersTable) AS(alias string) *UsersTable {
|
|
return newUsersTable(a.SchemaName(), a.TableName(), alias)
|
|
}
|
|
|
|
// Schema creates new UsersTable with assigned schema name
|
|
func (a UsersTable) FromSchema(schemaName string) *UsersTable {
|
|
return newUsersTable(schemaName, a.TableName(), a.Alias())
|
|
}
|
|
|
|
// WithPrefix creates new UsersTable with assigned table prefix
|
|
func (a UsersTable) WithPrefix(prefix string) *UsersTable {
|
|
return newUsersTable(a.SchemaName(), prefix+a.TableName(), a.TableName())
|
|
}
|
|
|
|
// WithSuffix creates new UsersTable with assigned table suffix
|
|
func (a UsersTable) WithSuffix(suffix string) *UsersTable {
|
|
return newUsersTable(a.SchemaName(), a.TableName()+suffix, a.TableName())
|
|
}
|
|
|
|
func newUsersTable(schemaName, tableName, alias string) *UsersTable {
|
|
return &UsersTable{
|
|
usersTable: newUsersTableImpl(schemaName, tableName, alias),
|
|
EXCLUDED: newUsersTableImpl("", "excluded", ""),
|
|
}
|
|
}
|
|
|
|
func newUsersTableImpl(schemaName, tableName, alias string) usersTable {
|
|
var (
|
|
IDColumn = postgres.IntegerColumn("id")
|
|
CreatedAtColumn = postgres.TimestampColumn("created_at")
|
|
UpdatedAtColumn = postgres.TimestampColumn("updated_at")
|
|
DeletedAtColumn = postgres.TimestampColumn("deleted_at")
|
|
StatusColumn = postgres.IntegerColumn("status")
|
|
OpenIDColumn = postgres.StringColumn("open_id")
|
|
UsernameColumn = postgres.StringColumn("username")
|
|
AvatarColumn = postgres.StringColumn("avatar")
|
|
MetasColumn = postgres.StringColumn("metas")
|
|
AuthTokenColumn = postgres.StringColumn("auth_token")
|
|
allColumns = postgres.ColumnList{IDColumn, CreatedAtColumn, UpdatedAtColumn, DeletedAtColumn, StatusColumn, OpenIDColumn, UsernameColumn, AvatarColumn, MetasColumn, AuthTokenColumn}
|
|
mutableColumns = postgres.ColumnList{CreatedAtColumn, UpdatedAtColumn, DeletedAtColumn, StatusColumn, OpenIDColumn, UsernameColumn, AvatarColumn, MetasColumn, AuthTokenColumn}
|
|
)
|
|
|
|
return usersTable{
|
|
Table: postgres.NewTable(schemaName, tableName, alias, allColumns...),
|
|
|
|
//Columns
|
|
ID: IDColumn,
|
|
CreatedAt: CreatedAtColumn,
|
|
UpdatedAt: UpdatedAtColumn,
|
|
DeletedAt: DeletedAtColumn,
|
|
Status: StatusColumn,
|
|
OpenID: OpenIDColumn,
|
|
Username: UsernameColumn,
|
|
Avatar: AvatarColumn,
|
|
Metas: MetasColumn,
|
|
AuthToken: AuthTokenColumn,
|
|
|
|
AllColumns: allColumns,
|
|
MutableColumns: mutableColumns,
|
|
}
|
|
}
|