38 lines
893 B
PHP
38 lines
893 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateRevisionsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('revisions', function ($table) {
|
|
$table->bigIncrements('id');
|
|
$table->string('revisionable_type');
|
|
$table->unsignedBigInteger('revisionable_id');
|
|
$table->unsignedBigInteger('user_id')->nullable();
|
|
$table->string('key');
|
|
$table->text('old_value')->nullable();
|
|
$table->text('new_value')->nullable();
|
|
$table->timestamps();
|
|
|
|
$table->index(array('revisionable_id', 'revisionable_type'));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('revisions');
|
|
}
|
|
}
|