File: /home/xedaptot/be.naniguide.com/database/migrations/2024_10_16_083406_add_form_id_to_timelines.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFormIdToTimelines extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('timelines', function (Blueprint $table) {
$table->bigInteger('form_id')->unsigned()->nullable();
$table->foreign('form_id')->references('id')->on('forms')->onDelete('set null');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('timelines', function (Blueprint $table) {
$table->dropColumn('form_id');
});
}
}