v/tutorials/Building a simple web blog with vweb/code/blog/blog.sqlite
2022-06-22 22:48:40 +03:00

17 lines
308 B
Text

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?"
);