Changes in club payments.
[wolnelektury.git] / src / club / migrations / 0008_membership_name.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.20 on 2019-04-17 13:39
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11         ('club', '0007_auto_20190416_1625'),
12     ]
13
14     operations = [
15         migrations.AddField(
16             model_name='membership',
17             name='name',
18             field=models.CharField(blank=True, max_length=255),
19         ),
20     ]