Exemplo n.º 1
0
 /**
  * The collation of the column (only supported by Drizzle, Mysql, PostgreSQL>=9.1, Sqlite and SQLServer).
  *
  * @param string $collation
  *
  * @return Field
  */
 public function collation($collation)
 {
     $this->builder->option('collation', $collation);
     return $this;
 }