// Copyright 2019-present Facebook Inc. All rights reserved. // This source code is licensed under the Apache 2.0 license found // in the LICENSE file in the root directory of this source tree. // Code generated by ent, DO NOT EDIT. package blog const ( // Label holds the string label denoting the blog type in the database. Label = "blog" // FieldID holds the string denoting the id field in the database. FieldID = "id" // EdgeAdmins holds the string denoting the admins edge name in mutations. EdgeAdmins = "admins" // UserFieldID holds the string denoting the ID field of the User. UserFieldID = "oid" // Table holds the table name of the blog in the database. Table = "blogs" // AdminsTable is the table that holds the admins relation/edge. AdminsTable = "users" // AdminsInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. AdminsInverseTable = "users" // AdminsColumn is the table column denoting the admins relation/edge. AdminsColumn = "blog_admins" ) // Columns holds all SQL columns for blog fields. var Columns = []string{ FieldID, } // 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 }