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