Add merge migration; COmmit bean changes
This commit is contained in:
@@ -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.
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
# nuzlocke-tracker-m86o
|
# nuzlocke-tracker-m86o
|
||||||
title: Add naming scheme selection to run configuration
|
title: Add naming scheme selection to run configuration
|
||||||
status: in-progress
|
status: completed
|
||||||
type: task
|
type: task
|
||||||
priority: normal
|
priority: normal
|
||||||
created_at: 2026-02-11T15:56:44Z
|
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
|
parent: nuzlocke-tracker-igl3
|
||||||
blocking:
|
blocking:
|
||||||
- nuzlocke-tracker-bi4e
|
- nuzlocke-tracker-bi4e
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
# nuzlocke-tracker-spx3
|
# nuzlocke-tracker-spx3
|
||||||
title: Evaluate separate seed/init container after PokeDB import
|
title: Evaluate separate seed/init container after PokeDB import
|
||||||
status: draft
|
status: scrapped
|
||||||
type: task
|
type: task
|
||||||
priority: low
|
priority: low
|
||||||
created_at: 2026-02-10T14:30:57Z
|
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.
|
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.
|
||||||
|
|||||||
@@ -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
|
||||||
Reference in New Issue
Block a user