Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
database
/
migrations
/
Editing: 2015_10_23_164355_create_follows_table.php
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateFollowsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('follows', function(Blueprint $table) { $table->increments('id'); $table->integer('follower_id'); $table->integer('followed_id'); $table->timestamps(); $table->unique(['follower_id', 'followed_id']); $table->collation = config('database.connections.mysql.collation'); $table->charset = config('database.connections.mysql.charset'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('follows'); } }
Save
Cancel