engine = 'InnoDB'; $table->increments('id'); $table->string('name'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('component_groups'); } }