8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-28 15:42:25 +00:00
re2o/users/migrations/0085_user_ssh_key.py

21 lines
475 B
Python
Raw Normal View History

2019-12-21 14:36:48 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-12-21 12:55
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0084_auto_20191120_0159'),
]
operations = [
migrations.AddField(
model_name='user',
name='ssh_key',
field=models.TextField(blank=True, verbose_name='Public ssh key'),
),
]