36 lines
798 B
PHP
36 lines
798 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('activities', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('key');
|
|
$table->text('extra');
|
|
$table->integer('book_id')->indexed();
|
|
$table->integer('user_id');
|
|
$table->integer('entity_id');
|
|
$table->string('entity_type');
|
|
$table->nullableTimestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('activities');
|
|
}
|
|
};
|