15 lines
226 B
V
15 lines
226 B
V
module main
|
|
|
|
import time
|
|
|
|
@[table: 'booking']
|
|
pub struct Booking {
|
|
mut:
|
|
id int @[primary; sql: serial]
|
|
name string
|
|
user_id int
|
|
flight_id int
|
|
status string @[sql_type: 'TEXT']
|
|
created_at time.Time
|
|
}
|