Files
spend-sparrow/api/migrations/001_initial_schema.up.sql
2024-07-25 17:23:46 +02:00

6 lines
119 B
SQL

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