2018-04-17 01:35:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class CreateLikesTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('likes', function (Blueprint $table) {
|
|
|
|
$table->bigIncrements('id');
|
|
|
|
$table->bigInteger('profile_id')->unsigned();
|
|
|
|
$table->bigInteger('status_id')->unsigned();
|
|
|
|
// Flag to remove spammy profile_ids
|
|
|
|
$table->boolean('flagged')->default(false);
|
2018-04-29 16:29:01 +00:00
|
|
|
$table->unique(['profile_id', 'status_id']);
|
2018-04-17 01:35:01 +00:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('likes');
|
|
|
|
}
|
|
|
|
}
|