summary refs log tree commit diff
path: root/nixos/tests/testdb.sql
blob: 3c68c49ae82cd070eb54152d7937a95defd1ca73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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');