add pubkey_type migration

pull/1/head
nathaniel smith 2016-11-21 21:15:15 -08:00
parent 80e4a85883
commit 6d6104d962
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-11-22 05:01
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0004_auto_20161121_0755'),
]
operations = [
migrations.AddField(
model_name='townie',
name='pubkey_type',
field=models.CharField(choices=[('ssh-rsa', 'ssh-rsa'), ('ssh-dss', 'ssh-dss')], default='ssh-rsa', max_length=15),
preserve_default=False,
),
]