23 lines
794 B
Go
23 lines
794 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) {
|
|
MediaResources = MediaResources.FromSchema(schema)
|
|
Medias = Medias.FromSchema(schema)
|
|
Migrations = Migrations.FromSchema(schema)
|
|
TenantUserBalances = TenantUserBalances.FromSchema(schema)
|
|
Tenants = Tenants.FromSchema(schema)
|
|
UserBalanceHistories = UserBalanceHistories.FromSchema(schema)
|
|
UserMedias = UserMedias.FromSchema(schema)
|
|
Users = Users.FromSchema(schema)
|
|
UsersTenants = UsersTenants.FromSchema(schema)
|
|
}
|