Skip to content

Commit b5319c5

Browse files
committed
Updated the utils.DumpInfo model to match the database.
- Legacy-Id: 13330
1 parent db40ddc commit b5319c5

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
class DumpInfo(models.Model):
66
date = models.DateTimeField()
77
host = models.CharField(max_length=128)
8+
tz = models.CharField(max_length=32, default='UTC')
89

0 commit comments

Comments
 (0)