19 lines
388 B
Go
19 lines
388 B
Go
package dbo
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/oklog/ulid/v2"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ActivityDBO struct {
|
|
gorm.Model
|
|
ID ulid.ULID `gorm:"primaryKey;type:uuid"`
|
|
CreatedAt time.Time `gorm:"not null"`
|
|
UpdatedAt time.Time `gorm:"not null"`
|
|
LastEditorID ulid.ULID
|
|
Name string `gorm:"type:varchar(255);not null"`
|
|
BillingRate float64 `gorm:"type:decimal(10,2)"`
|
|
}
|