From 4e103455d06496f357b41f31c4bf6eaafb2c6391 Mon Sep 17 00:00:00 2001
From: Jorrit Schaap <schaap@astron.nl>
Date: Wed, 9 Sep 2020 15:34:29 +0200
Subject: [PATCH] TMSS-272: default false

---
 SAS/TMSS/src/tmss/tmssapp/models/scheduling.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SAS/TMSS/src/tmss/tmssapp/models/scheduling.py b/SAS/TMSS/src/tmss/tmssapp/models/scheduling.py
index a84cdfe8ef9..0c08cfa0830 100644
--- a/SAS/TMSS/src/tmss/tmssapp/models/scheduling.py
+++ b/SAS/TMSS/src/tmss/tmssapp/models/scheduling.py
@@ -310,7 +310,7 @@ class Filesystem(NamedCommon):
 
 class Cluster(NamedCommon):
     location = CharField(max_length=128, help_text='Human-readable location of the cluster.')
-    archive_site = BooleanField(help_text='TRUE if this cluster is an archive site, FALSE if not (f.e. a local cluster, or user-owned cluster).')
+    archive_site = BooleanField(default=False, null=False, help_text='TRUE if this cluster is an archive site, FALSE if not (f.e. a local cluster, or user-owned cluster).')
 
 
 class DataproductArchiveInfo(BasicCommon):
-- 
GitLab