File: /var/www/html/laravel/database/migrations/2024_09_30_085210_fine_tuning_jobs_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('fine_tuning_jobs', function (Blueprint $table) {
$table->id();
$table->string('prompt_id');
$table->string('job_id')->nullable();
$table->string('job_status')->nullable();
$table->string('file_name');
$table->integer('examples_number');
$table->string('model_name')->nullable();
$table->timestamp('created_at');
$table->timestamp('updated_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};