todo/database/migrations/2020_06_23_170808_create_todos_table.php
Supan Adit Pratama 981fc35917 Update migration
2020-06-24 13:09:01 +07:00

40 lines
864 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTodosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('todos', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string("name");
$table->text("description")->nullable(true);
$table->unsignedBigInteger('user_id');
});
Schema::table('todos', function (Blueprint $table) {
$table->foreign('user_id')->references('id')->on('users');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('todos');
}
}