9 lines
206 B
SQL
9 lines
206 B
SQL
create table if not exists books (
|
|
name text primary key,
|
|
description text,
|
|
editor text not null,
|
|
authors jsonb not null,
|
|
year int not null,
|
|
keywords jsonb,
|
|
path text not null
|
|
) |