diff --git a/database/migrations/2022_11_06_215526_drop_html_backups_column_from_backups_table.php b/database/migrations/2022_11_06_215526_drop_html_backups_column_from_backups_table.php new file mode 100644 index 000000000000..9c532739263c --- /dev/null +++ b/database/migrations/2022_11_06_215526_drop_html_backups_column_from_backups_table.php @@ -0,0 +1,30 @@ +string('disk')->nullable(); + $table->dropColumn('html_backup'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + } +};