Files
4/src/faculty_entities.v
2024-07-18 01:08:21 +05:30

19 lines
421 B
V

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
}