88c809a50d
Allows users to view the profiles of other people.
23 lines
615 B
Python
23 lines
615 B
Python
# Generated by Django 2.0 on 2018-02-24 05:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('events', '0008_add-team-description'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='searchable',
|
|
name='venue_name',
|
|
field=models.CharField(blank=True, max_length=256),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='userprofile',
|
|
name='avatar',
|
|
field=models.URLField(blank=True, max_length=150, null=True, verbose_name='Photo Image'),
|
|
),
|
|
]
|