id(); $table->string('profileShortBio'); $table->text('profileAboutMe'); $table->enum('avatarPreference', [ 'crafatar', // Mojang Profile 'gravatar' // Email profile ]); $table->text('socialLinks'); $table->bigIncrements('userID'); $table->timestamps(); $table->foreign('userID')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profiles'); } }