database/migrations/2018_02_26_111407_create_tasks_table.php
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTasksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tasks', function (Blueprint $table) {
$table->increments('id');
$table->integer('project_id')->unsigned();
$table->string('task_name');
$table->text('description');
$table->boolean('active');
$table->integer('user_id');
$table->integer('assigned_by');
$table->string('url', 500)->nullable();
$table->timestamps();
$table->softDeletes();
$table->foreign('project_id')->references('id')->on('projects');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tasks');
}
}