add pubkey_type migration
This commit is contained in:
parent
80e4a85883
commit
6d6104d962
21
ttadmin/users/migrations/0005_townie_pubkey_type.py
Normal file
21
ttadmin/users/migrations/0005_townie_pubkey_type.py
Normal 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,
|
||||
),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user