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