Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dominiquevienne/441ba317dd68992cc16d9bc76a7cda66 to your computer and use it in GitHub Desktop.
Save dominiquevienne/441ba317dd68992cc16d9bc76a7cda66 to your computer and use it in GitHub Desktop.
Out of the box BlogPost migration file
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBlogPostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('blog_posts', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('blog_posts');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment