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