Skip to content

Commit 9eee924

Browse files
committed
chore(rootfs/api/migrations): add db migration.
add DB migration for termination grace period
1 parent c2178f4 commit 9eee924

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.4 on 2018-04-24 01:41
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
import jsonfield.fields
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('api', '0026_release_exception'),
13+
]
14+
15+
operations = [
16+
migrations.AddField(
17+
model_name='config',
18+
name='termination_grace_period',
19+
field=jsonfield.fields.JSONField(blank=True, default={}),
20+
),
21+
]

0 commit comments

Comments
 (0)