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