12 lines
286 B
Go
12 lines
286 B
Go
package db
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type SourceMap struct {
|
|
gorm.Model
|
|
ReleaseReferenceId string `gorm:"primaryKey"`
|
|
ProjectReferenceId string `gorm:"column:project_reference_id"`
|
|
FileName string `gorm:"column:file_name"`
|
|
State string `gorm:"column:state"`
|
|
}
|