Skip to content

Commit d626d48

Browse files
authored
Merge pull request #376 from mageplaza/2.4-develop
2.4 develop
2 parents b9a5ed1 + 821f38f commit d626d48

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "mageplaza/magento-2-blog-extension",
33
"description": "Magento 2 Blog extension",
44
"require": {
5-
"mageplaza/module-core": "^1.5.9",
5+
"mageplaza/module-core": "^1.5.10",
66
"mageplaza/facebook-graph-sdk": "^1.0.1"
77
},
88
"type": "magento2-module",
9-
"version": "4.2.6",
9+
"version": "4.2.7",
1010
"license": "proprietary",
1111
"keywords": [
1212
"magento 2",

etc/adminhtml/system.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
<frontend_model>Mageplaza\Core\Block\Adminhtml\System\Config\Head</frontend_model>
3434
<comment><![CDATA[
3535
<ul class="mageplaza-head">
36-
<li><a href="https://docs.mageplaza.com/blog-m2/" target="_blank">User Guide</a> </li>
3736
<li><a href="https://github.com/mageplaza/magento-2-blog/issues" target="_blank">Technical Support</a> </li>
3837
<li><strong><a href="https://www.mageplaza.com/?utm_source=store&utm_medium=documents&utm_campaign=m2-blog" target="_blank">Find more extensions</a></strong> </li>
3938
<li>Magento stores see upwards of 30% revenue 💰 with AVADA. <a href="https://go.avada.io/mageplaza">Learn more</a></li>

etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<blog>
2626
<module>
2727
<type>0</type>
28-
<user_guide>blog-m2</user_guide>
28+
<user_guide>magento/blog-m2/standard</user_guide>
2929
</module>
3030
<general>
3131
<enabled>1</enabled>

etc/db_schema.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
<column xsi:type="varchar" name="url_key" nullable="true" length="255" comment="Post URL Key"/>
1313
<column xsi:type="int" name="in_rss" padding="11" unsigned="false" nullable="true" identity="false" comment="Post In RSS"/>
1414
<column xsi:type="int" name="allow_comment" padding="11" unsigned="false" nullable="true" identity="false" comment="Post Allow Comment"/>
15+
<column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Post Meta Title"/>
16+
<column xsi:type="text" name="meta_description" nullable="true" comment="Post Meta Description"/>
17+
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Post Meta Keywords"/>
18+
<column xsi:type="text" name="meta_robots" nullable="true"/>
1519
<column xsi:type="timestamp" name="updated_at" on_update="false" nullable="true"/>
1620
<column xsi:type="timestamp" name="created_at" on_update="false" nullable="true"/>
1721
<column xsi:type="int" name="author_id" padding="10" unsigned="true" nullable="true" identity="false" comment="Author ID"/>
@@ -33,6 +37,10 @@
3337
<column xsi:type="int" name="enabled" padding="11" unsigned="false" nullable="true" identity="false" comment="Tag Enabled"/>
3438
<column xsi:type="timestamp" name="updated_at" on_update="false" nullable="true"/>
3539
<column xsi:type="timestamp" name="created_at" on_update="false" nullable="true"/>
40+
<column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Post Meta Title"/>
41+
<column xsi:type="text" name="meta_description" nullable="true" comment="Post Meta Description"/>
42+
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Post Meta Keywords"/>
43+
<column xsi:type="text" name="meta_robots" nullable="true"/>
3644
<column xsi:type="text" name="import_source" nullable="true" comment="Import Source"/>
3745
<constraint xsi:type="primary" referenceId="PRIMARY">
3846
<column name="tag_id"/>
@@ -45,6 +53,10 @@
4553
<column xsi:type="text" name="store_ids" nullable="false" comment="Store Id"/>
4654
<column xsi:type="int" name="enabled" padding="11" unsigned="false" nullable="true" identity="false" comment="Topic Enabled"/>
4755
<column xsi:type="varchar" name="url_key" nullable="true" length="255" comment="Topic URL Key"/>
56+
<column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Topic Meta Title"/>
57+
<column xsi:type="text" name="meta_description" nullable="true" comment="Topic Meta Description"/>
58+
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Topic Meta Keywords"/>
59+
<column xsi:type="text" name="meta_robots" nullable="true"/>
4860
<column xsi:type="timestamp" name="updated_at" on_update="false" nullable="true"/>
4961
<column xsi:type="timestamp" name="created_at" on_update="false" nullable="true"/>
5062
<column xsi:type="text" name="import_source" nullable="true" comment="Import Source"/>
@@ -59,6 +71,10 @@
5971
<column xsi:type="text" name="store_ids" nullable="false" comment="Store Id"/>
6072
<column xsi:type="varchar" name="url_key" nullable="true" length="255" comment="Category URL Key"/>
6173
<column xsi:type="int" name="enabled" padding="11" unsigned="false" nullable="true" identity="false" comment="Category Enabled"/>
74+
<column xsi:type="varchar" name="meta_title" nullable="true" length="255" comment="Category Meta Title"/>
75+
<column xsi:type="text" name="meta_description" nullable="true" comment="Category Meta Description"/>
76+
<column xsi:type="text" name="meta_keywords" nullable="true" comment="Category Meta Keywords"/>
77+
<column xsi:type="text" name="meta_robots" nullable="true"/>
6278
<column xsi:type="int" name="parent_id" padding="11" unsigned="false" nullable="true" identity="false" comment="Category Parent Id"/>
6379
<column xsi:type="varchar" name="path" nullable="true" length="255" comment="Category Path"/>
6480
<column xsi:type="int" name="position" padding="11" unsigned="false" nullable="true" identity="false" comment="Category Position"/>
@@ -283,4 +299,4 @@
283299
<column name="history_id"/>
284300
</constraint>
285301
</table>
286-
</schema>
302+
</schema>

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
-->
2323
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
24-
<module name="Mageplaza_Blog" setup_version="2.5.4">
24+
<module name="Mageplaza_Blog" setup_version="2.5.5">
2525
<sequence>
2626
<module name="Magento_Backend"/>
2727
<module name="Mageplaza_Core"/>

0 commit comments

Comments
 (0)