Skip to content

Commit

Permalink
hotfix for migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
melizeche committed Apr 9, 2020
1 parent 29026ef commit 95cd41f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 2.2.12 on 2020-04-09 19:19
# Generated by Django 2.2.11 on 2020-04-09 21:12

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0005_auto_20200409_1519'),
('core', '0004_redefine_requestvotes'),
]

operations = [
Expand All @@ -18,4 +18,9 @@ class Migration(migrations.Migration):
('active', models.BooleanField(db_index=True, default=True)),
],
),
migrations.AlterField(
model_name='helprequest',
name='address',
field=models.CharField(help_text='Para ayudar a quien quiera ayudarte saber la dirección, ciudad, barrio, referencias, o como llegar', max_length=400, null=True, verbose_name='Dirección'),
),
]
2 changes: 2 additions & 0 deletions core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class HelpRequest(models.Model):
"Dirección",
help_text="Para ayudar a quien quiera ayudarte saber la dirección, ciudad, barrio, referencias, o como llegar",
max_length=400,
blank=False,
null=True,
)
location = models.PointField(
"Ubicación",
Expand Down

0 comments on commit 95cd41f

Please sign in to comment.