Skip to content

Commit

Permalink
[8.x] Move primary after collate (#37815)
Browse files Browse the repository at this point in the history
* Move primary after collate, fixes #37811

* Move primary after charset
  • Loading branch information
Synchro authored Jun 25, 2021
1 parent 32f21da commit d27132e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MySqlGrammar extends Grammar
* @var string[]
*/
protected $modifiers = [
'Unsigned', 'Primary', 'Charset', 'Collate', 'VirtualAs', 'StoredAs', 'Nullable',
'Unsigned', 'Charset', 'Primary', 'Collate', 'VirtualAs', 'StoredAs', 'Nullable',
'Srid', 'Default', 'Increment', 'Comment', 'After', 'First',
];

Expand Down

0 comments on commit d27132e

Please sign in to comment.