initial rebuild

This commit is contained in:
allanice001
2025-09-01 13:34:13 +01:00
commit 95bd9615d1
100 changed files with 12440 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package models
import "github.com/google/uuid"
type Organization struct {
ID uuid.UUID `gorm:"type:uuid;primaryKey;default:gen_random_uuid()" json:"id"`
Name string `gorm:"not null" json:"name"`
Slug string `gorm:"unique" json:"slug"`
Logo string `json:"logo"`
Metadata string `json:"metadata"`
Timestamped
}