- 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
2 lines
116 B
SQL
2 lines
116 B
SQL
-- Drop the old ebook_folder_path column from users table
|
|
ALTER TABLE users DROP COLUMN IF EXISTS ebook_folder_path; |