add reasons column

pull/1/head
nathaniel smith 2016-11-30 22:48:50 -08:00
parent ad54b5a068
commit 31749726fc
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-12-01 06:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0005_townie_pubkey_type'),
]
operations = [
migrations.AddField(
model_name='townie',
name='reasons',
field=models.TextField(blank=True, default=''),
),
]