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
@ -141,6 +141,15 @@ var FieldseekerPooldetails = 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: fieldseekerPooldetailIndexes{
PooldetailPkey: index{
@ -152,10 +161,15 @@ var FieldseekerPooldetails = 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{},
@ -163,7 +177,7 @@ var FieldseekerPooldetails = Table[
},
PrimaryKey: &constraint{
Name: "pooldetail_pkey",
Columns: []string{"objectid"},
Columns: []string{"objectid", "version"},
Comment: "",
},
@ -185,11 +199,12 @@ type fieldseekerPooldetailColumns struct {
Creator column
Editdate column
Editor column
Version column
}
func (c fieldseekerPooldetailColumns) AsSlice() []column {
return []column{
c.Objectid, c.TrapdataID, c.PoolID, c.Species, c.Females, c.Globalid, c.CreatedUser, c.CreatedDate, c.LastEditedUser, c.LastEditedDate, c.Creationdate, c.Creator, c.Editdate, c.Editor,
c.Objectid, c.TrapdataID, c.PoolID, c.Species, c.Females, c.Globalid, c.CreatedUser, c.CreatedDate, c.LastEditedUser, c.LastEditedDate, c.Creationdate, c.Creator, c.Editdate, c.Editor, c.Version,
}
}