nidus-sync/db/dbinfo/fieldseeker.locationtracking.bob.go

217 lines
5 KiB
Go

// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dbinfo
import "github.com/aarondl/opt/null"
var FieldseekerLocationtrackings = Table[
fieldseekerLocationtrackingColumns,
fieldseekerLocationtrackingIndexes,
fieldseekerLocationtrackingForeignKeys,
fieldseekerLocationtrackingUniques,
fieldseekerLocationtrackingChecks,
]{
Schema: "fieldseeker",
Name: "locationtracking",
Columns: fieldseekerLocationtrackingColumns{
Objectid: column{
Name: "objectid",
DBType: "bigint",
Default: "nextval('fieldseeker.locationtracking_objectid_seq'::regclass)",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Accuracy: column{
Name: "accuracy",
DBType: "double precision",
Default: "NULL",
Comment: "Accuracy(m)",
Nullable: true,
Generated: false,
AutoIncr: false,
},
CreatedUser: column{
Name: "created_user",
DBType: "character varying",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
CreatedDate: column{
Name: "created_date",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedUser: column{
Name: "last_edited_user",
DBType: "character varying",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedDate: column{
Name: "last_edited_date",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Globalid: column{
Name: "globalid",
DBType: "uuid",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Fieldtech: column{
Name: "fieldtech",
DBType: "character varying",
Default: "NULL",
Comment: "Field Tech",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Creationdate: column{
Name: "creationdate",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Creator: column{
Name: "creator",
DBType: "character varying",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editdate: column{
Name: "editdate",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editor: column{
Name: "editor",
DBType: "character varying",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Version: column{
Name: "version",
DBType: "integer",
Default: "1",
Comment: "Tracks version changes to the row. Increases when data is modified.",
Nullable: false,
Generated: false,
AutoIncr: false,
},
},
Indexes: fieldseekerLocationtrackingIndexes{
LocationtrackingPkey: index{
Type: "btree",
Name: "locationtracking_pkey",
Columns: []indexColumn{
{
Name: "objectid",
Desc: null.FromCond(false, true),
IsExpression: false,
},
{
Name: "version",
Desc: null.FromCond(false, true),
IsExpression: false,
},
},
Unique: true,
Comment: "",
NullsFirst: []bool{false, false},
NullsDistinct: false,
Where: "",
Include: []string{},
},
},
PrimaryKey: &constraint{
Name: "locationtracking_pkey",
Columns: []string{"objectid", "version"},
Comment: "",
},
Comment: "",
}
type fieldseekerLocationtrackingColumns struct {
Objectid column
Accuracy column
CreatedUser column
CreatedDate column
LastEditedUser column
LastEditedDate column
Globalid column
Fieldtech column
Creationdate column
Creator column
Editdate column
Editor column
Version column
}
func (c fieldseekerLocationtrackingColumns) AsSlice() []column {
return []column{
c.Objectid, c.Accuracy, c.CreatedUser, c.CreatedDate, c.LastEditedUser, c.LastEditedDate, c.Globalid, c.Fieldtech, c.Creationdate, c.Creator, c.Editdate, c.Editor, c.Version,
}
}
type fieldseekerLocationtrackingIndexes struct {
LocationtrackingPkey index
}
func (i fieldseekerLocationtrackingIndexes) AsSlice() []index {
return []index{
i.LocationtrackingPkey,
}
}
type fieldseekerLocationtrackingForeignKeys struct{}
func (f fieldseekerLocationtrackingForeignKeys) AsSlice() []foreignKey {
return []foreignKey{}
}
type fieldseekerLocationtrackingUniques struct{}
func (u fieldseekerLocationtrackingUniques) AsSlice() []constraint {
return []constraint{}
}
type fieldseekerLocationtrackingChecks struct{}
func (c fieldseekerLocationtrackingChecks) AsSlice() []check {
return []check{}
}