dbfdg id(); $table->integer('project_id'); $table->integer('user_id'); $table->integer('invited_by')->default(0); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('project_users'); } }