Files
sifatbaho-php/database/migrations/2022_12_25_104357_create_bonus.php
2026-04-05 05:31:24 +05:00

35 lines
815 B
PHP
Executable File

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('bonuses', function (Blueprint $table) {
$table->id();
$table->bigInteger('order_id')->nullable();
$table->foreignId('appraiser_id')->references('id')->on('users');
$table->bigInteger('amount')->default(0);
$table->string('order_type')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('bonuses');
}
};