1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

add ./v2 to gitignore

This commit is contained in:
Alexander Medvednikov
2019-12-17 01:21:10 +03:00
parent 6008fa44c6
commit 562f24336d
4 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1,22 @@
create database blog;
\c blog
drop table articles;
create table articles (
id serial primary key,
title text default '',
text text default ''
);
insert into articles (title, text) values (
'Hello, world!',
'V is great.'
);
insert into articles (title, text) values (
'Second post.',
'Hm... what should I write about?'
);