mirror of https://github.com/jumpserver/jumpserver
[Update] 允许资产ip填写为host地址
parent
84610f2a2c
commit
e8ceb58292
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.1.7 on 2019-05-21 09:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('assets', '0026_auto_20190325_2035'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='asset',
|
||||
name='ip',
|
||||
field=models.CharField(db_index=True, max_length=128, verbose_name='IP'),
|
||||
),
|
||||
]
|
|
@ -71,7 +71,7 @@ class Asset(OrgModelMixin):
|
|||
)
|
||||
|
||||
id = models.UUIDField(default=uuid.uuid4, primary_key=True)
|
||||
ip = models.GenericIPAddressField(max_length=32, verbose_name=_('IP'), db_index=True)
|
||||
ip = models.CharField(max_length=128, verbose_name=_('IP'), db_index=True)
|
||||
hostname = models.CharField(max_length=128, verbose_name=_('Hostname'))
|
||||
protocol = models.CharField(max_length=128, default=PROTOCOL_SSH, choices=PROTOCOL_CHOICES, verbose_name=_('Protocol'))
|
||||
port = models.IntegerField(default=22, verbose_name=_('Port'))
|
||||
|
|
|
@ -81,3 +81,4 @@ tencentcloud-sdk-python==3.0.40
|
|||
django-radius==1.3.3
|
||||
ipip-ipdb==1.2.1
|
||||
django-redis-sessions==0.6.1
|
||||
unicodecsv==0.14.1
|
||||
|
|
Loading…
Reference in New Issue