Skip to content

Commit 5ab04de

Browse files
authored
Add double numeric support to IndexBlueprint
1 parent 1ee042a commit 5ab04de

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Schema/IndexBlueprint.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ public function float($field): Definitions\FieldDefinition
6767
{
6868
return $this->addField('float', $field);
6969
}
70+
71+
public function double($field): Definitions\FieldDefinition
72+
{
73+
return $this->addField('double', $field);
74+
}
7075

7176
public function short($field): Definitions\FieldDefinition
7277
{

0 commit comments

Comments
 (0)