Reference the correct table in migration down method
This commit is contained in:
parent
bc0f666906
commit
b8b2543b0d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue