Initial commit
This commit is contained in:
5
api/migrations/001_initial_schema.up.sql
Normal file
5
api/migrations/001_initial_schema.up.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
create table person (id integer not null primary key, name text);
|
||||
|
||||
insert into person (id, name)
|
||||
values (1, 'John');
|
||||
Reference in New Issue
Block a user