forked from ansible/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix length constraints on text fields
Use TEXT type for ImportTaskMessage model fields that may contain values longer than 256 characters.
- Loading branch information
Showing
2 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
galaxy/main/migrations/0123_fix_importtaskmessage_constraints.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.17 on 2018-12-13 13:47 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('main', '0122_auto_20181015_1802'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='importtaskmessage', | ||
name='message_text', | ||
field=models.TextField(), | ||
), | ||
migrations.AlterField( | ||
model_name='importtaskmessage', | ||
name='rule_desc', | ||
field=models.TextField(null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters