release: HOTFIX
Build and Push Docker Image / build-and-push (push) Successful in 1m11s
Details
Build and Push Docker Image / build-and-push (push) Successful in 1m11s
Details
This commit is contained in:
parent
ae119ec5e1
commit
fc3e15205f
|
|
@ -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"}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ class Cooldown(Base):
|
|||
UniqueConstraint(
|
||||
"player_uuid", "cooldown_type", name="idx_hub_cooldowns_player_type"
|
||||
),
|
||||
{"schema": "hubmc"},
|
||||
{"schema": "public"},
|
||||
)
|
||||
|
||||
id = Column(
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class LuckPermsUserPermission(Base):
|
|||
"server",
|
||||
"world",
|
||||
),
|
||||
{"schema": "hubmc"},
|
||||
{"schema": "public"},
|
||||
)
|
||||
|
||||
id = Column(Integer, primary_key=True, autoincrement=True)
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in New Issue