File: /var/www/quadcode-jobs/database/migrations/2023_06_20_161000_breezy_auth_data_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class BreezyAuthDataTable extends Migration
{
public function up()
{
Schema::create('breezy_auth_data', function (Blueprint $table) {
$table->id();
$table->string('email');
$table->string('token');
$table->string('company_id')->nullable();
$table->timestamp('expired_at');
});
}
public function down()
{
Schema::dropIfExists('breezy_auth_data');
}
}