From b5e7ea3fa65d7c024f31b63f16b621db5aaed26b Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Fri, 31 Jan 2020 14:03:30 -0500 Subject: [PATCH] Fix column type on portfolios defense_component --- atst/models/portfolio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atst/models/portfolio.py b/atst/models/portfolio.py index f60ed8de..5a8f0f1e 100644 --- a/atst/models/portfolio.py +++ b/atst/models/portfolio.py @@ -22,7 +22,7 @@ class Portfolio( id = types.Id() name = Column(String, nullable=False) defense_component = Column( - String, nullable=False + ARRAY(String), nullable=False ) # Department of Defense Component app_migration = Column(String) # App Migration