diff options
author | Prashant S | 2018-08-23 17:40:00 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:40:00 +0530 |
commit | fd8043402a56fe47f47938b3874c93607616a20c (patch) | |
tree | 840a015b9bb62c4b7715212453f1235411f5efb1 /website/migrations/0002_proposal_open_to_share.py | |
parent | 5fc9c374d7139d8364519a9f28f07be645d62eeb (diff) | |
parent | 83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff) | |
download | SciPy2018-master.tar.gz SciPy2018-master.tar.bz2 SciPy2018-master.zip |
added new html files and views.
Diffstat (limited to 'website/migrations/0002_proposal_open_to_share.py')
-rw-r--r-- | website/migrations/0002_proposal_open_to_share.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/website/migrations/0002_proposal_open_to_share.py b/website/migrations/0002_proposal_open_to_share.py new file mode 100644 index 0000000..129b361 --- /dev/null +++ b/website/migrations/0002_proposal_open_to_share.py @@ -0,0 +1,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), + ), + ] |