increments('id'); $table->integer('schedule_id')->unsigned(); $table->integer('component_id')->unsigned(); $table->tinyInteger('component_status')->unsigned(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('schedule_components'); } }