aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/migrations/0049_deletedmessage_attachments.py
blob: 31ac239aebb84f26b7803a32b4558c6047ff59ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Generated by Django 2.2.6 on 2019-10-28 17:12

import django.contrib.postgres.fields
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('api', '0049_offensivemessage'),
    ]

    operations = [
        migrations.AddField(
            model_name='deletedmessage',
            name='attachments',
            field=django.contrib.postgres.fields.ArrayField(base_field=models.URLField(max_length=512), default=[], blank=True, help_text='Attachments attached to this message.', size=None),
            preserve_default=False,
        ),
    ]