mirror of https://gitlab.federez.net/re2o/re2o
1 changed files with 49 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2019-08-16 13:41 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.conf import settings |
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
replaces = [('tickets', '0001_initial'), ('tickets', '0002_auto_20190710_0952'), ('tickets', '0003_ticket_email'), ('tickets', '0004_auto_20190712_1205'), ('tickets', '0005_auto_20190712_1209'), ('tickets', '0006_preferences'), ('tickets', '0007_preferences_publish_tickets')] |
|||
|
|||
initial = True |
|||
|
|||
dependencies = [ |
|||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='Ticket', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('title', models.CharField(help_text='Nom du ticket', max_length=255)), |
|||
('description', models.TextField(help_text='Description du ticket', max_length=3000)), |
|||
('date', models.DateTimeField(auto_now_add=True)), |
|||
('solved', models.BooleanField(default=False)), |
|||
('assigned_staff', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='tickets_assigned', to=settings.AUTH_USER_MODEL)), |
|||
('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='tickets', to=settings.AUTH_USER_MODEL)), |
|||
('email', models.EmailField(help_text='Une adresse mail pour vous recontacter', max_length=100, null=True)), |
|||
], |
|||
options={ |
|||
'verbose_name': 'Ticket', |
|||
'verbose_name_plural': 'Tickets', |
|||
}, |
|||
), |
|||
migrations.CreateModel( |
|||
name='Preferences', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('publish_address', models.EmailField(help_text='Adresse mail pour annoncer les nouveau tickets (laisser vide pour ne rien annoncer)', max_length=1000, null=True)), |
|||
('publish_tickets', models.BooleanField(default=True, help_text='Publier ou pas les tickets')), |
|||
], |
|||
options={ |
|||
'verbose_name': 'Préférences des tickets', |
|||
}, |
|||
), |
|||
] |
|||
Loading…
Reference in new issue