33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
//
|
|
// Code generated by go-jet DO NOT EDIT.
|
|
//
|
|
// WARNING: Changes to this file may cause incorrect behavior
|
|
// and will be lost if the code is regenerated
|
|
//
|
|
|
|
package table
|
|
|
|
// UseSchema sets a new schema name for all generated table SQL builder types. It is recommended to invoke
|
|
// this method only once at the beginning of the program.
|
|
func UseSchema(schema string) {
|
|
Contacts = Contacts.FromSchema(schema)
|
|
Events = Events.FromSchema(schema)
|
|
Image = Image.FromSchema(schema)
|
|
ImageContacts = ImageContacts.FromSchema(schema)
|
|
ImageEvents = ImageEvents.FromSchema(schema)
|
|
ImageLists = ImageLists.FromSchema(schema)
|
|
ImageLocations = ImageLocations.FromSchema(schema)
|
|
ImageSchemaItems = ImageSchemaItems.FromSchema(schema)
|
|
Lists = Lists.FromSchema(schema)
|
|
Locations = Locations.FromSchema(schema)
|
|
Logs = Logs.FromSchema(schema)
|
|
SchemaItems = SchemaItems.FromSchema(schema)
|
|
Schemas = Schemas.FromSchema(schema)
|
|
UserContacts = UserContacts.FromSchema(schema)
|
|
UserEvents = UserEvents.FromSchema(schema)
|
|
UserImages = UserImages.FromSchema(schema)
|
|
UserImagesToProcess = UserImagesToProcess.FromSchema(schema)
|
|
UserLocations = UserLocations.FromSchema(schema)
|
|
Users = Users.FromSchema(schema)
|
|
}
|