Skip to content

Commit d7970fc

Browse files
authored
Merge pull request #8 from biojs/develop
Increased size for fields 'License' in database
2 parents 8275408 + 0d08145 commit d7970fc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
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.10 on 2018-06-03 07:45
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+
('main', '0005_auto_20180603_0736'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='component',
17+
name='license',
18+
field=models.CharField(max_length=50, null=True),
19+
),
20+
migrations.AlterField(
21+
model_name='component',
22+
name='version',
23+
field=models.CharField(max_length=50, null=True),
24+
),
25+
]

0 commit comments

Comments
 (0)