05b2a44209
- Rename project source directory from src/ to source/ - Update CI workflows (ci-joomla, pr-check, repo-health) to check source/ first, falling back to src/ and htdocs/ for compat - Update .gitignore vendor exception path - manifest.xml entry-point already updated Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 lines
1.3 KiB
SQL
27 lines
1.3 KiB
SQL
--
|
|
-- MokoJoomOpenGraph - Database Schema
|
|
-- Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
-- License: GPL-3.0-or-later
|
|
--
|
|
|
|
CREATE TABLE IF NOT EXISTS `#__mokoog_tags` (
|
|
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`content_type` VARCHAR(100) NOT NULL DEFAULT '' COMMENT 'e.g. com_content, menu, com_virtuemart',
|
|
`content_id` INT(11) UNSIGNED NOT NULL DEFAULT 0,
|
|
`og_title` VARCHAR(255) NOT NULL DEFAULT '',
|
|
`og_description` TEXT NOT NULL,
|
|
`og_image` VARCHAR(512) NOT NULL DEFAULT '',
|
|
`og_type` VARCHAR(50) NOT NULL DEFAULT 'article',
|
|
`seo_title` VARCHAR(70) NOT NULL DEFAULT '',
|
|
`meta_description` VARCHAR(200) NOT NULL DEFAULT '',
|
|
`robots` VARCHAR(100) NOT NULL DEFAULT '',
|
|
`canonical_url` VARCHAR(512) NOT NULL DEFAULT '',
|
|
`language` CHAR(7) NOT NULL DEFAULT '*',
|
|
`published` TINYINT(1) NOT NULL DEFAULT 1,
|
|
`created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`modified` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `idx_content_lang` (`content_type`, `content_id`, `language`),
|
|
KEY `idx_published` (`published`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|