ent schema post generation
This commit is contained in:
88
ent/mailbox/mailbox.go
Normal file
88
ent/mailbox/mailbox.go
Normal file
@ -0,0 +1,88 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
|
||||
package mailbox
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
// Label holds the string label denoting the mailbox type in the database.
|
||||
Label = "mailbox"
|
||||
// FieldID holds the string denoting the id field in the database.
|
||||
FieldID = "id"
|
||||
// FieldActive holds the string denoting the active field in the database.
|
||||
FieldActive = "active"
|
||||
// FieldCreated holds the string denoting the created field in the database.
|
||||
FieldCreated = "created"
|
||||
// FieldModified holds the string denoting the modified field in the database.
|
||||
FieldModified = "modified"
|
||||
// FieldDomainID holds the string denoting the domain_id field in the database.
|
||||
FieldDomainID = "domain_id"
|
||||
// FieldUsername holds the string denoting the username field in the database.
|
||||
FieldUsername = "username"
|
||||
// FieldPassword holds the string denoting the password field in the database.
|
||||
FieldPassword = "password"
|
||||
// FieldName holds the string denoting the name field in the database.
|
||||
FieldName = "name"
|
||||
// FieldQuota holds the string denoting the quota field in the database.
|
||||
FieldQuota = "quota"
|
||||
// FieldLocalPart holds the string denoting the local_part field in the database.
|
||||
FieldLocalPart = "local_part"
|
||||
// FieldHomedir holds the string denoting the homedir field in the database.
|
||||
FieldHomedir = "homedir"
|
||||
// FieldMaildir holds the string denoting the maildir field in the database.
|
||||
FieldMaildir = "maildir"
|
||||
// FieldUID holds the string denoting the uid field in the database.
|
||||
FieldUID = "uid"
|
||||
// FieldGid holds the string denoting the gid field in the database.
|
||||
FieldGid = "gid"
|
||||
// EdgeDomain holds the string denoting the domain edge name in mutations.
|
||||
EdgeDomain = "domain"
|
||||
// Table holds the table name of the mailbox in the database.
|
||||
Table = "mailboxes"
|
||||
// DomainTable is the table that holds the domain relation/edge.
|
||||
DomainTable = "mailboxes"
|
||||
// DomainInverseTable is the table name for the Domain entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "domain" package.
|
||||
DomainInverseTable = "domains"
|
||||
// DomainColumn is the table column denoting the domain relation/edge.
|
||||
DomainColumn = "domain_id"
|
||||
)
|
||||
|
||||
// Columns holds all SQL columns for mailbox fields.
|
||||
var Columns = []string{
|
||||
FieldID,
|
||||
FieldActive,
|
||||
FieldCreated,
|
||||
FieldModified,
|
||||
FieldDomainID,
|
||||
FieldUsername,
|
||||
FieldPassword,
|
||||
FieldName,
|
||||
FieldQuota,
|
||||
FieldLocalPart,
|
||||
FieldHomedir,
|
||||
FieldMaildir,
|
||||
FieldUID,
|
||||
FieldGid,
|
||||
}
|
||||
|
||||
// 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 (
|
||||
// DefaultCreated holds the default value on creation for the "created" field.
|
||||
DefaultCreated func() time.Time
|
||||
// DefaultModified holds the default value on creation for the "modified" field.
|
||||
DefaultModified func() time.Time
|
||||
// UpdateDefaultModified holds the default value on update for the "modified" field.
|
||||
UpdateDefaultModified func() time.Time
|
||||
)
|
1416
ent/mailbox/where.go
Normal file
1416
ent/mailbox/where.go
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user