diff --git a/packages/Webkul/CMS/src/Database/Migrations/2020_07_31_142021_update_cms_page_translations_table_field_html_content.php b/packages/Webkul/CMS/src/Database/Migrations/2020_07_31_142021_update_cms_page_translations_table_field_html_content.php new file mode 100644 index 000000000..d9a009cd7 --- /dev/null +++ b/packages/Webkul/CMS/src/Database/Migrations/2020_07_31_142021_update_cms_page_translations_table_field_html_content.php @@ -0,0 +1,36 @@ +longtext('html_content')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('cms_page_translations', function (Blueprint $table) { + $table->text('html_content')->nullable()->change(); + }); + } +}