https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
11 lines
280 B
SQL
11 lines
280 B
SQL
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');
|