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

This commit is contained in:
Guz
2025-06-10 15:04:42 -03:00
parent d3589d2c63
commit 97429ab7cf

View File

@@ -17,7 +17,7 @@ var _ Model = (*Project)(nil)
func (m Project) Validate() error {
errs := []error{}
if len(m.UUID) == 0 {
if len(m.ID) == 0 {
errs = append(errs, ErrZeroValue{Name: "UUID"})
}
if m.Title == "" {