Commit f3b8c35c by Renzo Lucioni

Merge pull request #89 from edx/renzo/drop-order-payment-processor

Drop payment_processor field from the Order model
parents 91140126 179ffa5c
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('order', '0007_create_history_tables'),
]
operations = [
migrations.RemoveField(
model_name='historicalorder',
name='payment_processor',
),
migrations.RemoveField(
model_name='order',
name='payment_processor',
),
]
...@@ -8,7 +8,6 @@ from ecommerce.extensions.fulfillment.status import ORDER ...@@ -8,7 +8,6 @@ from ecommerce.extensions.fulfillment.status import ORDER
class Order(AbstractOrder): class Order(AbstractOrder):
payment_processor = models.CharField(_("Payment Processor"), max_length=32, blank=True, null=True)
history = HistoricalRecords() history = HistoricalRecords()
@property @property
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment