D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
dentostock.com
/
database
/
migrations
/
Filename :
2023_08_12_215346_create_guest_users_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGuestUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('guest_users', function (Blueprint $table) { $table->id(); $table->string('ip_address')->nullable(); $table->string('fcm_token')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('guest_users'); } }