1
0
Fork 0

Add follower model, migration, controller

This commit is contained in:
Daniel Supernault 2018-04-17 20:17:30 -06:00
parent 91dfc88a79
commit df45744dae
3 changed files with 45 additions and 1 deletions

View File

@ -4,7 +4,7 @@ namespace App;
use Illuminate\Database\Eloquent\Model;
class Profile extends Model
class Follower extends Model
{
//
}

View File

@ -0,0 +1,10 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class FollowerController extends Controller
{
//
}

View File

@ -0,0 +1,34 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFollowersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('followers', function (Blueprint $table) {
$table->increments('id');
$table->bigInteger('profile_id')->unsigned();
$table->bigInteger('following_id')->unsigned();
$table->unique(['profile_id', 'following_id']);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('followers');
}
}