mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2026-03-02 22:55:21 +01:00
Enable sqlx "migrate" feature and add SQL migrations to create the database schema: pg_trgm extension, sources, genres, authors, sequences, books, junction tables, annotations, and supporting indexes
3 lines
98 B
SQL
3 lines
98 B
SQL
-- Create pg_trgm extension for trigram-based text search
|
|
CREATE EXTENSION IF NOT EXISTS pg_trgm;
|