-- Ideas Generator 2025 - PostgreSQL Initialization Script -- This script sets up the database structure and initial data \echo 'Creating Ideas Generator 2025 database structure...' -- Create extensions if they don't exist CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; CREATE EXTENSION IF NOT EXISTS "pgcrypto"; -- Set timezone SET timezone = 'UTC'; \echo 'Database initialization completed successfully!' \echo 'The application will automatically run migrations on startup.' \echo 'Initial admin user will be created during the migration process.'