Skip to content

Commit d05f887

Browse files
author
Bohdan Berezhniy
committed
set corect position
1 parent d9b73ed commit d05f887

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

etc/db_schema.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,42 @@
33
<table name="magefan_blog_post" resource="default" engine="innodb" comment="Magefan Blog Post Table">
44
<column xsi:type="int" name="post_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Post ID"/>
55
<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"/>
67
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Post Meta Keywords"/>
78
<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"/>
811
<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"/>
916
<column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Post Content Heading"/>
1017
<column xsi:type="mediumtext" name="content" nullable="true" comment="Post Content"/>
1118
<column xsi:type="timestamp" name="creation_time" on_update="false" nullable="true" comment="Post Creation Time"/>
1219
<column xsi:type="timestamp" name="update_time" on_update="false" nullable="true" comment="Post Modification Time"/>
1320
<column xsi:type="timestamp" name="publish_time" on_update="false" nullable="true" comment="Post Publish Time"/>
1421
<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"/>
1524
<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"/>
1626
<column xsi:type="int" name="author_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Author ID"/>
1727
<column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/>
1828
<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"/>
1930
<column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/>
2031
<column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/>
2132
<column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/>
2233
<column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/>
2334
<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"/>
2935
<column xsi:type="mediumtext" name="media_gallery" nullable="true" comment="Media Gallery"/>
3036
<column xsi:type="varchar" name="secret" nullable="true" length="32" comment="Post Secret"/>
3137
<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"/>
3239
<column xsi:type="smallint" name="is_recent_posts_skip" padding="6" unsigned="false" nullable="true" identity="false" comment="Is Post Skipped From Recent Posts"/>
3340
<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"/>
3741
<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"/>
4242

4343
<constraint xsi:type="primary" referenceId="PRIMARY">
4444
<column name="post_id"/>
@@ -105,29 +105,29 @@
105105
<table name="magefan_blog_category" resource="default" engine="innodb" comment="Magefan Blog Category Table">
106106
<column xsi:type="int" name="category_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Category ID"/>
107107
<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"/>
108109
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Category Meta Keywords"/>
109110
<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"/>
110112
<column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Category String Identifier"/>
111113
<column xsi:type="varchar" name="content_heading" nullable="true" length="255" comment="Category Content Heading"/>
112114
<column xsi:type="mediumtext" name="content" nullable="true" comment="Category Content"/>
113115
<column xsi:type="varchar" name="path" nullable="true" length="255" comment="Category Path"/>
114116
<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"/>
115120
<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"/>
116122
<column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Post Layout"/>
117123
<column xsi:type="text" name="layout_update_xml" nullable="true" comment="Post Layout Update Content"/>
118124
<column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Post Custom Theme"/>
119125
<column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Post Custom Template"/>
120126
<column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Post Custom Layout Update Content"/>
121127
<column xsi:type="date" name="custom_theme_from" comment="Post Custom Theme Active From Date"/>
122128
<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"/>
127129
<column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/>
128130
<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"/>
131131

132132
<constraint xsi:type="primary" referenceId="PRIMARY">
133133
<column name="category_id"/>
@@ -240,20 +240,20 @@
240240
<table name="magefan_blog_tag" resource="default" engine="innodb" comment="Magefan Blog Tag Table">
241241
<column xsi:type="int" name="tag_id" padding="11" unsigned="false" nullable="false" identity="true" comment="Tag ID"/>
242242
<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"/>
243247
<column xsi:type="varchar" name="identifier" nullable="true" length="100" comment="Tag String Identifier"/>
244248
<column xsi:type="varchar" name="page_layout" nullable="true" length="255" comment="Tag Layout"/>
245249
<column xsi:type="smallint" name="is_active" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Is Tag Active"/>
246250
<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"/>
250251
<column xsi:type="text" name="layout_update_xml" nullable="true" comment="Tag Layout Update Content"/>
251252
<column xsi:type="varchar" name="custom_theme" nullable="true" length="100" comment="Tag Custom Theme"/>
252253
<column xsi:type="varchar" name="custom_layout" nullable="true" length="255" comment="Tag Custom Template"/>
253254
<column xsi:type="text" name="custom_layout_update_xml" nullable="true" comment="Tag Custom Layout Update Content"/>
254255
<column xsi:type="date" name="custom_theme_from" comment="Tag Custom Theme Active From Date"/>
255256
<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"/>
257257
<column xsi:type="int" name="posts_per_page" padding="11" unsigned="false" nullable="true" identity="false" comment="Posts Per Page"/>
258258
<column xsi:type="varchar" name="posts_list_template" nullable="true" length="100" comment="Posts List Template"/>
259259

0 commit comments

Comments
 (0)