17 lines
357 B
Python
17 lines
357 B
Python
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('accounts', '0012_user_eventify_id'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='user',
|
||
|
|
name='district_changed_at',
|
||
|
|
field=models.DateTimeField(blank=True, null=True),
|
||
|
|
),
|
||
|
|
]
|