create table if not exists articles (
id integer primary key autoincrement,
content string not null,
create_time timestamp not null,
title string not null
);
create table if not exists articles (
id integer primary key autoincrement,
content string not null,
create_time timestamp not null,
title string not null
);