@@ -29,9 +29,9 @@ type GitlabDeployment struct {
2929 ConnectionId uint64 `json:"connection_id" gorm:"primaryKey"`
3030 GitlabId int `json:"gitlab_id" gorm:"primaryKey"`
3131
32- CreatedDate time.Time `json:"created_date"`
33- UpdatedDate time.Time `json:"updated_date"`
34- Status string `json:"status"` //created, running, success, failed, canceled, or blocked
32+ CreatedDate time.Time `json:"created_date"`
33+ UpdatedDate * time.Time `json:"updated_date"`
34+ Status string `json:"status"` //created, running, success, failed, canceled, or blocked
3535
3636 DeploymentId int `json:"id" gorm:"primaryKey"`
3737 Iid int `json:"iid"`
@@ -78,13 +78,13 @@ type GitlabDeployment struct {
7878 DeployableUserWebsiteURL string `json:"deployable_user_website_url" gorm:"type:varchar(255)"`
7979 DeployableUserOrganization string `json:"deployable_user_organization" gorm:"type:varchar(255)"`
8080
81- DeployablePipelineCreatedAt time.Time `json:"deployable_pipeline_created_at"`
82- DeployablePipelineID int `json:"deployable_pipeline_id"`
83- DeployablePipelineRef string `json:"deployable_pipeline_ref" gorm:"type:varchar(255)"`
84- DeployablePipelineSha string `json:"deployable_pipeline_sha" gorm:"type:varchar(255)"`
85- DeployablePipelineStatus string `json:"deployable_pipeline_status" gorm:"type:varchar(255)"`
86- DeployablePipelineUpdatedAt time.Time `json:"deployable_pipeline_updated_at"`
87- DeployablePipelineWebURL string `json:"deployable_pipeline_web_url" gorm:"type:varchar(255)"`
81+ DeployablePipelineCreatedAt * time.Time `json:"deployable_pipeline_created_at"`
82+ DeployablePipelineID int `json:"deployable_pipeline_id"`
83+ DeployablePipelineRef string `json:"deployable_pipeline_ref" gorm:"type:varchar(255)"`
84+ DeployablePipelineSha string `json:"deployable_pipeline_sha" gorm:"type:varchar(255)"`
85+ DeployablePipelineStatus string `json:"deployable_pipeline_status" gorm:"type:varchar(255)"`
86+ DeployablePipelineUpdatedAt * time.Time `json:"deployable_pipeline_updated_at"`
87+ DeployablePipelineWebURL string `json:"deployable_pipeline_web_url" gorm:"type:varchar(255)"`
8888
8989 UserAvatarURL string `json:"user_avatar_url" gorm:"type:varchar(255)"`
9090 UserID int `json:"user_id"`
0 commit comments