package
2.7.4+incompatible
Repository: https://github.com/meansquarederror/sqlboiler.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# Functions

ColumnDBTypes of the columns.
ColumnNames of the columns.
FilterColumnsByAuto generates the list of columns that have autogenerated values.
FilterColumnsByDefault generates the list of columns that have default values.
FilterColumnsByEnum generates the list of columns that are enum values.
GetTable by name.
SQLColDefinitions creates a definition in sql format for a column.
Tables returns the metadata for all tables, minus the tables specified in the blacklist.
ToManyRelationships relationship lookups Input should be the sql name of a table like: videos.
ToOneRelationships relationship lookups Input should be the sql name of a table like: videos.

# Structs

Column holds information about a database column.
ForeignKey represents a foreign key constraint in a database.
PrimaryKey represents a primary key constraint in a database.
SQLColumnDef formats a column name and type like an SQL column definition.
Table metadata from the database schema.
ToManyRelationship describes a relationship between two tables where the local table has no id, and the foreign table has an id that matches a column in the local table.
ToOneRelationship describes a relationship between two tables where the local table has no id, and the foregin table has an id that matches a column in the local table, that column is also unique which changes the dynamic into a one-to-one style, not a to-many.

# Interfaces

Interface for a database driver.

# Type aliases

SQLColumnDefs has small helper functions.