mirror of
https://github.com/pretix/pretix.git
synced 2026-09-13 16:14:40 +00:00
Make all orders "guest orders"
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pretixbase', '0018_eventlock_token'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='order',
|
||||
old_name='guest_email',
|
||||
new_name='email',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='order',
|
||||
old_name='guest_locale',
|
||||
new_name='locale',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='cartposition',
|
||||
name='user',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='order',
|
||||
name='user',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user