# -*- coding: utf-8 -*- # Generated by Django 1.9.7 on 2016-09-02 09:25 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion import django.utils.timezone class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('wallets', '0013_merge'), ] operations = [ migrations.CreateModel( name='PayFromScore', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sum', models.DecimalField(decimal_places=0, default=0, max_digits=20)), ('stages_id', models.CharField(blank=True, max_length=100, null=True)), ('created_at', models.DateTimeField(default=django.utils.timezone.now, editable=False)), ('customer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='customer_payfromscore', to=settings.AUTH_USER_MODEL)), ], ), ]