feat: log drain (wip)
This commit is contained in:
38
database/migrations/2023_11_16_220647_add_log_drains.php
Normal file
38
database/migrations/2023_11_16_220647_add_log_drains.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('server_settings', function (Blueprint $table) {
|
||||
$table->boolean('is_logdrain_newrelic_enabled')->default(false);
|
||||
$table->string('logdrain_newrelic_license_key')->nullable();
|
||||
$table->string('logdrain_newrelic_base_uri')->nullable();
|
||||
|
||||
$table->boolean('is_logdrain_highlight_enabled')->default(false);
|
||||
$table->string('logdrain_highlight_project_id')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('server_settings', function (Blueprint $table) {
|
||||
$table->dropColumn('is_logdrain_newrelic_enabled');
|
||||
$table->dropColumn('logdrain_newrelic_license_key');
|
||||
$table->dropColumn('logdrain_newrelic_base_uri');
|
||||
|
||||
$table->dropColumn('is_logdrain_highlight_enabled');
|
||||
$table->dropColumn('logdrain_highlight_project_id');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user