mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
// Code generated by entc, DO NOT EDIT. |
|
|
|
package offlinesession |
|
|
|
const ( |
|
// Label holds the string label denoting the offlinesession type in the database. |
|
Label = "offline_session" |
|
// FieldID holds the string denoting the id field in the database. |
|
FieldID = "id" |
|
// FieldUserID holds the string denoting the user_id field in the database. |
|
FieldUserID = "user_id" |
|
// FieldConnID holds the string denoting the conn_id field in the database. |
|
FieldConnID = "conn_id" |
|
// FieldRefresh holds the string denoting the refresh field in the database. |
|
FieldRefresh = "refresh" |
|
// FieldConnectorData holds the string denoting the connector_data field in the database. |
|
FieldConnectorData = "connector_data" |
|
// Table holds the table name of the offlinesession in the database. |
|
Table = "offline_sessions" |
|
) |
|
|
|
// Columns holds all SQL columns for offlinesession fields. |
|
var Columns = []string{ |
|
FieldID, |
|
FieldUserID, |
|
FieldConnID, |
|
FieldRefresh, |
|
FieldConnectorData, |
|
} |
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns). |
|
func ValidColumn(column string) bool { |
|
for i := range Columns { |
|
if column == Columns[i] { |
|
return true |
|
} |
|
} |
|
return false |
|
} |
|
|
|
var ( |
|
// UserIDValidator is a validator for the "user_id" field. It is called by the builders before save. |
|
UserIDValidator func(string) error |
|
// ConnIDValidator is a validator for the "conn_id" field. It is called by the builders before save. |
|
ConnIDValidator func(string) error |
|
// IDValidator is a validator for the "id" field. It is called by the builders before save. |
|
IDValidator func(string) error |
|
)
|
|
|