id(); $table->string('external_id'); $table->unsignedBigInteger('team_id')->index()->nullable(); $table->string('name'); $table->string('model'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists(config('laravel-crm.db_table_prefix').'pipelines'); } };