1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.2 on 2017-06-07 21:06
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('accounts', '0005_profile_ssh_keys'),
- ]
- operations = [
- migrations.AlterField(
- model_name='profile',
- name='ssh_keys',
- field=models.TextField(blank=True, default='', verbose_name='Clefs SSH'),
- ),
- ]
|