28 lines
986 B
Go
28 lines
986 B
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) {
|
|
Events = Events.FromSchema(schema)
|
|
Image = Image.FromSchema(schema)
|
|
ImageEvents = ImageEvents.FromSchema(schema)
|
|
ImageLinks = ImageLinks.FromSchema(schema)
|
|
ImageLocations = ImageLocations.FromSchema(schema)
|
|
ImageTags = ImageTags.FromSchema(schema)
|
|
ImageText = ImageText.FromSchema(schema)
|
|
Locations = Locations.FromSchema(schema)
|
|
UserEvents = UserEvents.FromSchema(schema)
|
|
UserImages = UserImages.FromSchema(schema)
|
|
UserImagesToProcess = UserImagesToProcess.FromSchema(schema)
|
|
UserLocations = UserLocations.FromSchema(schema)
|
|
UserTags = UserTags.FromSchema(schema)
|
|
Users = Users.FromSchema(schema)
|
|
}
|