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.
1 parent 081bd55 commit 72de70dCopy full SHA for 72de70d
src/table/TableColumn.php
@@ -187,10 +187,8 @@ public function isColumnAppendPK($schema)
187
if (stripos($this->append, 'IDENTITY') !== false && stripos($this->append, 'PRIMARY KEY') !== false) {
188
return true;
189
}
190
- } else {
191
- if (stripos($this->append, 'PRIMARY KEY') !== false) {
192
- return true;
193
- }
+ } elseif (stripos($this->append, 'PRIMARY KEY') !== false) {
+ return true;
194
195
return false;
196
0 commit comments