We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c37d2e commit 2f4d413Copy full SHA for 2f4d413
1 file changed
rootfs/api/migrations/0004_auto_20160124_2134.py
@@ -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
21
+ model_name='key',
22
+ name='fingerprint',
23
+ field=models.CharField(editable=False, max_length=128),
24
25
0 commit comments