Fixed borked down() migrations
This commit is contained in:
parent
e41ee1bcf8
commit
9566fbd3cd
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ class AddDashboardMessageToSettings extends Migration
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('settings', function (Blueprint $table) {
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
$table->text('dashboard_message');
|
$table->dropColumn('dashboard_message');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,8 +27,8 @@ class AddFooterSettingsToSettings extends Migration
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('settings', function (Blueprint $table) {
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
$table->text('support_footer');
|
$table->dropColumn('support_footer');
|
||||||
$table->text('footer_text');
|
$table->dropColumn('footer_text');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue