25 lines
691 B
Go
25 lines
691 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Skill model structure
|
|
// Represents a resume skill entry.
|
|
type Skill struct {
|
|
ID uuid.UUID `gorm:"type:uuid;default:gen_random_uuid();primaryKey" json:"id"`
|
|
Title string `gorm:"type:varchar(100);not null" json:"title"`
|
|
Degree int `gorm:"not null" json:"degree"`
|
|
ResumeID *uuid.UUID `gorm:"type:uuid" json:"resume_id,omitempty"`
|
|
IsActive bool `gorm:"default:false" json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
// TableName overrides the table name used by Skill to `skills`
|
|
func (Skill) TableName() string {
|
|
return "skills"
|
|
}
|