nidus-sync/db/dbinfo/fs_fieldscoutinglog.bob.go
Eli Ribble 7c4fb02908
Move to latest bobgen, add fieldseeker schema references
This is an intermediate step between shifting from the old fs_* prefixed
table names to an entire fieldseeker schema. At this point we have both,
and we aren't doing much with the new schema but compiling.
2025-12-02 00:28:14 +00:00

247 lines
5.4 KiB
Go

// Code generated by BobGen psql v0.42.0. 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 FSFieldscoutinglogs = Table[
fsFieldscoutinglogColumns,
fsFieldscoutinglogIndexes,
fsFieldscoutinglogForeignKeys,
fsFieldscoutinglogUniques,
fsFieldscoutinglogChecks,
]{
Schema: "",
Name: "fs_fieldscoutinglog",
Columns: fsFieldscoutinglogColumns{
OrganizationID: column{
Name: "organization_id",
DBType: "integer",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Creationdate: column{
Name: "creationdate",
DBType: "bigint",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Creator: column{
Name: "creator",
DBType: "text",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editdate: column{
Name: "editdate",
DBType: "bigint",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Editor: column{
Name: "editor",
DBType: "text",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Globalid: column{
Name: "globalid",
DBType: "text",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Objectid: column{
Name: "objectid",
DBType: "integer",
Default: "",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
Status: column{
Name: "status",
DBType: "smallint",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
CreatedDate: column{
Name: "created_date",
DBType: "bigint",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
CreatedUser: column{
Name: "created_user",
DBType: "text",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
GeometryX: column{
Name: "geometry_x",
DBType: "double precision",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
GeometryY: column{
Name: "geometry_y",
DBType: "double precision",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedDate: column{
Name: "last_edited_date",
DBType: "bigint",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
LastEditedUser: column{
Name: "last_edited_user",
DBType: "text",
Default: "NULL",
Comment: "",
Nullable: true,
Generated: false,
AutoIncr: false,
},
Updated: column{
Name: "updated",
DBType: "timestamp without time zone",
Default: "CURRENT_TIMESTAMP",
Comment: "",
Nullable: false,
Generated: false,
AutoIncr: false,
},
},
Indexes: fsFieldscoutinglogIndexes{
FSFieldscoutinglogPkey: index{
Type: "btree",
Name: "fs_fieldscoutinglog_pkey",
Columns: []indexColumn{
{
Name: "objectid",
Desc: null.FromCond(false, true),
IsExpression: false,
},
},
Unique: true,
Comment: "",
NullsFirst: []bool{false},
NullsDistinct: false,
Where: "",
Include: []string{},
},
},
PrimaryKey: &constraint{
Name: "fs_fieldscoutinglog_pkey",
Columns: []string{"objectid"},
Comment: "",
},
ForeignKeys: fsFieldscoutinglogForeignKeys{
FSFieldscoutinglogFSFieldscoutinglogOrganizationIDFkey: foreignKey{
constraint: constraint{
Name: "fs_fieldscoutinglog.fs_fieldscoutinglog_organization_id_fkey",
Columns: []string{"organization_id"},
Comment: "",
},
ForeignTable: "organization",
ForeignColumns: []string{"id"},
},
},
Comment: "",
}
type fsFieldscoutinglogColumns struct {
OrganizationID column
Creationdate column
Creator column
Editdate column
Editor column
Globalid column
Objectid column
Status column
CreatedDate column
CreatedUser column
GeometryX column
GeometryY column
LastEditedDate column
LastEditedUser column
Updated column
}
func (c fsFieldscoutinglogColumns) AsSlice() []column {
return []column{
c.OrganizationID, c.Creationdate, c.Creator, c.Editdate, c.Editor, c.Globalid, c.Objectid, c.Status, c.CreatedDate, c.CreatedUser, c.GeometryX, c.GeometryY, c.LastEditedDate, c.LastEditedUser, c.Updated,
}
}
type fsFieldscoutinglogIndexes struct {
FSFieldscoutinglogPkey index
}
func (i fsFieldscoutinglogIndexes) AsSlice() []index {
return []index{
i.FSFieldscoutinglogPkey,
}
}
type fsFieldscoutinglogForeignKeys struct {
FSFieldscoutinglogFSFieldscoutinglogOrganizationIDFkey foreignKey
}
func (f fsFieldscoutinglogForeignKeys) AsSlice() []foreignKey {
return []foreignKey{
f.FSFieldscoutinglogFSFieldscoutinglogOrganizationIDFkey,
}
}
type fsFieldscoutinglogUniques struct{}
func (u fsFieldscoutinglogUniques) AsSlice() []constraint {
return []constraint{}
}
type fsFieldscoutinglogChecks struct{}
func (c fsFieldscoutinglogChecks) AsSlice() []check {
return []check{}
}