Najpierw bigint(20) not null auto_increment
nie zadziała, wystarczy użyć bigserial primary key
. Następnie datetime
to timestamp
w PostgreSQL. W sumie:
CREATE TABLE article (
article_id bigserial primary key,
article_name varchar(20) NOT NULL,
article_desc text NOT NULL,
date_added timestamp default NULL
);