Skip to content

Commit

Permalink
Merge pull request #5597 from saadmk11/env-value-update
Browse files Browse the repository at this point in the history
Update Environmental Variable character limit
  • Loading branch information
ericholscher committed Apr 17, 2019
2 parents 2872832 + 5985ff0 commit a992ad1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-04-16 18:43
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('projects', '0041_index-repo-field'),
]

operations = [
migrations.AlterField(
model_name='environmentvariable',
name='value',
field=models.CharField(help_text='Value of the environment variable', max_length=2048),
),
]
2 changes: 1 addition & 1 deletion readthedocs/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,7 @@ class EnvironmentVariable(TimeStampedModel, models.Model):
help_text=_('Name of the environment variable'),
)
value = models.CharField(
max_length=256,
max_length=2048,
help_text=_('Value of the environment variable'),
)
project = models.ForeignKey(
Expand Down

0 comments on commit a992ad1

Please sign in to comment.