Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SQLServerGrammar: added collation support
You can define collation in table creation: Schema::create('table_name', function (Blueprint $table) { $table->string('field_name')->collation('Latin1_General_CS_AS'); }); This is same implementation as MySQL grammar
- Loading branch information