21 lines
456 B
Python
21 lines
456 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.2 on 2016-05-17 06:00
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('shop', '0008_auto_20160516_0954'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='epaycallback',
|
||
|
name='md5valid',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|