Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dominiquevienne/228c5c9f8443733ab4daabf35ee02daf to your computer and use it in GitHub Desktop.
Save dominiquevienne/228c5c9f8443733ab4daabf35ee02daf to your computer and use it in GitHub Desktop.
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->string('title');
$table->text('content');
$table->string('author_name');
$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