1 parent db40ddc commit b5319c5Copy full SHA for b5319c5
2 files changed
ietf/utils/migrations/0002_dumpinfo_tz.py
@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.10.7 on 2017-05-12 08:19
3
+from __future__ import unicode_literals
4
+
5
+from django.db import migrations, models
6
7
8
+class Migration(migrations.Migration):
9
10
+ dependencies = [
11
+ ('utils', '0001_initial'),
12
+ ]
13
14
+ operations = [
15
+ migrations.AddField(
16
+ model_name='dumpinfo',
17
+ name='tz',
18
+ field=models.CharField(default=b'UTC', max_length=32),
19
+ ),
20
ietf/utils/models.py
@@ -5,4 +5,5 @@
class DumpInfo(models.Model):
date = models.DateTimeField()
host = models.CharField(max_length=128)
+ tz = models.CharField(max_length=32, default='UTC')
0 commit comments