Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix MySQL Schema Grammar $modifiers order
Charset/Collate must be placed before VirtualAs/StoredAs. e.g. ```php $table->string('hash', 64)->charset('ascii')->storedAs('sha2(`url`,256)') ``` According to Sequel Pro, this is equivalent to: ```sql `hash` varchar(64) CHARACTER SET ascii GENERATED ALWAYS AS (sha2(`url`,256)) STORED ```
- Loading branch information