site_url can be null
diff --git a/plstackapi/core/models.py b/plstackapi/core/models.py
index 7bb94d6..c57c7fc 100644
--- a/plstackapi/core/models.py
+++ b/plstackapi/core/models.py
@@ -15,7 +15,7 @@
 class Site(PlCoreBase):
     tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id")
     name = models.CharField(max_length=200, unique=True, help_text="Name for this Site")
-    site_url = models.URLField(help_text="Site's Home URL Page")
+    site_url = models.URLField(help_text="Site's Home URL Page", blank=True)
     enabled = models.BooleanField(default=True, help_text="Status for this Site")
     longitude = models.FloatField(null=True, blank=True)
     latitude = models.FloatField(null=True, blank=True)