Skip to content

Instantly share code, notes, and snippets.

@EmmanuelObua
Created May 13, 2021 08:36
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/05db6eceaebf97d8871871de88df5c80 to your computer and use it in GitHub Desktop.
Save EmmanuelObua/05db6eceaebf97d8871871de88df5c80 to your computer and use it in GitHub Desktop.
Profiles migration
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProfilesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('profiles', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained();
$table->string('profession');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('profiles');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment