Skip to content

Instantly share code, notes, and snippets.

@EmmanuelObua
Created May 13, 2021 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EmmanuelObua/8fb9dd226ccaca07eccee3e3167491aa to your computer and use it in GitHub Desktop.
Save EmmanuelObua/8fb9dd226ccaca07eccee3e3167491aa to your computer and use it in GitHub Desktop.
Posts migrations
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained();
$table->string('title');
$table->text('description');
$table->enum('status',['ACTIVE','IN ACTIVE'])->default('ACTIVE');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('posts');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment