0011_user_eventify_id and 0012_user_eventify_id both added eventify_id field from different base migrations. Created 0013 merge node to unify the graph.
14 lines
295 B
Python
14 lines
295 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
"""Merge migration to resolve conflicting eventify_id migrations."""
|
|
|
|
dependencies = [
|
|
('accounts', '0011_user_eventify_id'),
|
|
('accounts', '0012_user_eventify_id'),
|
|
]
|
|
|
|
operations = [
|
|
]
|