Skip to content
Snippets Groups Projects

Resolve "Rendered yaml is too long"

Merged Mick Mulder requested to merge 41-rendered-yaml-is-too-long into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -147,12 +147,12 @@ class Production(Base):
id = Column(Integer, primary_key=True)
# Columns
name = Column(String(256), nullable=False)
yaml = deferred(Column(UnicodeText, nullable=False))
# To save long rendered yaml files
UT_long = UnicodeText()
UT_long = UT_long.with_variant(mysql.MEDIUMTEXT, "mysql")
yaml = deferred(Column(UT_long, nullable=False))
rendered_yaml = deferred(Column(UT_long, nullable=False))
# Relationships
Loading