Files
services/user/migrate/entity/entity.go
2022-01-28 11:03:34 +00:00

18 lines
227 B
Go

package entity
import (
"fmt"
"time"
)
type Row struct {
Id string
Data string
CreatedAt time.Time
UpdatedAt time.Time
}
func KeyPrefix(tenantId string) string {
return fmt.Sprintf("user/%s/", tenantId)
}