Files
4/src/faculty_entities.v
2024-07-05 23:57:32 +05:30

14 lines
372 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']
}