I updated it by myself ? ?
Edit file: /vendor/davis/flarum-ext-socialprofile/migrations/2016_01_14_000000_create_socialbuttons_table.php
With:
<?php
namespace Davis\SocialProfile\Migration;
use Flarum\Database\Migration;
use Illuminate\Database\Schema\Blueprint;
return Migration::createTable(
'socialbuttons',
function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->longText('buttons');
}
);
Works perfect ?