release: HOTFIX
Build and Push Docker Image / build-and-push (push) Successful in 1m11s Details

This commit is contained in:
itqop 2025-11-12 20:33:09 +03:00
parent ae119ec5e1
commit fc3e15205f
7 changed files with 9 additions and 9 deletions

View File

@ -16,4 +16,4 @@ class Base(DeclarativeBase):
@declared_attr.directive
def __table_args__(cls):
"""Set default schema for all tables."""
return {"schema": "hubmc"}
return {"schema": "public"}

View File

@ -15,7 +15,7 @@ class Cooldown(Base):
UniqueConstraint(
"player_uuid", "cooldown_type", name="idx_hub_cooldowns_player_type"
),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(

View File

@ -13,7 +13,7 @@ class Home(Base):
__tablename__ = "hub_homes"
__table_args__ = (
UniqueConstraint("player_uuid", "name", name="idx_hub_homes_player_name"),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(

View File

@ -41,7 +41,7 @@ class LuckPermsUserPermission(Base):
"server",
"world",
),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(Integer, primary_key=True, autoincrement=True)

View File

@ -31,9 +31,9 @@ class Punishment(Base):
Index(
"idx_hub_punishments_player_ip",
"player_ip",
postgresql_where=Column("player_ip") != None,
postgresql_where=Column("player_ip").is_not(None),
),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(

View File

@ -15,7 +15,7 @@ class Warp(Base):
Index(
"idx_hub_warps_public", "is_public", postgresql_where=Column("is_public")
),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(

View File

@ -19,9 +19,9 @@ class WhitelistEntry(Base):
Index(
"idx_hub_whitelist_expires",
"expires_at",
postgresql_where=Column("expires_at") != None,
postgresql_where=Column("expires_at").is_not(None),
),
{"schema": "hubmc"},
{"schema": "public"},
)
id = Column(