ip관리대장 db연동필드 변경 && 환경변수 호출로직수정
All checks were successful
Build And Test / build-and-push (push) Successful in 4m5s

This commit is contained in:
2025-01-28 10:01:28 +09:00
parent 1d38fe26bd
commit aacd0e47d2
4 changed files with 16 additions and 6 deletions

View File

@ -7,7 +7,7 @@ class IPManagementRecord(models.Model):
network_nm = models.CharField(max_length=100) # NETWORK_NM
ip_addrs = models.CharField(max_length=50) # IP_ADDRS
svr_nm = models.CharField(max_length=100) # SVR_NM
contents = models.TextField(blank=True, null=True) # DESC
contents = models.TextField(blank=True, null=True) # desc -> contents
remark = models.TextField(blank=True, null=True) # REMARK
created_at = models.DateTimeField(auto_now_add=True) # 생성 시간 자동 기록
updated_at = models.DateTimeField(auto_now=True) # 수정 시간 자동 기록