This document provides the necessary steps to upgrade from a previous version to 8.0.x.
Support for PHP 5.x has been dropped since version 5.0.0. PHP 7.0.13 or greater is now required.
The doctrine/dbal package is required to successfully execute the upgrade migrations, so make sure it's installed.
composer require doctrine/dbal{note} Any custom changes made to the initial Audit Migration should be taken into account, do not blindly copy and paste!
Version 8.0.x breaks AttributeRedactor usage, slightly.
If you were previously using it, make sure to read the Attribute Modifiers section and update your models, accordingly.
The audits table structure remains the same, so no changes in that regard are needed.
{tip} The
AttributeRedactorinterface was previously calledAuditRedactor.
Overall, the configuration remains the same, with just the audit.redact entry being dropped.
Use the following migration to convert a default 5.1.x/6.1.x table structure into the 8.0.x version:
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class UpdateAuditsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('audits', function (Blueprint $table) {
$table->string('user_type')->nullable();
});
// Set the user_type value and keep the timestamp values.
DB::table('audits')->update([
'user_type' => \App\User::class,
'created_at' => DB::raw('created_at'),
'updated_at' => DB::raw('updated_at'),
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// There's no turning back
}
}{note} If necessary, replace
\App\User::classwith the FQCN of the User model, before setting theuser_type.
Use the following migration to convert a default 4.1.x table structure into the 8.0.x version:
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class UpdateAuditsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('audits', function (Blueprint $table) {
$table->string('user_type')->nullable();
$table->string('tags')->nullable();
});
// Set the user_type value and keep the timestamp values.
DB::table('audits')->update([
'user_type' => \App\User::class,
'created_at' => DB::raw('created_at'),
'updated_at' => DB::raw('updated_at'),
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// There's no turning back
}
}{note} If necessary, replace
\App\User::classwith the FQCN of the User model, before setting theuser_type.
All Auditable models must implement the OwenIt\Auditing\Contracts\Auditable interface.
{tip} Take a look at the brief example in the Model Setup.
Use the following migration to convert a default 3.1.x table structure into the 8.0.x version:
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class UpdateAuditsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('audits', function (Blueprint $table) {
$table->increments('id')->change();
$table->renameColumn('type', 'event');
$table->renameColumn('old', 'old_values');
$table->renameColumn('new', 'new_values');
$table->unsignedInteger('user_id')->nullable()->change();
$table->string('user_type')->nullable();
$table->renameColumn('route', 'url');
$table->string('user_agent')->nullable();
$table->string('tags')->nullable();
$table->timestamp('updated_at')->nullable();
});
// Set the user_type value and keep the timestamp values.
DB::table('audits')->update([
'user_type' => \App\User::class,
'created_at' => DB::raw('created_at'),
'updated_at' => DB::raw('updated_at'),
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// There's no turning back
}
}{note} If necessary, replace
\App\User::classwith the FQCN of the User model, before setting theuser_type.
All Auditable models must implement the OwenIt\Auditing\Contracts\Auditable interface.
{tip} Take a look at the brief example in the Model Setup.
Use the following migration to convert a default 2.4.x table structure into the 8.0.x version:
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class UpdateAuditsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('audits', function (Blueprint $table) {
$table->unsignedInteger('user_id')->nullable()->change();
$table->string('user_type')->nullable();
$table->unsignedInteger('owner_id')->change();
$table->renameColumn('owner_id', 'auditable_id');
$table->renameColumn('owner_type', 'auditable_type');
$table->index([
'auditable_id',
'auditable_type',
]);
$table->renameColumn('type', 'event');
$table->renameColumn('old_value', 'old_values');
$table->renameColumn('new_value', 'new_values');
$table->renameColumn('route', 'url');
$table->renameColumn('ip', 'ip_address');
$table->string('user_agent')->nullable();
$table->string('tags')->nullable();
});
// Set the user_type value and keep the timestamp values.
DB::table('audits')->update([
'user_type' => \App\User::class,
'created_at' => DB::raw('created_at'),
'updated_at' => DB::raw('updated_at'),
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// There's no turning back
}
}{note} If necessary, replace
\App\User::classwith the FQCN of the User model, before setting theuser_type.
The audit.redact entry which was present since version 6.1.0 has been dropped.
{tip} When in doubt, check the bundled configuration file and update or simply replace your current file and make the appropriate changes.