2022-12-07 08:39:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
return new class extends Migration {
|
2022-12-07 08:39:05 +01:00
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::table('companies', function (Blueprint $table) {
|
2023-02-16 02:36:09 +01:00
|
|
|
$table->string('matomo_url', 191)->nullable();
|
2022-12-07 08:53:12 +01:00
|
|
|
$table->bigInteger('matomo_id')->nullable();
|
2022-12-07 08:39:05 +01:00
|
|
|
});
|
|
|
|
}
|
2023-02-16 02:36:09 +01:00
|
|
|
};
|