mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
10 lines
206 B
V
10 lines
206 B
V
module main
|
|
|
|
[table: 'products']
|
|
struct Product {
|
|
id int [primary; sql: serial]
|
|
user_id int
|
|
name string [nonull; sql_type: 'TEXT']
|
|
created_at string [default: 'CURRENT_TIMESTAMP']
|
|
}
|