1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-02-11 01:34
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('adhesions', '0005_auto_20170206_0039'),
- ]
- operations = [
- migrations.AddField(
- model_name='adherent',
- name='created',
- field=models.DateTimeField(auto_now_add=True, null=True),
- ),
- ]
|