tutorials: more blog fixes (#5657)

This commit is contained in:
Lukas Neubert 2020-07-04 18:56:18 +02:00 committed by GitHub
parent 0626ac2901
commit fbfd92a899
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 60 additions and 64 deletions

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