Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
examples
/
veb_fullstack
/
user_entities.v
11
lines
·
10
sloc
·
233 bytes
·
b474aa0faf8d055aaced80ed0687ac354d0864a0
Raw
1
module
main
2
3
@[table:
'users'
]
4
pub
struct
User {
5
mut
:
6
id int @[primary; sql: serial]
7
username string @[sql_type:
'TEXT'
; unique]
8
password string @[sql_type:
'TEXT'
]
9
active bool
10
products []Product @[fkey:
'user_id'
]
11
}
12