mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Reference the correct table in migration down method
This commit is contained in:
parent
bc0f666906
commit
b8b2543b0d
|
@ -28,7 +28,7 @@ class AddFieldsToManufacturer extends Migration
|
||||||
*/
|
*/
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('settings', function ($table) {
|
Schema::table('manufacturers', function ($table) {
|
||||||
$table->dropColumn('url');
|
$table->dropColumn('url');
|
||||||
$table->dropColumn('support_url');
|
$table->dropColumn('support_url');
|
||||||
$table->dropColumn('support_phone');
|
$table->dropColumn('support_phone');
|
||||||
|
|
Loading…
Reference in a new issue