Discover Packages
github.com/jadengis/modserver
models
package
Version:
v0.0.0-...-cec3f95
Opens a new window with list of versions in this module.
Published: Dec 31, 2017
License: MIT
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type BaseModel struct {
ID uint `sql:"type: bigint PRIMARY KEY" json:"id,string"`
CreatedAt time .Time `json:"createdAt"`
UpdatedAt time .Time `json:"updatedAt"`
DeletedAt *time .Time `json:"deletedAt,omitempty"`
}
type User struct {
BaseModel
Age int `json:"age"`
Name string `gorm:"type:varchar(100)" json:"name"`
Email string `gorm:"type:varchar(100);unique_index" json:"email"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.