id(); $table->integer('twitch_uid')->unsigned()->unique(); $table->string('username'); $table->string('email'); $table->text("profile_image")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }