Mass changes

This commit is contained in:
Simon Pocrnjič
2025-10-04 23:36:18 +02:00
parent ab50336e97
commit fe91c7e4bc
46 changed files with 5738 additions and 1873 deletions
@@ -0,0 +1,33 @@
<?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('field_job_settings', function (Blueprint $table): void {
if (! Schema::hasColumn('field_job_settings', 'action_id')) {
$table->foreignId('action_id')->nullable()->constrained('actions')->nullOnDelete()->after('segment_id');
$table->index('action_id');
}
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('field_job_settings', function (Blueprint $table): void {
if (Schema::hasColumn('field_job_settings', 'action_id')) {
$table->dropConstrainedForeignId('action_id');
}
});
}
};
@@ -0,0 +1,26 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('import_rows', function (Blueprint $table) {
if (! Schema::hasColumn('import_rows', 'raw_sha1')) {
$table->string('raw_sha1', 40)->nullable()->after('fingerprint')->index();
}
});
}
public function down(): void
{
Schema::table('import_rows', function (Blueprint $table) {
if (Schema::hasColumn('import_rows', 'raw_sha1')) {
$table->dropColumn('raw_sha1');
}
});
}
};