HiLo/homepage/migrations/0014_auto_20200914_0244.py
2020-09-14 02:44:39 -04:00

29 lines
838 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Generated by Django 3.1 on 2020-09-14 06:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0013_auto_20200827_0028'),
]
operations = [
migrations.AlterField(
model_name='poll',
name='ask_emotion',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='poll',
name='ask_name',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='poll',
name='place_text',
field=models.CharField(blank=True, default='fill it out by writing #HiLo and finishing it with where youre from (Ex. #HiLoArlington, #HiLoDC)', max_length=100, null=True),
),
]