nixos/tests: move mysql tests to subfolder

This commit is contained in:
Izorkin
2020-05-06 16:42:29 +03:00
parent 5487e155d7
commit 8af9c97c0d
6 changed files with 8 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
create table tests
( Id INTEGER NOT NULL,
Name VARCHAR(255) NOT NULL,
primary key(Id)
);
insert into tests values (1, 'a');
insert into tests values (2, 'b');
insert into tests values (3, 'c');
insert into tests values (4, 'd');
insert into tests values (5, 'hello');