This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/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');