Skip to content

Instantly share code, notes, and snippets.

@rizkhal
Last active February 14, 2020 13:31
Show Gist options
  • Save rizkhal/c9a86fd5dfe126060efc890230f7feaf to your computer and use it in GitHub Desktop.
Save rizkhal/c9a86fd5dfe126060efc890230f7feaf to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePostsTable extends Migration
{
//...
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title');
$table->text('body');
$table->timestamps();
});
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment