v / examples / veb_fullstack / product_entities.v
9 lines · 8 sloc · 199 bytes · b474aa0faf8d055aaced80ed0687ac354d0864a0
Raw
1module main
2
3@[table: 'products']
4struct Product {
5 id int @[primary; sql: serial]
6 user_id int
7 name string @[sql_type: 'TEXT']
8 created_at string @[default: 'CURRENT_TIMESTAMP']
9}
10