]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Unnecessary UTF-8 declaration for database
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 20 Aug 2013 07:43:23 +0000 (09:43 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 20 Aug 2013 07:43:23 +0000 (09:43 +0200)
plugins/OStatus/classes/Magicsig.php

index 9c7ac62d7249758893a83fe0e07e96de77f7e473..1ef913792bd983bcf9ad6bae8845904a5432f889 100644 (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'),