first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:35:24 +03:00
commit bbbf76b184
592 changed files with 246870 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package models
import (
"time"
"github.com/google/uuid"
)
// Experience model structure
// Represents a resume experience entry.
type Experience struct {
ID uuid.UUID `gorm:"type:uuid;default:gen_random_uuid();primaryKey" json:"id"`
BetweenYears string `gorm:"type:varchar(50);not null" json:"between_years"`
Title string `gorm:"type:varchar(100);not null" json:"title"`
Content string `gorm:"type:varchar(150);not null" json:"content"`
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 Experience to `experience`
func (Experience) TableName() string {
return "experience"
}