added form others

This commit is contained in:
Jagad R R
2024-12-20 11:07:07 +07:00
parent cd28280fb6
commit 53b60c42d6
18 changed files with 671 additions and 102 deletions
@@ -0,0 +1,28 @@
<?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('form_others', function (Blueprint $table) {
$table->string('account_number')->nullable()->after('total');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('form_others', function (Blueprint $table) {
$table->dropColumn('account_number');
});
}
};