Added private_key field to UserHostingkey model, some html updates
This commit is contained in:
parent
8986aa6550
commit
d2d96e9951
5 changed files with 45 additions and 10 deletions
20
hosting/migrations/0041_userhostingkey_private_key.py
Normal file
20
hosting/migrations/0041_userhostingkey_private_key.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.4 on 2017-07-06 09:06
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('hosting', '0040_hostingplan'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='userhostingkey',
|
||||
name='private_key',
|
||||
field=models.FileField(blank=True, upload_to='private_keys'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue