18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
|
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?"
|
||
|
);
|