gadl/migrations/2_add_title_authors.sql

3 lines
130 B
MySQL
Raw Normal View History

2023-11-20 22:56:09 +09:00
alter table books add column title text not null default '';
alter table books add column authors json not null default '[]';