mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
257 B
V
12 lines
257 B
V
|
module main
|
||
|
|
||
|
[table: 'users']
|
||
|
pub struct User {
|
||
|
mut:
|
||
|
id int [primary; sql: serial]
|
||
|
username string [required; sql_type: 'TEXT'; unique]
|
||
|
password string [required; sql_type: 'TEXT']
|
||
|
active bool
|
||
|
products []Product [fkey: 'user_id']
|
||
|
}
|