~linuxgoose/bocpress

ref: 5e8eb74365d3cef3c9f158b00962e69709d4b518 bocpress/main/migrations/0037_auto_20200812_2126.py -rw-r--r-- 634 bytes
5e8eb743Jordan Robinson update dashboard to be workshop on the frontend 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Generated by Django 3.0.8 on 2020-08-12 21:26

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0036_auto_20200812_2102"),
    ]

    operations = [
        migrations.AlterField(
            model_name="comment",
            name="email",
            field=models.EmailField(blank=True, max_length=254, null=True),
        ),
        migrations.AlterField(
            model_name="comment",
            name="name",
            field=models.CharField(
                blank=True, default="Anonymous", max_length=150, null=True
            ),
        ),
    ]