admin module added
This commit is contained in:
@ -4,8 +4,7 @@ use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
return new class extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
@ -17,6 +16,12 @@ return new class extends Migration
|
||||
$table->unsignedBigInteger('leave_type_id');
|
||||
$table->date('start_date')->nullable();
|
||||
$table->date('end_date')->nullable();
|
||||
$table->date('leave_approved_date')->nullable();
|
||||
$table->Integer('total_days')->nullable();
|
||||
$table->unsignedBigInteger('leave_approved_by')->nullable();
|
||||
$table->Integer('status')->nullable();
|
||||
$table->longtext('description')->nullable();
|
||||
$table->text('remarks')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user