8cdf3203ef
Added DB and started controller method.
37 lines
877 B
PHP
37 lines
877 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('watches', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('user_id')->index();
|
|
$table->integer('watchable_id');
|
|
$table->string('watchable_type', 100);
|
|
$table->tinyInteger('level', false, true)->index();
|
|
$table->timestamps();
|
|
|
|
$table->index(['watchable_id', 'watchable_type'], 'watchable_index');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('watches');
|
|
}
|
|
};
|