migrations for previous commit
This commit is contained in:
parent
131aa96690
commit
7eae7ee9ff
27
shop/migrations/0016_auto_20160529_1122.py
Normal file
27
shop/migrations/0016_auto_20160529_1122.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.2 on 2016-05-29 11:22
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import django.contrib.postgres.fields.jsonb
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('shop', '0015_coinifyapiinvoice_coinifycallback'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='coinifycallback',
|
||||
name='headers',
|
||||
field=django.contrib.postgres.fields.jsonb.JSONField(default=''),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='coinifycallback',
|
||||
name='valid',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue