mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-01 07:32:47 +00:00
24 lines
615 B
Python
24 lines
615 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.28 on 2020-04-22 16:39
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('tickets', '0002_auto_20191120_0159'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RenameModel(
|
||
|
old_name='Preferences',
|
||
|
new_name='TicketOption',
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='ticketoption',
|
||
|
options={'permissions': (('view_ticketoption', 'Can view tickets options'),), 'verbose_name': 'tickets options'},
|
||
|
),
|
||
|
]
|