CasperSecurity
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('other_receipts', function (Blueprint $table) {
$table->id();
$table->string('received_from')->index();
$table->integer('reference_no')->index();
$table->foreignId('account_group_id')->constrained('account_groups')->cascadeOnDelete();
$table->string('ledger_head')->index();
$table->string('amount')->index();
$table->tinyInteger('status')->default(1);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('other_receipts');
}
};