2024-07-24 12:51:37 +05:30
|
|
|
package db
|
|
|
|
|
|
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
|
|
|
|
|
|
type SourceMap struct {
|
|
|
|
|
gorm.Model
|
|
|
|
|
ReleaseReferenceId string `gorm:"primaryKey"`
|
2024-07-30 16:54:39 +05:30
|
|
|
ProjectReferenceId string `gorm:"column:project_reference_id"`
|
2024-08-16 13:47:08 +05:30
|
|
|
FileName string `gorm:"column:file_name"`
|
|
|
|
|
State string `gorm:"column:state"`
|
2024-07-24 12:51:37 +05:30
|
|
|
}
|