diff options
author | Sashi20 | 2018-08-31 17:11:11 +0530 |
---|---|---|
committer | GitHub | 2018-08-31 17:11:11 +0530 |
commit | 90dcf938991b993c178ab7546621f9c0984ab886 (patch) | |
tree | 2745e92cfccf1ad1acb2bb0888e74f319e439630 /website/migrations | |
parent | bcab14cebae96aa10645999c8c006c5749a066b1 (diff) | |
parent | 0d2e0f5384be0e3b20a8cdcff30ea16cb632841a (diff) | |
download | nccps-2018-90dcf938991b993c178ab7546621f9c0984ab886.tar.gz nccps-2018-90dcf938991b993c178ab7546621f9c0984ab886.tar.bz2 nccps-2018-90dcf938991b993c178ab7546621f9c0984ab886.zip |
Merge pull request #4 from Sashi20/development
Added tentative schedule,registration table,guidelines for cfp
Diffstat (limited to 'website/migrations')
-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..4d3002e --- /dev/null +++ b/website/migrations/0002_proposal_open_to_share.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-08-28 05:33 + +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), + ), + ] |