feat: admin dashboard
This commit is contained in:
@@ -531,6 +531,22 @@ MIGRATIONS: List[Migration] = [
|
||||
description="Add tariff catalog columns and traffic accounting tables",
|
||||
upgrade=_migration_0012_add_tariffs_schema,
|
||||
),
|
||||
Migration(
|
||||
id="0013_add_app_setting_overrides",
|
||||
description="Persisted runtime overrides for application settings managed via admin webapp",
|
||||
upgrade=lambda connection: connection.execute(
|
||||
text(
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS app_setting_overrides (
|
||||
key VARCHAR(128) PRIMARY KEY,
|
||||
value TEXT,
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_by BIGINT
|
||||
)
|
||||
"""
|
||||
)
|
||||
),
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user