Skip to content

Commit d13fbdb

Browse files
committed
fix(tls): add migrations for certs_auto_enabled
1 parent f134fab commit d13fbdb

1 file changed

Lines changed: 20 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.11.20 on 2019-04-02 01:57
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', '0028_config_termination_grace_period'),
12+
]
13+
14+
operations = [
15+
migrations.AddField(
16+
model_name='tls',
17+
name='certs_auto_enabled',
18+
field=models.NullBooleanField(default=None),
19+
),
20+
]

0 commit comments

Comments
 (0)