CREATE TABLE IF NOT EXISTS posts( id bigserial PRIMARY KEY, content text NOT NULL, title text NOT NULL, user_id bigserial NOT NULL, tags text[], reply_ids integer[], created_at timestamp(0) with time zone NOT NULL DEFAULT NOW(), updated_at timestamp(0) with time zone NOT NULL DEFAULT NOW() );