-- 1.sql create table authors ( id integer generated always as identity primary key, name text not null ); -- 2.sql create index concurrently authors_name_idx on authors (name);