|
3 | 3 | <table name="magefan_blog_post" resource="default" engine="innodb" comment="Magefan Blog Post Table"> |
4 | 4 | <column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Post ID"/> |
5 | 5 | <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Post Title"/> |
| 6 | + <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Post Meta Title"/> |
6 | 7 | <column xsi:type="text" name="meta_keywords" nullable="true" comment="Post Meta Keywords"/> |
7 | 8 | <column xsi:type="text" name="meta_description" nullable="true" comment="Post Meta Description"/> |
| 9 | + <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/> |
| 10 | + <column xsi:type="smallint" name="structure_data_type" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Rich Snippet / Structured Data"/> |
8 | 11 | <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Post String Identifier"/> |
| 12 | + <column xsi:type="varchar" name="og_title" nullable="true" length="255" comment="Post OG Title"/> |
| 13 | + <column xsi:type="varchar" name="og_description" nullable="true" length="255" comment="Post OG Description"/> |
| 14 | + <column xsi:type="varchar" name="og_img" nullable="true" length="255" comment="Post OG Img"/> |
| 15 | + <column xsi:type="varchar" name="og_type" nullable="true" length="255" comment="Post OG Type"/> |
9 | 16 | <column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Post Content Heading"/> |
10 | 17 | <column xsi:type="mediumtext" name="content" nullable="true" comment="Post Content"/> |
11 | 18 | <column xsi:type="timestamp" name="creation_time" on_update="false" nullable="true" comment="Post Creation Time"/> |
12 | 19 | <column xsi:type="timestamp" name="update_time" on_update="false" nullable="true" comment="Post Modification Time"/> |
13 | 20 | <column xsi:type="timestamp" name="publish_time" on_update="false" nullable="true" comment="Post Publish Time"/> |
14 | 21 | <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Post Active"/> |
| 22 | + <column xsi:type="smallint" name="include_in_recent" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Include in Recent Posts"/> |
| 23 | + <column xsi:type="smallint" name="position" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Position"/> |
15 | 24 | <column xsi:type="varchar" name="featured_img" nullable="true" length="255" comment="Thumbnail Image"/> |
| 25 | + <column xsi:type="varchar" name="featured_img_alt" nullable="true" length="255" comment="Featured Image Alt"/> |
16 | 26 | <column xsi:type="int" name="author_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Author ID"/> |
17 | 27 | <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/> |
18 | 28 | <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Post Layout Update Content"/> |
| 29 | + <column xsi:type="text" name="custom_css" nullable="true" comment="Custom CSS"/> |
19 | 30 | <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/> |
20 | 31 | <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/> |
21 | 32 | <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/> |
22 | 33 | <column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/> |
23 | 34 | <column xsi:type="date" name="custom_theme_to" comment="Post Custom Theme Active To Date"/> |
24 | | - <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Post Meta Title"/> |
25 | | - <column xsi:type="varchar" name="og_type" nullable="true" length="255" comment="Post OG Type"/> |
26 | | - <column xsi:type="varchar" name="og_img" nullable="true" length="255" comment="Post OG Img"/> |
27 | | - <column xsi:type="varchar" name="og_description" nullable="true" length="255" comment="Post OG Description"/> |
28 | | - <column xsi:type="varchar" name="og_title" nullable="true" length="255" comment="Post OG Title"/> |
29 | 35 | <column xsi:type="mediumtext" name="media_gallery" nullable="true" comment="Media Gallery"/> |
30 | 36 | <column xsi:type="varchar" name="secret" nullable="true" length="32" comment="Post Secret"/> |
31 | 37 | <column xsi:type="int" name="views_count" padding="11" unsigned="false" nullable="true" identity="false" comment="Post Views Count"/> |
| 38 | + <column xsi:type="int" name="reading_time" padding="20" unsigned="false" nullable="true" identity="false" comment="Post Reading Time"/> |
32 | 39 | <column xsi:type="smallint" name="is_recent_posts_skip" padding="6" unsigned="false" nullable="true" identity="false" comment="Is Post Skipped From Recent Posts"/> |
33 | 40 | <column xsi:type="mediumtext" name="short_content" nullable="true" comment="Post Short Content"/> |
34 | | - <column xsi:type="smallint" name="include_in_recent" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Include in Recent Posts"/> |
35 | | - <column xsi:type="smallint" name="position" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Position"/> |
36 | | - <column xsi:type="varchar" name="featured_img_alt" nullable="true" length="255" comment="Featured Image Alt"/> |
37 | 41 | <column xsi:type="int" name="comments_count" padding="11" unsigned="false" nullable="true" identity="false" comment="Post Comment Counts"/> |
38 | | - <column xsi:type="smallint" name="structure_data_type" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Rich Snippet / Structured Data"/> |
39 | | - <column xsi:type="int" name="reading_time" padding="20" unsigned="false" nullable="true" identity="false" comment="Post Reading Time"/> |
40 | | - <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/> |
41 | | - <column xsi:type="text" name="custom_css" nullable="true" comment="Custom CSS"/> |
42 | 42 |
|
43 | 43 | <constraint xsi:type="primary" referenceId="PRIMARY"> |
44 | 44 | <column name="post_id"/> |
|
105 | 105 | <table name="magefan_blog_category" resource="default" engine="innodb" comment="Magefan Blog Category Table"> |
106 | 106 | <column xsi:type="int" name="category_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Category ID"/> |
107 | 107 | <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Category Title"/> |
| 108 | + <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Category Meta Title"/> |
108 | 109 | <column xsi:type="text" name="meta_keywords" nullable="true" comment="Category Meta Keywords"/> |
109 | 110 | <column xsi:type="text" name="meta_description" nullable="true" comment="Category Meta Description"/> |
| 111 | + <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/> |
110 | 112 | <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Category String Identifier"/> |
111 | 113 | <column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Category Content Heading"/> |
112 | 114 | <column xsi:type="mediumtext" name="content" nullable="true" comment="Category Content"/> |
113 | 115 | <column xsi:type="varchar" name="path" nullable="true" length="255" comment="Category Path"/> |
114 | 116 | <column xsi:type="smallint" name="position" padding="6" unsigned="false" nullable="false" identity="false" comment="Category Position"/> |
| 117 | + <column xsi:type="smallint" name="posts_sort_by" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Post Sort By"/> |
| 118 | + <column xsi:type="smallint" name="include_in_menu" padding="6" unsigned="false" nullable="true" identity="false" comment="Category In Menu"/> |
| 119 | + <column xsi:type="varchar" name="include_in_sidebar_tree" nullable="true" length="255" default="1" comment="Category In Sidebar Tree"/> |
115 | 120 | <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Category Active"/> |
| 121 | + <column xsi:type="smallint" name="display_mode" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Display Mode"/> |
116 | 122 | <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/> |
117 | 123 | <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Post Layout Update Content"/> |
118 | 124 | <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/> |
119 | 125 | <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/> |
120 | 126 | <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/> |
121 | 127 | <column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/> |
122 | 128 | <column xsi:type="date" name="custom_theme_to" comment="Post Custom Theme Active To Date"/> |
123 | | - <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Category Meta Title"/> |
124 | | - <column xsi:type="smallint" name="include_in_menu" padding="6" unsigned="false" nullable="true" identity="false" comment="Category In Menu"/> |
125 | | - <column xsi:type="smallint" name="display_mode" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Display Mode"/> |
126 | | - <column xsi:type="smallint" name="posts_sort_by" padding="6" unsigned="false" nullable="false" identity="false" default="0" comment="Post Sort By"/> |
127 | 129 | <column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/> |
128 | 130 | <column xsi:type="varchar" name="posts_list_template" nullable="true" length="100" comment="Posts List Template"/> |
129 | | - <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Default Robots"/> |
130 | | - <column xsi:type="varchar" name="include_in_sidebar_tree" nullable="true" length="255" default="1" comment="Category In Sidebar Tree"/> |
131 | 131 |
|
132 | 132 | <constraint xsi:type="primary" referenceId="PRIMARY"> |
133 | 133 | <column name="category_id"/> |
|
240 | 240 | <table name="magefan_blog_tag" resource="default" engine="innodb" comment="Magefan Blog Tag Table"> |
241 | 241 | <column xsi:type="int" name="tag_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Tag ID"/> |
242 | 242 | <column xsi:type="varchar" name="title" nullable="true" length="255" comment="Tag Title"/> |
| 243 | + <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Tag Default Robots"/> |
| 244 | + <column xsi:type="varchar" name="meta_description" nullable="true" length="255" comment="Tag Meta Description"/> |
| 245 | + <column xsi:type="varchar" name="meta_keywords" nullable="true" length="255" comment="Tag Meta Keywords"/> |
| 246 | + <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Tag Meta Title"/> |
243 | 247 | <column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Tag String Identifier"/> |
244 | 248 | <column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Tag Layout"/> |
245 | 249 | <column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Tag Active"/> |
246 | 250 | <column xsi:type="mediumtext" name="content" nullable="true" comment="Tag Content"/> |
247 | | - <column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Tag Meta Title"/> |
248 | | - <column xsi:type="varchar" name="meta_keywords" nullable="true" length="255" comment="Tag Meta Keywords"/> |
249 | | - <column xsi:type="varchar" name="meta_description" nullable="true" length="255" comment="Tag Meta Description"/> |
250 | 251 | <column xsi:type="text" name="layout_update_xml" nullable="true" comment="Tag Layout Update Content"/> |
251 | 252 | <column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Tag Custom Theme"/> |
252 | 253 | <column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Tag Custom Template"/> |
253 | 254 | <column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Tag Custom Layout Update Content"/> |
254 | 255 | <column xsi:type="date" name="custom_theme_from" comment="Tag Custom Theme Active From Date"/> |
255 | 256 | <column xsi:type="date" name="custom_theme_to" comment="Tag Custom Theme Active To Date"/> |
256 | | - <column xsi:type="varchar" name="meta_robots" nullable="true" length="255" comment="Tag Default Robots"/> |
257 | 257 | <column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/> |
258 | 258 | <column xsi:type="varchar" name="posts_list_template" nullable="true" length="100" comment="Posts List Template"/> |
259 | 259 |
|
|
0 commit comments