diff options
author | Sashi20 | 2019-09-17 10:59:21 +0530 |
---|---|---|
committer | GitHub | 2019-09-17 10:59:21 +0530 |
commit | 2c0ae85d4f8d12f0df857482bd2168f185e65816 (patch) | |
tree | 13cbc683a18034d52cb47d6ab8051d401cecb088 /website | |
parent | ff54a0e14c1d686e5564a883a121ac30c1cda911 (diff) | |
parent | b8ec4fb70254d26a88f3856648399bf68dfb2921 (diff) | |
download | SciPy2019-2c0ae85d4f8d12f0df857482bd2168f185e65816.tar.gz SciPy2019-2c0ae85d4f8d12f0df857482bd2168f185e65816.tar.bz2 SciPy2019-2c0ae85d4f8d12f0df857482bd2168f185e65816.zip |
Merge pull request #18 from Sashi20/development
Modify the text for about us and increase the maximum length for registration details
Diffstat (limited to 'website')
-rw-r--r-- | website/migrations/0002_auto_20190917_0525.py | 18 | ||||
-rw-r--r-- | website/models.py | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/website/migrations/0002_auto_20190917_0525.py b/website/migrations/0002_auto_20190917_0525.py new file mode 100644 index 0000000..7f89535 --- /dev/null +++ b/website/migrations/0002_auto_20190917_0525.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-09-17 05:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='registrationdetail', + name='registration_description', + field=models.TextField(blank=True, max_length=500, null=True), + ), + ] diff --git a/website/models.py b/website/models.py index f6d2f24..dd6f08d 100644 --- a/website/models.py +++ b/website/models.py @@ -160,4 +160,4 @@ class RegistrationDetail(models.Model): start_date = models.DateTimeField(blank=True, null = True) end_date = models.DateTimeField(blank=True, null=True) registration_ticket = models.CharField(max_length=100, blank=True, null=True) - registration_description = models.CharField(max_length=250, blank= True, null= True) + registration_description = models.TextField(max_length=500, blank= True, null= True) |