File: /home/imensosw/www/amanda/database/migrations/2020_12_29_134935_create_tip_history_table.php
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTipHistoryTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tip_history', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('tip_id')->unsigned();
$table->double('amount',10,2)->default('0');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tip_history');
}
}