1module entity 2 3pub struct Notification { 4pub mut: 5 id int @[primary; sql: serial] 6 user_id int 7 summary string 8 body string 9}