Mass changes
This commit is contained in:
@@ -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');
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user