summaryrefslogtreecommitdiff
path: root/website/migrations/0002_proposal_open_to_share.py
blob: 129b36131238ad12cc34c8c1bf54fad3fac4a6b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.1 on 2018-08-22 14:59

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('website', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='proposal',
            name='open_to_share',
            field=models.CharField(default=1, max_length=2),
        ),
    ]