go-todos-app/sql/init.sql
Michael Thomson 6f7bcc9503
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/dryrun Pipeline was successful
ci/woodpecker/push/publish-tag Pipeline was successful
ci/woodpecker/push/publish-latest Pipeline was successful
postgres and such
2024-06-17 23:37:43 -04:00

6 lines
144 B
SQL

CREATE TABLE IF NOT EXISTS migration (
id serial primary key not null,
name text not null,
applied_at timestamp not null default now()
);