31 lines
784 B
Python
31 lines
784 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-09-25 16:24
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("members", "0015_auto_20170925_1917"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="member",
|
|
name="created",
|
|
field=models.DateTimeField(
|
|
default=django.utils.timezone.now, verbose_name="Created"
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="payment",
|
|
name="date",
|
|
field=models.DateTimeField(
|
|
default=django.utils.timezone.now, verbose_name="Date"
|
|
),
|
|
),
|
|
]
|