fix(migrations): replace relative imports with absolute in PR-7 migrations
Migration runner executes scripts outside package context — relative imports fail. Pattern matches all other migration files. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
1e5a07b06e
commit
f4a82dcf76
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
"""Add PROCESSING_FAILED status to job schema validator and create failure indexes."""
|
||||
from ..migrator import Migration
|
||||
from app.migrations.migrator import Migration
|
||||
|
||||
|
||||
class Migration(Migration):
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
"""Create job_briefs collection with indexes."""
|
||||
from ..migrator import Migration
|
||||
from app.migrations.migrator import Migration
|
||||
|
||||
|
||||
class Migration(Migration):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue