repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
nixos
/
tests
/
mysql
/
testdb.sql
blob
3c68c49ae82cd070eb54152d7937a95defd1ca73
1
create table tests
2
( Id INTEGER NOT NULL,
3
Name VARCHAR(255) NOT NULL,
4
primary key(Id)
5
);
6
7
insert into tests values (1, 'a');
8
insert into tests values (2, 'b');
9
insert into tests values (3, 'c');
10
insert into tests values (4, 'd');
11
insert into tests values (5, 'hello');