blob: 58502452083ae08d312d510c1d68c9563facd96d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import datetime
from django.utils.timezone import utc
class Migration(migrations.Migration):
dependencies = [
('releng', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='release',
name='last_modified',
field=models.DateTimeField(default=datetime.datetime(2001, 1, 1, tzinfo=utc), editable=False),
preserve_default=False,
),
]
|