diff --git a/src/Jenssegers/Mongodb/Schema/Blueprint.php b/src/Jenssegers/Mongodb/Schema/Blueprint.php
index 1208ed19303b372d609793827a73c4c4f6b70a06..f3b9c2ad58ff9dfb81e0a87e8a0c18c011628f70 100644
--- a/src/Jenssegers/Mongodb/Schema/Blueprint.php
+++ b/src/Jenssegers/Mongodb/Schema/Blueprint.php
@@ -236,14 +236,14 @@ class Blueprint extends \Illuminate\Database\Schema\Blueprint
/**
* @inheritdoc
*/
- public function create()
+ public function create($options = [])
{
$collection = $this->collection->getCollectionName();
$db = $this->connection->getMongoDB();
// Ensure the collection is created.
- $db->createCollection($collection);
+ $db->createCollection($collection, $options);
}
/**