Files
2025-04-20 05:30:19 +02:00

5 lines
121 B
SQL

create table blog_posts (
id integer primary key autoincrement,
title text not null,
content text not null
);