From fb8882d06e82a8702a7854ecc32e9340c1ba5b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Delobelle?= Date: Thu, 11 Aug 2016 06:49:39 +0200 Subject: [PATCH] Rename model: Statement -> CheckoutStatement Nom plus clair --- kfet/migrations/0027_auto_20160811_0648.py | 39 ++++++++++++++++++++++ kfet/models.py | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 kfet/migrations/0027_auto_20160811_0648.py diff --git a/kfet/migrations/0027_auto_20160811_0648.py b/kfet/migrations/0027_auto_20160811_0648.py new file mode 100644 index 00000000..25bd826b --- /dev/null +++ b/kfet/migrations/0027_auto_20160811_0648.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('kfet', '0026_auto_20160809_0810'), + ] + + operations = [ + migrations.CreateModel( + name='CheckoutStatement', + fields=[ + ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)), + ('balance_old', models.DecimalField(decimal_places=2, max_digits=6)), + ('balance_new', models.DecimalField(decimal_places=2, max_digits=6)), + ('amount_taken', models.DecimalField(decimal_places=2, max_digits=6)), + ('amount_error', models.DecimalField(decimal_places=2, max_digits=6)), + ('at', models.DateTimeField(auto_now_add=True)), + ('by', models.ForeignKey(to='kfet.Account', on_delete=django.db.models.deletion.PROTECT, related_name='+')), + ('checkout', models.ForeignKey(to='kfet.Checkout', on_delete=django.db.models.deletion.PROTECT, related_name='statements')), + ], + ), + migrations.RemoveField( + model_name='statement', + name='by', + ), + migrations.RemoveField( + model_name='statement', + name='checkout', + ), + migrations.DeleteModel( + name='Statement', + ), + ] diff --git a/kfet/models.py b/kfet/models.py index f1128b18..a4c7d1d4 100644 --- a/kfet/models.py +++ b/kfet/models.py @@ -247,7 +247,7 @@ class CheckoutTransfer(models.Model): amount = models.DecimalField( max_digits = 6, decimal_places = 2) -class Statement(models.Model): +class CheckoutStatement(models.Model): by = models.ForeignKey( Account, on_delete = models.PROTECT, related_name = "+")