function logsession

This commit is contained in:
Ainie Hayatie
2024-01-30 12:32:43 +08:00
parent 0322112863
commit 51b1f32c07
4 changed files with 126 additions and 0 deletions
@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLogusersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//return;
Schema::create('logusers', function (Blueprint $table) {
$table->id();
$table->string('kodcaw')->nullable();
$table->string('nokp')->nullable();
$table->string('taraf')->nullable();
$table->string('nama')->nullable();
$table->string('email')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('logusers');
}
}