File: /var/www/html/punjabcabs/database/migrations/2019_03_20_103227_create_provider_contacts_table.php
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProviderContactsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('provider_contacts', function (Blueprint $table) {
$table->increments('id');
$table->integer('provider_id');
$table->string('contact_name')->nullable();
$table->string('contact_number')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('provider_contacts');
}
}