module main @[table: 'faculty'] pub struct Faculty { mut: id int @[primary; sql: serial] firstname string @[sql_type: 'TEXT'] lastname string @[sql_type: 'TEXT'] email string @[sql_type: 'TEXT'; unique] access_level int @[sql_type: 'INTEGER'] password string @[sql_type: 'TEXT'] // products []Product @[fkey: 'user_id'] } pub struct Status { mut: ok bool msg string }