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 = [
|
||
|
|
]
|