15 lines
199 B
Go
15 lines
199 B
Go
package user
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type UserEntity struct {
|
|
gorm.Model
|
|
Name string
|
|
SlackUserId string
|
|
Active bool
|
|
}
|
|
|
|
func (UserEntity) TableName() string {
|
|
return "houston_user"
|
|
}
|