Files @ 34509d23eb9f
Branch filter:

Location: symposion_app/pinaxcon/raffle/migrations/0002_auto_20190102_1205.py

bsturmfels
Make vendored symposion into an installable Python package

This allows us to install with `pip install "-e vendor/symposion"` similar to
the other vendored packages. There's no good reason for this to be different to
the others and depend on PYTHONPATH hacking.

Re-add
# -*- coding: utf-8 -*-
# Generated by Django 1.11.14 on 2019-01-02 01:05
from __future__ import unicode_literals

from django.db import migrations


def get_admin_group_name(apps):
    from pinaxcon.raffle.apps import RaffleConfig
    return RaffleConfig.admin_group_name


def create_auth_group(apps, schema_editor):
    Group = apps.get_model("auth", "Group")
    Group.objects.get_or_create(name=get_admin_group_name(apps))


def delete_auth_group(apps, schema_editor):
    Group = apps.get_model("auth", "Group")
    Group.objects.filter(name=get_admin_group_name(apps)).delete()


class Migration(migrations.Migration):

    dependencies = [
        ('pinaxcon_raffle', '0001_initial'),
        ('auth', '0001_initial')
    ]

    operations = [
        migrations.RunPython(create_auth_group, delete_auth_group),
    ]