1module entity 2 3import time 4 5pub struct Post { 6pub mut: 7 id int @[primary; sql: serial] 8 author_id int 9 10 title string 11 body string 12 13 pinned bool 14 15 posted_at time.Time = time.now() 16}