mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
19 lines
472 B
Python
19 lines
472 B
Python
from __future__ import unicode_literals
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("club", "0005_auto_20161120_1149")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="membership",
|
|
name="start_date",
|
|
field=models.DateField(
|
|
verbose_name="start date", default=django.utils.timezone.now
|
|
),
|
|
)
|
|
]
|