Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 02:46
Show Gist options
  • Save jsdecena/20084443bc5af583d65818a0b213dfe5 to your computer and use it in GitHub Desktop.
Save jsdecena/20084443bc5af583d65818a0b213dfe5 to your computer and use it in GitHub Desktop.
Create Articles Table Migration File
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateArticlesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('articles', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('content');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('articles');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment