Skip to content

Commit 91d62cb

Browse files
committed
Merge pull request #309 from mboersma/add-migration
fix(migrations): add certificate and key migrations
2 parents a1bc215 + 2f4d413 commit 91d62cb

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.1 on 2016-01-24 21:34
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+
('api', '0003_auto_20160114_0310'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='certificate',
17+
name='expires',
18+
field=models.DateTimeField(editable=False),
19+
),
20+
migrations.AlterField(
21+
model_name='key',
22+
name='fingerprint',
23+
field=models.CharField(editable=False, max_length=128),
24+
),
25+
]

0 commit comments

Comments
 (0)