v/tutorials/Building a simple web blog .../code/blog/blog.sqlite

18 lines
308 B
Plaintext

drop table if exists Article;
create table Article (
id integer primary key,
title text default "",
text text default ""
);
insert into Article (title, text) values (
"Hello, world!",
"V is great."
);
insert into Article (title, text) values (
"Second post.",
"Hm... what should I write about?"
);