vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / mysql / testdb.sql
blob3c68c49ae82cd070eb54152d7937a95defd1ca73
1 create table tests
2 ( Id   INTEGER      NOT NULL,
3   Name VARCHAR(255) NOT NULL,
4   primary key(Id)
5 );
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');