allianceauth/hrapplications/migrations/0004_sorted_questions.py
Adarnof 5ce5f37867 Periodic checks of character ownership hashes.
Fix migration naming from merge.
2017-09-17 02:31:46 -04:00

23 lines
622 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-27 03:29
from __future__ import unicode_literals
from django.db import migrations
import sortedm2m.fields
from sortedm2m.operations import AlterSortedManyToManyField
class Migration(migrations.Migration):
dependencies = [
('hrapplications', '0003_make_strings_more_stringy'),
]
operations = [
AlterSortedManyToManyField(
model_name='applicationform',
name='questions',
field=sortedm2m.fields.SortedManyToManyField(help_text=None, to='hrapplications.ApplicationQuestion'),
),
]