diff --git a/database/schema/schema.sql b/database/schema/schema.sql index cc76221..7e24e57 100644 --- a/database/schema/schema.sql +++ b/database/schema/schema.sql @@ -1,6 +1,9 @@ -- Consolidated Bookhoard Database Schema -- This file contains the complete current schema for the Bookhoard media library management system +-- Create extensions for full-text search and fuzzy matching +CREATE EXTENSION IF NOT EXISTS pg_trgm; + -- Create library types table CREATE TABLE IF NOT EXISTS library_types ( id UUID PRIMARY KEY DEFAULT gen_random_uuid(),