blob: 99f6efc0b3c542118e59f9b96d59c1a152e67f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('certificate', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='certificate',
name='name',
field=models.CharField(default='ABC', max_length=100),
preserve_default=False,
),
]
|