ranjith-dev #975

Merged
jothi merged 8 commits from ranjith-dev into master 2026-09-04 08:50:52 +00:00
Showing only changes of commit 9437ee4a4b - Show all commits

View File

@@ -0,0 +1,32 @@
<?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
{
$sql1 = <<<'SQL'
ALTER TABLE request_characteristics
ADD COLUMN gernr TEXT DEFAULT NULL
SQL;
DB::statement($sql1);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('request_characteristics', function (Blueprint $table) {
// //
// });
}
};