We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e54351b commit 3676822Copy full SHA for 3676822
1 file changed
api/app/environments/infra/environment_settings_model.py
@@ -25,7 +25,9 @@ class EnvironmentSettings(Base):
25
nullable=False,
26
index=True,
27
)
28
- settings = Column(JSONBCompat, nullable=False) # list of {key, value, description, type}
+ settings = Column(
29
+ JSONBCompat, nullable=False
30
+ ) # list of {key, value, description, type}
31
32
environment = relationship("Environment", back_populates="environment_settings")
33
organization = relationship("Organization", back_populates="environment_settings")
0 commit comments