Welcome Guest, Not a member yet? Register   Sign In
Database Forge Class - Set Default Collation
#1

Is there a way to set the default collation using Codeigniter's Database Forge Class? It defaults to 'utf8_general_ci' but I want to override that to 'utf8_unicode_ci'.
Code:
$attributes = array(
 'ENGINE' => 'InnoDB',
 'COLLATION' => 'utf8_unicode_ci'
);
$this->dbforge->create_table(table_name, FALSE, $attributes);
When I add this (my best guess on how to set it) it produces an error.
Code:
'COLLATION' => 'utf8_unicode_ci'
Documentation does not specify how to set the default collation.
Reply


Messages In This Thread
Database Forge Class - Set Default Collation - by brambejo - 12-22-2016, 09:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB