mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tutorials: more blog fixes (#5657)
This commit is contained in:
17
tutorials/code/blog/blog.sqlite
Normal file
17
tutorials/code/blog/blog.sqlite
Normal file
@ -0,0 +1,17 @@
|
||||
drop table 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?"
|
||||
);
|
Reference in New Issue
Block a user