File: //home/xedaptot/ai.naniguide.com/database/migrations/2023_06_22_025714_create_funnels_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFunnelsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('funnels', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->text('name')->nullable();
$table->text('message')->nullable();
$table->string('status')->nullable();
$table->string('file')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('funnels');
}
}