22 lines
622 B
Python
22 lines
622 B
Python
# Generated by Django 2.1 on 2018-08-12 14:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pretix_stripe2', '0002_referencedstripe2object_payment'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='RegisteredStripe2ApplePayDomain',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('domain', models.CharField(max_length=190)),
|
|
('account', models.CharField(max_length=190)),
|
|
],
|
|
),
|
|
]
|