<?xml version="1.0"?>
<!--
/**
 * Copyright © Magefan (support@magefan.com). All rights reserved.
 * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
 *
 * Glory to Ukraine! Glory to the heroes!
 */
-->
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
    <table name="magefan_blog_post" resource="default" engine="innodb" comment="Magefan Blog Post Table">
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Post ID"/>
        <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Post Title"/>
        <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Post Meta Title"/>
        <column xsi:type="text" name="meta_keywords" nullable="true" comment="Post Meta Keywords"/>
        <column xsi:type="text" name="meta_description" nullable="true" comment="Post Meta Description"/>
        <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/>
        <column xsi:type="smallint" name="structure_data_type" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Rich Snippet / Structured Data"/>
        <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Post String Identifier"/>
        <column xsi:type="varchar" name="og_title" nullable="true" length="255" comment="Post OG Title"/>
        <column xsi:type="varchar" name="og_description" nullable="true" length="255" comment="Post OG Description"/>
        <column xsi:type="varchar" name="og_img" nullable="true" length="255" comment="Post OG Img"/>
        <column xsi:type="varchar" name="og_type" nullable="true" length="255" comment="Post OG Type"/>
        <column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Post Content Heading"/>
        <column xsi:type="mediumtext" name="content" nullable="true" comment="Post Content"/>
        <column xsi:type="timestamp" name="creation_time" on_update="false" nullable="true" comment="Post Creation Time"/>
        <column xsi:type="timestamp" name="update_time" on_update="false" nullable="true" comment="Post Modification Time"/>
        <column xsi:type="timestamp" name="publish_time" on_update="false" nullable="true" comment="Post Publish Time"/>
        <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Post Active"/>
        <column xsi:type="smallint" name="include_in_recent" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Include in Recent Posts"/>
        <column xsi:type="smallint" name="position" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Position"/>
        <column xsi:type="varchar" name="featured_img" nullable="true" length="255" comment="Thumbnail Image"/>
        <column xsi:type="varchar" name="featured_img_alt" nullable="true" length="255" comment="Featured Image Alt"/>
        <column xsi:type="int" name="author_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Author ID"/>
        <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/>
        <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Post Layout Update Content"/>
        <column xsi:type="text" name="custom_css" nullable="true" comment="Custom CSS"/>
        <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/>
        <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/>
        <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/>
        <column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/>
        <column xsi:type="date" name="custom_theme_to" comment="Post Custom Theme Active To Date"/>
        <column xsi:type="mediumtext" name="media_gallery" nullable="true" comment="Media Gallery"/>
        <column xsi:type="varchar" name="secret" nullable="true" length="32" comment="Post Secret"/>
        <column xsi:type="int" name="views_count" padding="11" unsigned="false" nullable="true" identity="false" comment="Post Views Count"/>
        <column xsi:type="int" name="reading_time" padding="20" unsigned="false" nullable="true" identity="false" comment="Post Reading Time"/>
        <column xsi:type="smallint" name="is_recent_posts_skip" padding="6" unsigned="false" nullable="true" identity="false" comment="Is Post Skipped From Recent Posts"/>
        <column xsi:type="mediumtext" name="short_content" nullable="true" comment="Post Short Content"/>
        <column xsi:type="int" name="comments_count" padding="11" unsigned="false" nullable="true" identity="false" comment="Post Comment Counts"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="post_id"/>
        </constraint>

        <index referenceId="MAGEFAN_BLOG_POST_IDENTIFIER" indexType="btree">
          <column name="identifier"/>
        </index>

        <index referenceId="FTI_A5DB7871E89B230F74EDFBECEB4659FA" indexType="fulltext">
          <column name="title"/>
          <column name="meta_keywords"/>
          <column name="meta_description"/>
          <column name="identifier"/>
          <column name="content"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_POST_AUTHOR_ID" indexType="btree">
          <column name="author_id"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_POST_VIEWS_COUNT" indexType="btree">
          <column name="views_count"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_POST_IS_RECENT_POSTS_SKIP" indexType="btree">
          <column name="is_recent_posts_skip"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_POST_IS_ACTIVE" indexType="btree">
          <column name="is_active"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_POST_INCLUDE_IN_RECENT" indexType="btree">
          <column name="include_in_recent"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_POST_PUBLISH_TIME" indexType="btree">
          <column name="publish_time"/>
        </index>
    </table>

    <table name="magefan_blog_post_store" resource="default" engine="innodb" comment="Magefan Blog Post To Store Linkage Table">
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
        <column xsi:type="smallint" name="store_id" padding="5" unsigned="true" nullable="false" identity="false" comment="Store ID"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="post_id"/>
            <column name="store_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_STORE_POST_ID_MAGEFAN_BLOG_POST_POST_ID" table="magefan_blog_post_store" column="post_id" referenceTable="magefan_blog_post" referenceColumn="post_id" onDelete="CASCADE"/>
        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_STORE_STORE_ID_STORE_STORE_ID" table="magefan_blog_post_store" column="store_id" referenceTable="store" referenceColumn="store_id" onDelete="CASCADE"/>

        <index referenceId="MAGEFAN_BLOG_POST_STORE_STORE_ID" indexType="btree">
            <column name="store_id"/>
        </index>
    </table>
    <table name="magefan_blog_category" resource="default" engine="innodb" comment="Magefan Blog Category Table">
        <column xsi:type="int" name="category_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Category ID"/>
        <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Category Title"/>
        <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Category Meta Title"/>
        <column xsi:type="text" name="meta_keywords" nullable="true" comment="Category Meta Keywords"/>
        <column xsi:type="text" name="meta_description" nullable="true" comment="Category Meta Description"/>
        <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/>
        <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Category String Identifier"/>
        <column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Category Content Heading"/>
        <column xsi:type="mediumtext" name="content" nullable="true" comment="Category Content"/>
        <column xsi:type="varchar" name="path" nullable="true" length="255" comment="Category Path"/>
        <column xsi:type="smallint" name="position" padding="6" unsigned="false" nullable="false" identity="false" comment="Category Position"/>
        <column xsi:type="smallint" name="posts_sort_by" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Post Sort By"/>
        <column xsi:type="smallint" name="include_in_menu" padding="6" unsigned="false" nullable="true" identity="false" comment="Category In Menu"/>
        <column xsi:type="varchar" name="include_in_sidebar_tree" nullable="true" length="255" default="1" comment="Category In Sidebar Tree"/>
        <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Category Active"/>
        <column xsi:type="smallint" name="display_mode" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Display Mode"/>
        <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/>
        <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Post Layout Update Content"/>
        <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/>
        <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/>
        <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/>
        <column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/>
        <column xsi:type="date" name="custom_theme_to" comment="Post Custom Theme Active To Date"/>
        <column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/>
        <column xsi:type="varchar" name="posts_list_template" nullable="true" length="100" comment="Posts List Template"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
          <column name="category_id"/>
        </constraint>

        <index referenceId="MAGEFAN_BLOG_CATEGORY_IDENTIFIER" indexType="btree">
          <column name="identifier"/>
        </index>

        <index referenceId="FTI_B76AD11A0A06CC3327BA3A86A016134F" indexType="fulltext">
            <column name="title"/>
            <column name="meta_keywords"/>
            <column name="meta_description"/>
            <column name="identifier"/>
            <column name="content"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_CATEGORY_INCLUDE_IN_MENU" indexType="btree">
            <column name="include_in_menu"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_CATEGORY_IS_ACTIVE" indexType="btree">
            <column name="is_active"/>
        </index>
        <index referenceId="MAGEFAN_BLOG_CATEGORY_INCLUDE_IN_SIDEBAR_TREE" indexType="btree">
            <column name="include_in_sidebar_tree"/>
        </index>
    </table>

    <table name="magefan_blog_category_store" resource="default" engine="innodb" comment="Magefan Blog Category To Store Linkage Table">
        <column xsi:type="int" name="category_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Category ID"/>
        <column xsi:type="smallint" name="store_id" padding="5" unsigned="true" nullable="false" identity="false" comment="Store ID"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="category_id"/>
            <column name="store_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_CTGR_STORE_CTGR_ID_MAGEFAN_BLOG_CTGR_CTGR_ID" table="magefan_blog_category_store" column="category_id" referenceTable="magefan_blog_category" referenceColumn="category_id" onDelete="CASCADE"/>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_CATEGORY_STORE_STORE_ID_STORE_STORE_ID" table="magefan_blog_category_store" column="store_id" referenceTable="store" referenceColumn="store_id" onDelete="CASCADE"/>

        <index referenceId="MAGEFAN_BLOG_CATEGORY_STORE_STORE_ID" indexType="btree">
            <column name="store_id"/>
        </index>
    </table>

    <table name="magefan_blog_post_category" resource="default" engine="innodb" comment="Magefan Blog Post To Category Linkage Table">
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
        <column xsi:type="int" name="category_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Category ID"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="post_id"/>
            <column name="category_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_CATEGORY_POST_ID_MAGEFAN_BLOG_POST_POST_ID" table="magefan_blog_post_category" column="post_id" referenceTable="magefan_blog_post" referenceColumn="post_id" onDelete="CASCADE"/>
        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_CTGR_CTGR_ID_MAGEFAN_BLOG_CTGR_CTGR_ID" table="magefan_blog_post_category" column="category_id" referenceTable="magefan_blog_category" referenceColumn="category_id" onDelete="CASCADE"/>

        <index referenceId="MAGEFAN_BLOG_POST_CATEGORY_CATEGORY_ID" indexType="btree">
            <column name="category_id"/>
        </index>
  </table>

  <table name="magefan_blog_post_relatedproduct" resource="default" engine="innodb" comment="Magefan Blog Post To Product Linkage Table">
      <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
      <column xsi:type="int" name="related_id" padding="10" unsigned="true" nullable="false" identity="false" comment="Related Product ID"/>
      <column xsi:type="int" name="position" padding="11" unsigned="false" nullable="false" identity="false" comment="Position"/>

      <constraint xsi:type="primary" referenceId="PRIMARY">
          <column name="post_id"/>
          <column name="related_id"/>
      </constraint>

      <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_RELATEDPRD_POST_ID_MAGEFAN_BLOG_POST_POST_ID" table="magefan_blog_post_relatedproduct" column="post_id" referenceTable="magefan_blog_post" referenceColumn="post_id" onDelete="CASCADE"/>
      <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_RELATEDPRD_RELATED_ID_CAT_PRD_ENTT_ENTT_ID" table="magefan_blog_post_relatedproduct" column="related_id" referenceTable="catalog_product_entity" referenceColumn="entity_id" onDelete="CASCADE"/>

      <index referenceId="MAGEFAN_BLOG_POST_RELATEDPRODUCT_RELATED_ID" indexType="btree">
          <column name="related_id"/>
      </index>
  </table>

    <table name="magefan_blog_post_relatedpost" resource="default" engine="innodb" comment="Magefan Blog Post To Post Linkage Table">
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
        <column xsi:type="int" name="related_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Related Post ID"/>
        <column xsi:type="int" name="position" padding="11" unsigned="false" nullable="false" identity="false" comment="Position"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="post_id"/>
            <column name="related_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_RELATEDPOST_POST_ID_FK"
                    table="magefan_blog_post_relatedpost" column="post_id"
                    referenceTable="magefan_blog_post" referenceColumn="post_id"
                    onDelete="CASCADE"/>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_RELATEDPOST_RELATED_ID_FK"
                    table="magefan_blog_post_relatedpost" column="related_id"
                    referenceTable="magefan_blog_post" referenceColumn="post_id"
                    onDelete="CASCADE"/>

        <index indexType="btree" referenceId="MAGEFAN_BLOG_POST_RELATEDPOST_RELATED_ID">
            <column name="related_id"/>
        </index>
    </table>

    <table name="magefan_blog_tag" resource="default" engine="innodb" comment="Magefan Blog Tag Table">
        <column xsi:type="int" name="tag_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Tag ID"/>
        <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Tag Title"/>
        <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Tag Default Robots"/>
        <column xsi:type="varchar" name="meta_description" nullable="true" length="255" comment="Tag Meta Description"/>
        <column xsi:type="varchar" name="meta_keywords" nullable="true" length="255" comment="Tag Meta Keywords"/>
        <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Tag Meta Title"/>
        <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Tag String Identifier"/>
        <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Tag Layout"/>
        <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Tag Active"/>
        <column xsi:type="mediumtext" name="content" nullable="true" comment="Tag Content"/>
        <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Tag Layout Update Content"/>
        <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Tag Custom Theme"/>
        <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Tag Custom Template"/>
        <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Tag Custom Layout Update Content"/>
        <column xsi:type="date" name="custom_theme_from" comment="Tag Custom Theme Active From Date"/>
        <column xsi:type="date" name="custom_theme_to" comment="Tag Custom Theme Active To Date"/>
        <column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/>
        <column xsi:type="varchar" name="posts_list_template" nullable="true" length="100" comment="Posts List Template"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
          <column name="tag_id"/>
        </constraint>

        <index referenceId="MAGEFAN_BLOG_TAG_IDENTIFIER" indexType="btree">
          <column name="identifier"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_TAG_IS_ACTIVE" indexType="btree">
          <column name="is_active"/>
        </index>
    </table>

    <table name="magefan_blog_post_tag" resource="default" engine="innodb" comment="Magefan Blog Post To Category Linkage Table">
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
        <column xsi:type="int" name="tag_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Tag ID"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="post_id"/>
            <column name="tag_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_TAG_POST_ID_MAGEFAN_BLOG_POST_POST_ID" table="magefan_blog_post_tag" column="post_id" referenceTable="magefan_blog_post" referenceColumn="post_id" onDelete="CASCADE"/>
        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_POST_TAG_TAG_ID_MAGEFAN_BLOG_TAG_TAG_ID" table="magefan_blog_post_tag" column="tag_id" referenceTable="magefan_blog_tag" referenceColumn="tag_id" onDelete="CASCADE"/>

        <index referenceId="MAGEFAN_BLOG_POST_TAG_TAG_ID" indexType="btree">
          <column name="tag_id"/>
        </index>
    </table>

    <table name="magefan_blog_comment" resource="default" engine="innodb" comment="magefan_blog_comment">
        <column xsi:type="int" name="comment_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Comment ID"/>
        <column xsi:type="int" name="parent_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Parent Comment ID"/>
        <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Post ID"/>
        <column xsi:type="int" name="customer_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Customer ID"/>
        <column xsi:type="int" name="admin_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Admin User ID"/>
        <column xsi:type="smallint" name="status" padding="6" unsigned="false" nullable="false" identity="false" comment="Comment status"/>
        <column xsi:type="smallint" name="author_type" padding="6" unsigned="false" nullable="false" identity="false" comment="Author Type"/>
        <column xsi:type="varchar" name="author_nickname" nullable="false" length="255" comment="Comment Author Nickname"/>
        <column xsi:type="varchar" name="author_email" nullable="true" length="255" comment="Comment Author Email"/>
        <column xsi:type="mediumtext" name="text" nullable="true" comment="Text"/>
        <column xsi:type="timestamp" name="creation_time" on_update="false" nullable="true" comment="Comment Creation Time"/>
        <column xsi:type="timestamp" name="update_time" on_update="false" nullable="true" comment="Comment Update Time"/>

        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="comment_id"/>
        </constraint>

        <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_COMMENT_POST_ID_MAGEFAN_BLOG_POST_POST_ID" table="magefan_blog_comment" column="post_id" referenceTable="magefan_blog_post" referenceColumn="post_id" onDelete="CASCADE"/>

        <index referenceId="MAGEFAN_BLOG_COMMENT_PARENT_ID" indexType="btree">
            <column name="parent_id"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_COMMENT_POST_ID" indexType="btree">
            <column name="post_id"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_COMMENT_CUSTOMER_ID" indexType="btree">
            <column name="customer_id"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_COMMENT_ADMIN_ID" indexType="btree">
            <column name="admin_id"/>
        </index>

        <index referenceId="MAGEFAN_BLOG_COMMENT_STATUS" indexType="btree">
            <column name="status"/>
        </index>
  </table>

  <table name="magefan_blog_tag_store" resource="default" engine="innodb" comment="Magefan Blog Tag To Store Linkage Table">
      <column xsi:type="int" name="tag_id" padding="11" unsigned="false" nullable="false" identity="false" comment="Tag ID"/>
      <column xsi:type="smallint" name="store_id" padding="5" unsigned="true" nullable="false" identity="false" comment="Store ID"/>

      <constraint xsi:type="primary" referenceId="PRIMARY">
          <column name="tag_id"/>
          <column name="store_id"/>
      </constraint>

      <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_TAG_STORE_TAG_ID_MAGEFAN_BLOG_TAG_TAG_ID" table="magefan_blog_tag_store" column="tag_id" referenceTable="magefan_blog_tag" referenceColumn="tag_id" onDelete="CASCADE"/>
      <constraint xsi:type="foreign" referenceId="MAGEFAN_BLOG_TAG_STORE_STORE_ID_STORE_STORE_ID" table="magefan_blog_tag_store" column="store_id" referenceTable="store" referenceColumn="store_id" onDelete="CASCADE"/>

      <index referenceId="MAGEFAN_BLOG_TAG_STORE_STORE_ID" indexType="btree">
          <column name="store_id"/>
      </index>
  </table>
</schema>
