Zuerst das bigint(20) not null auto_increment nicht funktionieren, verwenden Sie einfach bigserial primary key . Dann datetime ist timestamp in PostgreSQL. Alles in allem:
CREATE TABLE article (
article_id bigserial primary key,
article_name varchar(20) NOT NULL,
article_desc text NOT NULL,
date_added timestamp default NULL
);