mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
22 lines
598 B
Python
22 lines
598 B
Python
# 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', '0004_make_strings_more_stringy'),
|
|
]
|
|
|
|
operations = [
|
|
AlterSortedManyToManyField(
|
|
model_name='applicationform',
|
|
name='questions',
|
|
field=sortedm2m.fields.SortedManyToManyField(help_text=None, to='hrapplications.ApplicationQuestion'),
|
|
),
|
|
]
|