2017-07-21 15:48:40 +02:00
# -*- coding: utf-8 -*-
2017-07-21 20:56:49 +02:00
# Generated by Django 1.11.3 on 2017-07-21 18:29
2017-07-21 15:48:40 +02:00
from __future__ import unicode_literals
from django . db import migrations , models
import django . db . models . deletion
class Migration ( migrations . Migration ) :
initial = True
dependencies = [
2017-07-21 20:56:49 +02:00
( ' event ' , ' 0001_initial ' ) ,
2017-07-21 15:48:40 +02:00
( ' auth ' , ' 0008_alter_user_username_max_length ' ) ,
]
operations = [
migrations . CreateModel (
name = ' GEGroup ' ,
fields = [
( ' group_ptr ' , models . OneToOneField ( auto_created = True , on_delete = django . db . models . deletion . CASCADE , parent_link = True , primary_key = True , serialize = False , to = ' auth.Group ' ) ) ,
2017-07-21 20:56:49 +02:00
( ' event ' , models . ForeignKey ( blank = True , help_text = " Si spécifié, l ' instance du modèle est spécifique à l ' évènement en question " , null = True , on_delete = django . db . models . deletion . CASCADE , to = ' event.Event ' , verbose_name = ' évènement ' ) ) ,
2017-07-21 15:48:40 +02:00
] ,
2017-07-21 20:56:49 +02:00
options = {
' abstract ' : False ,
} ,
bases = ( ' auth.group ' , models . Model ) ,
2017-07-21 15:48:40 +02:00
) ,
]