<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateMessagesTable extends Migration
{
     /**
      * Run the migrations.
      *
      * @return void
      */
     public function up()
     {
         Schema::create('messages', function (Blueprint $table) {
             $table->increments('id');
             $table->integer('user_id')->unsigned();
             $table->text('message');
             $table->timestamps();

            $table->foreign('user_id')->references('id')->on('users');
         });
     }

    /**
      * Reverse the migrations.
      *
      * @return void
      */
     public function down()
     {
         Schema::drop('messages');
     }
}