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