5 lines
121 B
SQL
5 lines
121 B
SQL
create table blog_posts (
|
|
id integer primary key autoincrement,
|
|
title text not null,
|
|
content text not null
|
|
); |