schema->create('DummyTable', function (Blueprint $table) { $table->bigIncrements('id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { App::$db->schema->dropIfExists('DummyTable'); } }