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 |
package models |
||||||
|
|
||||||
import ( |
import ( |
||||||
|
"time" |
||||||
|
|
||||||
"gorm.io/gorm" |
"gorm.io/gorm" |
||||||
) |
) |
||||||
|
|
||||||
type Post struct { |
type Post struct { |
||||||
gorm.Model |
gorm.Model |
||||||
Name string |
Nik string |
||||||
Email string `gorm:"unique"` |
Name string |
||||||
Password string |
Photo string |
||||||
Gender string |
Birthdate time.Time |
||||||
Address string |
JobTitle string |
||||||
Tempat string |
Email string `gorm:"unique"` |
||||||
TLahir string |
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