Initial commit

This commit is contained in:
2024-07-25 17:23:46 +02:00
commit d5a015328d
28 changed files with 3870 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
create table person (id integer not null primary key, name text);
insert into person (id, name)
values (1, 'John');

View File

@@ -0,0 +1,4 @@
insert into person (id, name)
values (2, 'John');

View File

@@ -0,0 +1,4 @@
insert into person (id, name)
values (3, 'Katja');