mirror of
https://github.com/Li4n0/revsuit.git
synced 2026-09-21 22:30:46 +08:00
fix: fix bug that the files associated with records still exist after deleting mysql and ftp records
This commit is contained in:
@@ -10,7 +10,7 @@ import (
|
|||||||
|
|
||||||
type File struct {
|
type File struct {
|
||||||
ID uint `gorm:"primarykey" form:"id" json:"id"`
|
ID uint `gorm:"primarykey" form:"id" json:"id"`
|
||||||
RecordID uint `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;" json:"-"`
|
RecordID uint `json:"-"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Content []byte `json:"-"`
|
Content []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ type Record struct {
|
|||||||
Path string `form:"path" json:"path"`
|
Path string `form:"path" json:"path"`
|
||||||
Method Method `form:"method" json:"method"`
|
Method Method `form:"method" json:"method"`
|
||||||
Status Status `form:"status" json:"status"`
|
Status Status `form:"status" json:"status"`
|
||||||
File *file.FTPFile `form:"file" json:"file" notice:"-"`
|
File *file.FTPFile `gorm:"foreignKey:RecordID;constraint:OnUpdate:CASCADE,OnDelete:CASCADE;" form:"file" json:"file" notice:"-"`
|
||||||
Rule Rule `gorm:"foreignKey:RuleName;references:Name;constraint:OnUpdate:CASCADE,OnDelete:SET NULL;" form:"-" json:"-" notice:"-"`
|
Rule Rule `gorm:"foreignKey:RuleName;references:Name;constraint:OnUpdate:CASCADE,OnDelete:SET NULL;" form:"-" json:"-" notice:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -23,7 +23,7 @@ type Record struct {
|
|||||||
Schema string `gorm:"index" form:"schema" json:"schema" notice:"schema"`
|
Schema string `gorm:"index" form:"schema" json:"schema" notice:"schema"`
|
||||||
ClientOS string `gorm:"index" form:"client_os" json:"client_os" notice:"client_os"`
|
ClientOS string `gorm:"index" form:"client_os" json:"client_os" notice:"client_os"`
|
||||||
LoadLocalData bool `gorm:"index" form:"load_local_data" json:"load_local_data" notice:"load_local_data"`
|
LoadLocalData bool `gorm:"index" form:"load_local_data" json:"load_local_data" notice:"load_local_data"`
|
||||||
Files []file.MySQLFile `form:"-" json:"files" notice:"-"`
|
Files []file.MySQLFile `gorm:"foreignKey:RecordID;constraint:OnUpdate:CASCADE,OnDelete:CASCADE;" form:"-" json:"files" notice:"-" `
|
||||||
Rule Rule `gorm:"foreignKey:RuleName;references:Name;constraint:OnUpdate:CASCADE,OnDelete:SET NULL;" form:"-" json:"-" notice:"-"`
|
Rule Rule `gorm:"foreignKey:RuleName;references:Name;constraint:OnUpdate:CASCADE,OnDelete:SET NULL;" form:"-" json:"-" notice:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user