Initially made it through full update with new fieldseeker schema

This commit is contained in:
Eli Ribble 2025-12-05 23:11:57 +00:00
parent 0904f086b2
commit bd16f69e28
No known key found for this signature in database
510 changed files with 13617 additions and 14851 deletions

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.42.0. DO NOT EDIT.
// 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
@ -123,6 +123,15 @@ var FieldseekerLocationtrackings = Table[
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{
@ -134,10 +143,15 @@ var FieldseekerLocationtrackings = Table[
Desc: null.FromCond(false, true),
IsExpression: false,
},
{
Name: "version",
Desc: null.FromCond(false, true),
IsExpression: false,
},
},
Unique: true,
Comment: "",
NullsFirst: []bool{false},
NullsFirst: []bool{false, false},
NullsDistinct: false,
Where: "",
Include: []string{},
@ -145,7 +159,7 @@ var FieldseekerLocationtrackings = Table[
},
PrimaryKey: &constraint{
Name: "locationtracking_pkey",
Columns: []string{"objectid"},
Columns: []string{"objectid", "version"},
Comment: "",
},
@ -165,11 +179,12 @@ type fieldseekerLocationtrackingColumns struct {
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.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,
}
}