increments('id'); $table->unsignedInteger('user_id')->nullable(); $table->string('username')->nullable()->unique()->index(); $table->string('name')->nullable(); $table->string('bio', 150)->nullable(); $table->string('location')->nullable(); $table->string('website')->nullable(); $table->string('remote_url')->nullable(); $table->text('keybase_proof')->nullable(); $table->boolean('is_private')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profiles'); } }