Created
August 24, 2019 19:13
-
-
Save taufiqibrahim/5a2db353f1a81ba87dfc4924d8131b85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
class Container(models.Model): | |
container_host = models.URLField() | |
container_port = models.PositiveIntegerField() | |
container_default_message = models.CharField( | |
max_length=255 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment