Unnecessary UTF-8 declaration for database

This commit is contained in:
Mikael Nordfeldth 2013-08-20 09:43:23 +02:00
parent e40044e2fa
commit 6f4c572389
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class Magicsig extends Managed_DataObject
return array(
'fields' => array(
'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id'),
'keypair' => array('type' => 'text', 'description' => 'keypair text representation', 'collate' => 'utf8_general_ci'),
'keypair' => array('type' => 'text', 'description' => 'keypair text representation'),
'alg' => array('type' => 'varchar', 'length' => 64, 'description' => 'algorithm'),
),
'primary key' => array('user_id'),