ent seteup

This commit is contained in:
2024-11-10 14:52:33 +05:30
parent 45c318b897
commit b0db98452a
78 changed files with 21469 additions and 36 deletions

39
db/ent/todo/todo.go Normal file
View File

@@ -0,0 +1,39 @@
// Code generated by ent, DO NOT EDIT.
package todo
import (
"entgo.io/ent/dialect/sql"
)
const (
// Label holds the string label denoting the todo type in the database.
Label = "todo"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// Table holds the table name of the todo in the database.
Table = "todos"
)
// Columns holds all SQL columns for todo 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
}
// OrderOption defines the ordering options for the Todo queries.
type OrderOption func(*sql.Selector)
// ByID orders the results by the id field.
func ByID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldID, opts...).ToFunc()
}

68
db/ent/todo/where.go Normal file
View File

@@ -0,0 +1,68 @@
// Code generated by ent, DO NOT EDIT.
package todo
import (
"entgo.io/ent/dialect/sql"
"gitserver.in/patialtech/rano/db/ent/predicate"
)
// ID filters vertices based on their ID field.
func ID(id int) predicate.Todo {
return predicate.Todo(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id int) predicate.Todo {
return predicate.Todo(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id int) predicate.Todo {
return predicate.Todo(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...int) predicate.Todo {
return predicate.Todo(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...int) predicate.Todo {
return predicate.Todo(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id int) predicate.Todo {
return predicate.Todo(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id int) predicate.Todo {
return predicate.Todo(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id int) predicate.Todo {
return predicate.Todo(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id int) predicate.Todo {
return predicate.Todo(sql.FieldLTE(FieldID, id))
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.Todo) predicate.Todo {
return predicate.Todo(sql.AndPredicates(predicates...))
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.Todo) predicate.Todo {
return predicate.Todo(sql.OrPredicates(predicates...))
}
// Not applies the not operator on the given predicate.
func Not(p predicate.Todo) predicate.Todo {
return predicate.Todo(sql.NotPredicates(p))
}