diff options
author | Prashant S | 2018-08-23 17:03:41 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:03:41 +0530 |
commit | b0b42e5553658fbd3aee833b555435a4401d208c (patch) | |
tree | e9fd275a3fd808f9c25a1f343210c6e997e22a38 /website/migrations/0002_proposal_open_to_share.py | |
parent | e5eeecc7abdce65aa81d6b68ba4304068ee1a5ca (diff) | |
parent | 756d9e437cc0e573558046d7ad2b1e629487865d (diff) | |
download | SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.gz SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.bz2 SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.zip |
Merge pull request #8 from prashantsinalkar/development
added new 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), + ), + ] |