mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
- Introduced ogTitle, ogDescription, and ogImageUrl fields in the Link model for improved social media previews. - Updated the database schema to accommodate new Open Graph fields. - Modified link creation and editing forms to include inputs for Open Graph metadata. - Enhanced the GET route to serve Open Graph metadata for bots. This update allows for better customization of shared links, improving their presentation on social media platforms.
5 lines
163 B
SQL
5 lines
163 B
SQL
-- AlterTable
|
|
ALTER TABLE "link"
|
|
ADD COLUMN "og_description" VARCHAR(500),
|
|
ADD COLUMN "og_image_url" VARCHAR(500),
|
|
ADD COLUMN "og_title" VARCHAR(500);
|