37 lines
844 B
PHP
37 lines
844 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateOvertimesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('overtimes', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->unsignedInteger('emp_id');
|
|
$table->time('duration');
|
|
$table->date('overtime_date');
|
|
$table->timestamps();
|
|
|
|
// Tambahkan index untuk emp_id
|
|
$table->index('emp_id');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('overtimes');
|
|
}
|
|
}
|