id(); $table->unsignedBigInteger('user_id'); $table->string('title')->nullable(); $table->text('description')->nullable(); $table->string('url')->nullable(); $table->string('image')->nullable(); $table->timestamps(); $table->index('user_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profiles'); } }