From 50714faa96ed8040816d60a2876095dbc79a0624 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 17 Jul 2018 14:56:23 +0200 Subject: [PATCH] voucher contains activity_type field --- .../migrations/0117_voucher_activity_type.py | 20 +++++++++++++++++++ smash/web/models/voucher.py | 7 +++++++ 2 files changed, 27 insertions(+) create mode 100644 smash/web/migrations/0117_voucher_activity_type.py diff --git a/smash/web/migrations/0117_voucher_activity_type.py b/smash/web/migrations/0117_voucher_activity_type.py new file mode 100644 index 00000000..ef1198ed --- /dev/null +++ b/smash/web/migrations/0117_voucher_activity_type.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-07-17 12:54 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('web', '0116_auto_20180611_1346'), + ] + + operations = [ + migrations.AddField( + model_name='voucher', + name='activity_type', + field=models.CharField(blank=True, default=b'', max_length=40, verbose_name=b'Activity type'), + ), + ] diff --git a/smash/web/models/voucher.py b/smash/web/models/voucher.py index 2f47fae0..560b5896 100644 --- a/smash/web/models/voucher.py +++ b/smash/web/models/voucher.py @@ -48,6 +48,13 @@ class Voucher(models.Model): default=VOUCHER_STATUS_NEW ) + activity_type = models.CharField(max_length=40, + verbose_name='Activity type', + null=False, + blank=True, + default='' + ) + feedback = models.TextField(max_length=2000, blank=True, verbose_name='Feedback' -- GitLab