mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
11 lines
242 B
V
11 lines
242 B
V
module main
|
|
|
|
@[table: 'users']
|
|
pub struct User {
|
|
mut:
|
|
id int @[primary; sql: serial]
|
|
username string @[sql_type: 'TEXT'; unique]
|
|
password string @[sql_type: 'TEXT']
|
|
active bool
|
|
products []Product @[fkey: 'user_id']
|
|
}
|