fix: remove active field in environment

This commit is contained in:
2025-09-23 16:27:28 +05:30
parent 4f63215fba
commit 3752e12919
2 changed files with 2 additions and 3 deletions

View File

@@ -17,7 +17,6 @@ type Environment struct {
ID uint `gorm:"primaryKey"`
Name string
Data string
Active bool
ProjectID uint
Project Project `gorm:"constraint:OnUpdate:CASCADE,OnDelete:SET NULL;"`
}