1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/examples/vweb_fullstack/src/product_entities.v
2023-01-06 04:36:42 +03:00

10 lines
208 B
V

module main
[table: 'products']
struct Product {
id int [primary; sql: serial]
user_id int
name string [required; sql_type: 'TEXT']
created_at string [default: 'CURRENT_TIMESTAMP']
}