Files
exchange-2.0/database/migrations/2020_10_22_071120_create_contacts_table.php
omair saleh 05401f6bbc large commit
2021-03-11 13:06:40 +08:00

42 lines
1.1 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateContactsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('contacts', function (Blueprint $table) {
$table->id();
$table->foreignId('company_id')->unsigned();
$table->foreignId('country_id')->unsigned();
$table->string('reference');
$table->string('phone')->nullable();
$table->string('email')->nullable();
$table->string('wechat_id')->nullable();
$table->softDeletes();
$table->timestamps();
$table->foreign('country_id')->references('id')->on('countries');
$table->foreign('company_id')->references('id')->on('companies');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('contacts');
}
}