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

283 lines
7 KiB
Go
Raw Normal View History

// Code generated by BobGen psql v0.42.5. 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 FieldseekerContainerrelates = Table[
fieldseekerContainerrelateColumns,
fieldseekerContainerrelateIndexes,
fieldseekerContainerrelateForeignKeys,
fieldseekerContainerrelateUniques,
fieldseekerContainerrelateChecks,
]{
Schema: "fieldseeker",
Name: "containerrelate",
Columns: fieldseekerContainerrelateColumns{
Objectid: column{
Name: "objectid",
DBType: "bigint",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Globalid: column{
Name: "globalid",
DBType: "uuid",
Default: "",
Comment: "Original attribute from ArcGIS API is GlobalID",
Nullable: false,
Generated: false,
AutoIncr: false,
},
CreatedUser: column{
Name: "created_user",
DBType: "character varying",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is created_user",
Nullable: true,
Generated: false,
AutoIncr: false,
},
CreatedDate: column{
Name: "created_date",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is created_date",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedUser: column{
Name: "last_edited_user",
DBType: "character varying",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is last_edited_user",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedDate: column{
Name: "last_edited_date",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is last_edited_date",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Inspsampleid: column{
Name: "inspsampleid",
DBType: "uuid",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is INSPSAMPLEID",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Mosquitoinspid: column{
Name: "mosquitoinspid",
DBType: "uuid",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is MOSQUITOINSPID",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Treatmentid: column{
Name: "treatmentid",
DBType: "uuid",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is TREATMENTID",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Containertype: column{
Name: "containertype",
DBType: "character varying",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is CONTAINERTYPE",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Creationdate: column{
Name: "creationdate",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is CreationDate",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Creator: column{
Name: "creator",
DBType: "character varying",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is Creator",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editdate: column{
Name: "editdate",
DBType: "timestamp without time zone",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is EditDate",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editor: column{
Name: "editor",
DBType: "character varying",
Default: "NULL",
Comment: "Original attribute from ArcGIS API is Editor",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Geometry: column{
Name: "geometry",
DBType: "jsonb",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Geospatial: column{
Name: "geospatial",
DBType: "geometry",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Version: column{
Name: "version",
DBType: "integer",
Default: "1",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
OrganizationID: column{
Name: "organization_id",
DBType: "integer",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
},
Indexes: fieldseekerContainerrelateIndexes{
ContainerrelatePkey: index{
Type: "btree",
Name: "containerrelate_pkey",
Columns: []indexColumn{
{
Name: "globalid",
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: "containerrelate_pkey",
Columns: []string{"globalid", "version"},
Comment: "",
},
ForeignKeys: fieldseekerContainerrelateForeignKeys{
FieldseekerContainerrelateContainerrelateOrganizationIDFkey: foreignKey{
constraint: constraint{
Name: "fieldseeker.containerrelate.containerrelate_organization_id_fkey",
Columns: []string{"organization_id"},
Comment: "",
},
ForeignTable: "organization",
ForeignColumns: []string{"id"},
},
},
Comment: "",
}
type fieldseekerContainerrelateColumns struct {
Objectid column
Globalid column
CreatedUser column
CreatedDate column
LastEditedUser column
LastEditedDate column
Inspsampleid column
Mosquitoinspid column
Treatmentid column
Containertype column
Creationdate column
Creator column
Editdate column
Editor column
Geometry column
Geospatial column
Version column
OrganizationID column
}
func (c fieldseekerContainerrelateColumns) AsSlice() []column {
return []column{
c.Objectid, c.Globalid, c.CreatedUser, c.CreatedDate, c.LastEditedUser, c.LastEditedDate, c.Inspsampleid, c.Mosquitoinspid, c.Treatmentid, c.Containertype, c.Creationdate, c.Creator, c.Editdate, c.Editor, c.Geometry, c.Geospatial, c.Version, c.OrganizationID,
}
}
type fieldseekerContainerrelateIndexes struct {
ContainerrelatePkey index
}
func (i fieldseekerContainerrelateIndexes) AsSlice() []index {
return []index{
i.ContainerrelatePkey,
}
}
type fieldseekerContainerrelateForeignKeys struct {
FieldseekerContainerrelateContainerrelateOrganizationIDFkey foreignKey
}
func (f fieldseekerContainerrelateForeignKeys) AsSlice() []foreignKey {
return []foreignKey{
f.FieldseekerContainerrelateContainerrelateOrganizationIDFkey,
}
}
type fieldseekerContainerrelateUniques struct{}
func (u fieldseekerContainerrelateUniques) AsSlice() []constraint {
return []constraint{}
}
type fieldseekerContainerrelateChecks struct{}
func (c fieldseekerContainerrelateChecks) AsSlice() []check {
return []check{}
}