28 lines
854 B
Python
28 lines
854 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.11 on 2018-08-09 12:00
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('equipment', '0008_auto_20180808_1454'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='added_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2018, 8, 9, 12, 0, 50, 140250, tzinfo=utc), verbose_name='ajouté le'),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='modified_at',
|
|
field=models.DateTimeField(auto_now=True, verbose_name='dernière modification'),
|
|
),
|
|
]
|