mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
tutorials: rename vweb tutorial
This commit is contained in:
parent
ae2183043b
commit
fe673e7963
14 changed files with 93 additions and 0 deletions
|
@ -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?"
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue