I have a model with UUIDs stored in BINARY(16) field in a MySQL table. I would like to be able to transparently convert hexadecimal uuid into binary for the setter method and back when I use the getter method.
what is the 'right' way to proceed?
|
I have a model with UUIDs stored in BINARY(16) field in a MySQL table. I would like to be able to transparently convert hexadecimal uuid into binary for the setter method and back when I use the getter method. what is the 'right' way to proceed? |
|||
|
|
You override the setter and getter:
Of course, you'd want a BINARY column, because you're sending raw bytes to the DB. A migration such as this one:
|
|||||||||||
|
|
I looked at the source code for ActiveRecord 2.3.5 (mysql_adapter.rb). Looking at the NATIVE_DATABASE_TYPES hash makes it clear that it does not support the BINARY(16) data type:
Also note that :binary is not what you want, because that creates a BLOB column. If you have the inclination, I would recommend extending ActiveRecord to support the BINARY(16) type. Update: after some searching the following blog post by Matthew Higgins seems to be promising ("While arbitrary SQL statements can be executed in migrations, an alternative is to extend the MySql adapter to support new types of columns."): http://www.strictlyuntyped.com/2008/07/mysql-lovin-part-2-adding-new-column.html If you get this to work, I would hope that you share what you come up with. Like Matthew, I would like to see ActiveRecord have a cleaner API for adding column types. |
||||
|
|