1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Code generated by entc, DO NOT EDIT.
- package car
- const (
- // Label holds the string label denoting the car type in the database.
- Label = "car"
- // FieldID holds the string denoting the id field in the database.
- FieldID = "id"
- // FieldModel holds the string denoting the model field in the database.
- FieldModel = "model"
- // FieldRegisteredAt holds the string denoting the registered_at field in the database.
- FieldRegisteredAt = "registered_at"
- // EdgeOwner holds the string denoting the owner edge name in mutations.
- EdgeOwner = "owner"
- // Table holds the table name of the car in the database.
- Table = "cars"
- // OwnerTable is the table that holds the owner relation/edge.
- OwnerTable = "cars"
- // OwnerInverseTable is the table name for the User entity.
- // It exists in this package in order to avoid circular dependency with the "user" package.
- OwnerInverseTable = "users"
- // OwnerColumn is the table column denoting the owner relation/edge.
- OwnerColumn = "user_cars"
- )
- // Columns holds all SQL columns for car fields.
- var Columns = []string{
- FieldID,
- FieldModel,
- FieldRegisteredAt,
- }
- // ForeignKeys holds the SQL foreign-keys that are owned by the "cars"
- // table and are not defined as standalone fields in the schema.
- var ForeignKeys = []string{
- "user_cars",
- }
- // 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
- }
- }
- for i := range ForeignKeys {
- if column == ForeignKeys[i] {
- return true
- }
- }
- return false
- }
|