fix: update HTML title to mockupAWS
Some checks failed
E2E Tests / Run E2E Tests (push) Has been cancelled
E2E Tests / Visual Regression Tests (push) Has been cancelled
E2E Tests / Smoke Tests (push) Has been cancelled

- Change generic 'frontend' title to 'mockupAWS - AWS Cost Simulator'
- Resolves frontend branding issue identified in testing
This commit is contained in:
Luca Sacchi Ricciardi
2026-04-07 18:45:02 +02:00
parent 4c6eb67ba7
commit 285a748d6a
18 changed files with 669 additions and 24 deletions

View File

@@ -50,7 +50,19 @@ def upgrade() -> None:
sa.Column(
"generated_by", sa.String(100), nullable=True
), # user_id or api_key_id
sa.Column("metadata", postgresql.JSONB(), server_default="{}"),
sa.Column("extra_data", postgresql.JSONB(), server_default="{}"),
sa.Column(
"created_at",
sa.DateTime(timezone=True),
server_default=sa.text("NOW()"),
nullable=False,
),
sa.Column(
"updated_at",
sa.DateTime(timezone=True),
server_default=sa.text("NOW()"),
nullable=False,
),
)
# Add indexes