We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unique
1 parent 64d63f6 commit 3ebde41Copy full SHA for 3ebde41
composer.json
@@ -10,7 +10,7 @@
10
],
11
"require": {
12
"php": ">=7.1",
13
- "thecodingmachine/dbal-fluid-schema-builder": "^1.6",
+ "thecodingmachine/dbal-fluid-schema-builder": "^1.6.1",
14
"doctrine/dbal": "^2.5"
15
},
16
"require-dev": {
src/TdbmFluidColumnOptions.php
@@ -51,9 +51,9 @@ public function null(): self
51
*
52
* @return self
53
*/
54
- public function unique(?string $indexName = null): self
+ public function unique(): self
55
{
56
- $this->fluidColumnOptions->unique($indexName);
+ $this->fluidColumnOptions->unique();
57
return $this;
58
}
59
0 commit comments