Skip to content

Commit

Permalink
add slave dns
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin committed Apr 28, 2018
1 parent f9fd824 commit 5438957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bind/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def save(self, *args, **kwargs):
super(Record, self).save(*args, **kwargs)


class SlaveDns():
class SlaveDns(models.Model):
name = models.CharField(max_length=100, unique=True, verbose_name=u"域名")
value = models.IPAddressField(verbose_name=u"记录值")
create_time = models.DateTimeField(auto_now_add=True, verbose_name=u"创建时间")
Expand Down

0 comments on commit 5438957

Please sign in to comment.