summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
Diffstat (limited to 'website')
-rw-r--r--website/migrations/0002_auto_20190917_0525.py18
-rw-r--r--website/models.py2
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)