mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Basic creating, editing and updating of organizers
This commit is contained in:
19
src/pretix/base/migrations/0002_auto_20150524_1148.py
Normal file
19
src/pretix/base/migrations/0002_auto_20150524_1148.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pretixbase', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='organizer',
|
||||
name='slug',
|
||||
field=models.SlugField(verbose_name='Slug'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user