Added order to charter members

This commit is contained in:
2018-01-14 21:10:47 -05:00
parent 3346a3a6ec
commit 3c5b64db0b
6 changed files with 43 additions and 2 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-01-15 02:08
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('charter_members', '0003_auto_20180114_1722'),
]
operations = [
migrations.AddField(
model_name='attorney',
name='order',
field=models.IntegerField(blank=True, null=True, verbose_name='Order On Front Page'),
),
]