Files
galaxy-game/backend/internal/postgres/jet/backend/table/table_use_schema.go
T
2026-05-07 00:58:53 +03:00

46 lines
2.0 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) {
Accounts = Accounts.FromSchema(schema)
AdminAccounts = AdminAccounts.FromSchema(schema)
Applications = Applications.FromSchema(schema)
AuthChallenges = AuthChallenges.FromSchema(schema)
BlockedEmails = BlockedEmails.FromSchema(schema)
DeviceSessions = DeviceSessions.FromSchema(schema)
EngineVersions = EngineVersions.FromSchema(schema)
EntitlementRecords = EntitlementRecords.FromSchema(schema)
EntitlementSnapshots = EntitlementSnapshots.FromSchema(schema)
Games = Games.FromSchema(schema)
Invites = Invites.FromSchema(schema)
LimitActive = LimitActive.FromSchema(schema)
LimitRecords = LimitRecords.FromSchema(schema)
MailAttempts = MailAttempts.FromSchema(schema)
MailDeadLetters = MailDeadLetters.FromSchema(schema)
MailDeliveries = MailDeliveries.FromSchema(schema)
MailPayloads = MailPayloads.FromSchema(schema)
MailRecipients = MailRecipients.FromSchema(schema)
Memberships = Memberships.FromSchema(schema)
NotificationDeadLetters = NotificationDeadLetters.FromSchema(schema)
NotificationMalformedIntents = NotificationMalformedIntents.FromSchema(schema)
NotificationRoutes = NotificationRoutes.FromSchema(schema)
Notifications = Notifications.FromSchema(schema)
PlayerMappings = PlayerMappings.FromSchema(schema)
RaceNames = RaceNames.FromSchema(schema)
RuntimeHealthSnapshots = RuntimeHealthSnapshots.FromSchema(schema)
RuntimeOperationLog = RuntimeOperationLog.FromSchema(schema)
RuntimeRecords = RuntimeRecords.FromSchema(schema)
SanctionActive = SanctionActive.FromSchema(schema)
SanctionRecords = SanctionRecords.FromSchema(schema)
SessionRevocations = SessionRevocations.FromSchema(schema)
UserCountryCounters = UserCountryCounters.FromSchema(schema)
}