Kaydet (Commit) 941a8842 authored tarafından mertcelen's avatar mertcelen

Laravel updated to fix https://github.com/advisories/GHSA-x7p5-p2c9-phvg

Increase permissions value size.
üst 01a27259
This diff is collapsed.
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class IncreasePermissionsValueSize extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('permissions', function ($table) {
$table->string('value', 5000)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
1.5.2
\ No newline at end of file
1.5.5
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment