Restructure our python module. A lot.

This commit is contained in:
Raphael Michel
2015-02-14 17:55:13 +01:00
parent cf18f3e200
commit 077413f41c
117 changed files with 193 additions and 163 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0007_auto_20150212_0939'),
]
operations = [
migrations.AddField(
model_name='quota',
name='locked',
field=models.DateTimeField(null=True, blank=True),
preserve_default=True,
),
]