Fix ordering issue on agenda.html.
- Legacy-Id: 9150
Note: SVN reference [9141] has been migrated to Git commit 29ac6363a1
23 lines
471 B
Python
23 lines
471 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations # pyflakes:ignore
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('group', '0002_auto_20150208_1012'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='group',
|
|
name='ad',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='grouphistory',
|
|
name='ad',
|
|
),
|
|
]
|