Seyora24
1 year ago
4 changed files with 36 additions and 7 deletions
@ -0,0 +1,15 @@
|
||||
package models |
||||
|
||||
import ( |
||||
"time" |
||||
|
||||
"gorm.io/gorm" |
||||
) |
||||
|
||||
type LoginRecord struct { |
||||
gorm.Model |
||||
LoginDate time.Time |
||||
|
||||
UserIDs string `gorm:"type:text"` |
||||
Users []Post `json:"users" gorm:"-"` |
||||
} |
@ -1,16 +1,29 @@
|
||||
package models |
||||
|
||||
import ( |
||||
"time" |
||||
|
||||
"gorm.io/gorm" |
||||
) |
||||
|
||||
type Post struct { |
||||
gorm.Model |
||||
Name string |
||||
Email string `gorm:"unique"` |
||||
Password string |
||||
Gender string |
||||
Address string |
||||
Tempat string |
||||
TLahir string |
||||
Nik string |
||||
Name string |
||||
Photo string |
||||
Birthdate time.Time |
||||
JobTitle string |
||||
Email string `gorm:"unique"` |
||||
LastLoginAt time.Time |
||||
CreatedBy string |
||||
UpdatedBy string |
||||
DeletedBy string |
||||
Token string |
||||
Username string |
||||
RoleID int |
||||
Password string |
||||
Gender string |
||||
Address string |
||||
Tempat string |
||||
TLahir string |
||||
} |
||||
|
Binary file not shown.
Loading…
Reference in new issue