librapi/services/sql/create_books_table.sql
2025-01-07 09:29:21 +01:00

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
)