about summary refs log tree commit diff
path: root/nixos/tests/mysql/testdb.sql
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/mysql/testdb.sql')
-rw-r--r--nixos/tests/mysql/testdb.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/tests/mysql/testdb.sql b/nixos/tests/mysql/testdb.sql
new file mode 100644
index 000000000000..3c68c49ae82c
--- /dev/null
+++ b/nixos/tests/mysql/testdb.sql
@@ -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');