From d6d5ef4f844063d4dd3b28dee0dd4f800f7a2bbc Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 29 May 2016 19:37:45 +0200 Subject: [PATCH] migration for previous commit --- shop/migrations/0018_auto_20160529_1736.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shop/migrations/0018_auto_20160529_1736.py diff --git a/shop/migrations/0018_auto_20160529_1736.py b/shop/migrations/0018_auto_20160529_1736.py new file mode 100644 index 00000000..a01d722a --- /dev/null +++ b/shop/migrations/0018_auto_20160529_1736.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.2 on 2016-05-29 17:36 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('shop', '0017_auto_20160529_1626'), + ] + + operations = [ + migrations.RenameModel( + old_name='CoinifyCallback', + new_name='CoinifyAPICallback', + ), + ]