14 lines
297 B
Python
14 lines
297 B
Python
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
"""Merge migration to resolve conflicting 0013 migrations."""
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('accounts', '0013_merge_eventify_id'),
|
||
|
|
('accounts', '0013_user_district_changed_at'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
]
|