gadl/migrations/2_add_title_authors.sql
2023-12-24 22:10:01 +09:00

5 lines
161 B
SQL

-- migrate:up
alter table books add column title text not null default '';
alter table books add column authors json not null default '[]';
-- migrate:down