summaryrefslogtreecommitdiff
path: root/website/migrations/0002_proposal_open_to_share.py
diff options
context:
space:
mode:
authorPrashant S2018-08-23 17:40:00 +0530
committerGitHub2018-08-23 17:40:00 +0530
commitfd8043402a56fe47f47938b3874c93607616a20c (patch)
tree840a015b9bb62c4b7715212453f1235411f5efb1 /website/migrations/0002_proposal_open_to_share.py
parent5fc9c374d7139d8364519a9f28f07be645d62eeb (diff)
parent83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff)
downloadSciPy2018-master.tar.gz
SciPy2018-master.tar.bz2
SciPy2018-master.zip
Merge pull request #10 from FOSSEE/developmentHEADmaster
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.py18
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),
+ ),
+ ]