File: /var/www/ipsremont-demo/database/migrations/2021_01_19_003653_alter_fields_repair_close.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterFieldsRepairClose extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('repairs', function (Blueprint $table) {
$table->smallInteger('category_id')->nullable();
$table->dropColumn('external_id');
$table->string('work_description')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}