PayPal: Event-independent webhooks

This commit is contained in:
Raphael Michel
2017-07-23 12:38:41 +02:00
parent 5f529817ef
commit 1d2d9d8b99
8 changed files with 112 additions and 15 deletions

View File

@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-07-23 10:24
from __future__ import unicode_literals
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
('pretixbase', '0070_auto_20170719_0910'),
]
operations = [
migrations.CreateModel(
name='ReferencedPayPalObject',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('reference', models.CharField(db_index=True, max_length=190, unique=True)),
('order', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='pretixbase.Order')),
],
),
]