2023-01-06 04:36:42 +03:00
|
|
|
module main
|
|
|
|
|
|
|
|
[table: 'products']
|
|
|
|
struct Product {
|
|
|
|
id int [primary; sql: serial]
|
|
|
|
user_id int
|
2023-04-08 17:18:48 +03:00
|
|
|
name string [nonull; sql_type: 'TEXT']
|
2023-01-06 04:36:42 +03:00
|
|
|
created_at string [default: 'CURRENT_TIMESTAMP']
|
|
|
|
}
|