I am creating a table called Posts in which I want to have:
id SERIAL PRIMARY KEY
, title
, message TEXT
, created_by INTEGER
.
I am having question on the title
and message
fields.
Type TEXT
is what I want to use for message
, but what about title
? Shall I use varchar(255)
?