feat(repo,model,project): rename UUID field and row to just ID

This commit is contained in:
Guz
2025-06-10 15:04:13 -03:00
parent 2d3afd2ad6
commit d3589d2c63
2 changed files with 8 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ import (
)
type Project struct {
UUID uuid.UUID // Must be unique, represented as base64 string in URLs
ID uuid.UUID // Must be unique, represented as base64 string in URLs
Title string // Must not be empty
DateCreated time.Time
DateUpdated time.Time