Files
geo/server/migrations/20260416113000_add_image_asset_content_hash.down.sql
T
root 27389164b0 feat: add image management functionality
- Implemented image folder repository with CRUD operations.
- Added image reference repository for managing image references to articles.
- Created image repository for handling image assets, including listing, inserting, updating, and deleting images.
- Introduced image usage repository to track storage usage and quotas for tenants.
- Added SQL queries for image assets, folders, references, and usage.
- Developed image handler for HTTP endpoints to manage images and folders.
- Created database migration scripts for image-related tables and structures.
2026-04-16 20:40:41 +08:00

5 lines
128 B
SQL

DROP INDEX IF EXISTS idx_image_assets_tenant_content_hash_active;
ALTER TABLE image_assets
DROP COLUMN IF EXISTS content_hash;