Fix #258 -- Add a comment field to bank transactions

This commit is contained in:
Raphael Michel
2016-10-08 20:18:35 +02:00
parent 166fedb4ef
commit d43d6f485b
6 changed files with 104 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-10-08 17:50
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('banktransfer', '0002_auto_20160908_2020'),
]
operations = [
migrations.AddField(
model_name='banktransaction',
name='comment',
field=models.TextField(blank=True),
),
]