D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2022_06_08_064423_alter_users_is_available.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterUsersIsAvailable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function (Blueprint $table) { $table->tinyInteger('is_available')->nullable()->default('0')->comment('1- true , 0- false'); $table->string('designation')->nullable(); $table->time('last_online_time')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }