D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2023_03_06_124554_alter_users_info.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterUsersInfo extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function (Blueprint $table) { $table->longText('known_languages')->nullable(); $table->longText('skills')->nullable(); $table->longText('description')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }