From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

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