Add merge migration; COmmit bean changes
Some checks failed
CI / backend-lint (push) Failing after 8s
CI / frontend-lint (push) Successful in 32s

This commit is contained in:
2026-02-11 21:51:35 +01:00
parent 39d18c241e
commit 734fb50f0a
4 changed files with 43 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
---
# nuzlocke-tracker-l272
title: Add boss data to seed files for all games
status: completed
type: feature
priority: normal
created_at: 2026-02-11T20:23:20Z
updated_at: 2026-02-11T20:31:27Z
---
Add gym leaders, Elite Four, champions and equivalents for all remaining games. Add kahuna and totem boss types for Alola games. Create 11 new seed files, complete 2 existing ones, and update frontend types/UI for new boss types.

View File

@@ -1,11 +1,11 @@
---
# nuzlocke-tracker-m86o
title: Add naming scheme selection to run configuration
status: in-progress
status: completed
type: task
priority: normal
created_at: 2026-02-11T15:56:44Z
updated_at: 2026-02-11T20:35:59Z
updated_at: 2026-02-11T20:37:00Z
parent: nuzlocke-tracker-igl3
blocking:
- nuzlocke-tracker-bi4e

View File

@@ -1,11 +1,11 @@
---
# nuzlocke-tracker-spx3
title: Evaluate separate seed/init container after PokeDB import
status: draft
status: scrapped
type: task
priority: low
created_at: 2026-02-10T14:30:57Z
updated_at: 2026-02-10T14:30:57Z
updated_at: 2026-02-11T20:15:43Z
---
After the PokeDB.org data import (beans-bs05) is complete, evaluate whether the seed data has grown enough to justify splitting seeding into a separate init container.

View File

@@ -0,0 +1,28 @@
"""merge naming_scheme and genlocke_transfers
Revision ID: e5f70a1ca323
Revises: e5f6a7b8c9d1, e5f6a7b9c0d1
Create Date: 2026-02-11 21:49:29.942841
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = 'e5f70a1ca323'
down_revision: Union[str, Sequence[str], None] = ('e5f6a7b8c9d1', 'e5f6a7b9c0d1')
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
pass
def downgrade() -> None:
"""Downgrade schema."""
pass