integer('team_id'); $table->integer('user_id'); $table->string('role', 20); $table->unique(['team_id', 'user_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('team_users'); } }