mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Fixed borked down() migrations
This commit is contained in:
parent
e41ee1bcf8
commit
9566fbd3cd
|
@ -26,7 +26,7 @@ class AddDashboardMessageToSettings extends Migration
|
|||
public function down()
|
||||
{
|
||||
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()
|
||||
{
|
||||
Schema::table('settings', function (Blueprint $table) {
|
||||
$table->text('support_footer');
|
||||
$table->text('footer_text');
|
||||
$table->dropColumn('support_footer');
|
||||
$table->dropColumn('footer_text');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue