tutorials: rename vweb tutorial

This commit is contained in:
Alexander Medvednikov 2022-06-22 22:48:40 +03:00
parent ae2183043b
commit fe673e7963
14 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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?"
);