schema->create('test', function (Blueprint $table) { $table->increments('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { $this->schema->drop('test'); } }