revised form meeting seminar

This commit is contained in:
Jagad R R
2025-01-04 13:16:00 +07:00
parent c584c04dcb
commit ec02c3f024
9 changed files with 408 additions and 154 deletions
@@ -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
{
Schema::table('form_meeting_seminar', function (Blueprint $table) {
$table->integer('allowance')->nullable()->change();
$table->integer('transport_ankot')->nullable()->change();
$table->integer('hotel')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('form_meeting_seminar', function (Blueprint $table) {
$table->integer('allowance')->nullable(false)->change();
$table->integer('transport_ankot')->nullable(false)->change();
$table->integer('hotel')->nullable(false)->change();
});
}
};
@@ -0,0 +1,40 @@
<?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_meeting_seminar', function (Blueprint $table) {
$table->dropColumn('bukti1');
$table->dropColumn('bukti2');
$table->dropColumn('bukti3');
$table->string('bukti_allowance')->after('approved_total')->nullable();
$table->string('bukti_transport_ankot')->after('bukti_allowance')->nullable();
$table->string('bukti_hotel')->after('bukti_transport_ankot')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('form_meeting_seminar', function (Blueprint $table) {
$table->dropColumn('bukti_allowance');
$table->dropColumn('bukti_transport_ankot');
$table->dropColumn('bukti_hotel');
$table->string('bukti1')->after('approved_total')->nullable()->change();
$table->string('bukti2')->after('bukti1')->nullable()->change();
$table->string('bukti3')->after('bukti2')->nullable()->change();
});
}
};