Skip to content

Commit

Permalink
Model/Fallout: Increase version's size
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaio committed May 29, 2021
1 parent 82e5379 commit 6ed8ff9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Unreleased
----------

* Model/Fallout: Increase version's size


Version 1.5.5
-------------

Expand Down
18 changes: 18 additions & 0 deletions ports/migrations/0004_auto_20210523_0034.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.5 on 2021-05-23 00:34

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ports', '0003_fallout_flavor'),
]

operations = [
migrations.AlterField(
model_name='fallout',
name='version',
field=models.CharField(max_length=48),
),
]
2 changes: 1 addition & 1 deletion ports/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __str__(self):
class Fallout(models.Model):
port = models.ForeignKey(Port, on_delete=models.CASCADE)
env = models.CharField(max_length=48)
version = models.CharField(max_length=24)
version = models.CharField(max_length=48)
category = models.CharField(max_length=48)
maintainer = models.EmailField()
last_committer = models.EmailField()
Expand Down

0 comments on commit 6ed8ff9

Please sign in to comment.