5 lines
161 B
SQL
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
|