Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
database
/
migrations
/
Editing: 2019_10_04_140608_create_user_profiles_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserProfilesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_profiles', function (Blueprint $table) { $table->increments('id'); $table->string('description')->nullable(); $table->string('city')->nullable(); $table->string('country')->nullable(); $table->integer('user_id')->index()->unique(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_profiles'); } }
Save
Cancel