Files
bookhoard/database/schema/007_add_scan_settings.up.sql
T
john-okeefe 08e80ae84b refactor: reorganize project structure and update configurations
- Move migrations/ to database/schema/ for clarity on database schema definitions
- Move sqlc.yaml to internal/database/ to group with database code
- Move static/ to cmd/server/static/ to co-locate with server
- Update all configuration files and documentation
- Follow Go project conventions for better organization
2026-01-24 23:40:31 -05:00

3 lines
176 B
SQL

-- Add scan settings to users table
ALTER TABLE users ADD COLUMN scan_frequency_minutes INTEGER DEFAULT 60;
ALTER TABLE users ADD COLUMN auto_scan_enabled BOOLEAN DEFAULT true;