Open humansinstitute opened 4 days ago
A new ticket table in the Tribes database that:
The table should be implemented using the following GORM structure:
goCopytype Ticket struct { UUID string `gorm:"primaryKey;type:uuid;default:uuid_generate_v4()"` FeatureUUID string `gorm:"type:uuid;not null;index"` PhaseUUID string `gorm:"type:uuid;not null;index"` Name string `gorm:"type:varchar(255);not null"` Sequence int `gorm:"type:integer;not null"` Dependency []int `gorm:"type:integer[]"` Description string `gorm:"type:text"` Status TicketStatus `gorm:"type:varchar(50);not null;default:'draft'"` CreatedAt time.Time `gorm:"type:timestamp;not null;default:current_timestamp"` UpdatedAt time.Time `gorm:"type:timestamp;not null;default:current_timestamp"` }
Functional Requirements
Technical Requirements
Testing Requirements
@humansinstitute Please assign me
@humansinstitute could you please assign me?
@humansinstitute please assign me
Context
Task
Outcome
A new ticket table in the Tribes database that:
Design
Database Schema Implementation
The table should be implemented using the following GORM structure:
Required Indexes
Acceptance Criteria
Functional Requirements
Technical Requirements
Testing Requirements