mirror of https://github.com/jumpserver/jumpserver
15 lines
390 B
Python
15 lines
390 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .common import Asset
|
|
|
|
|
|
class Database(Asset):
|
|
db_name = models.CharField(max_length=1024, verbose_name=_("Database"), blank=True)
|
|
|
|
def __str__(self):
|
|
return '{}({}://{}/{})'.format(self.hostname, self.type, self.ip, self.db_name)
|
|
|
|
class Meta:
|
|
verbose_name = _("Database")
|