accidentally set id/mbid as an integer rather than string.

This commit is contained in:
Thomas Wolfe 2013-11-11 21:13:21 -06:00 committed by Diego d'Ursel
parent b77fcac50b
commit 4dd3db1158

View File

@ -1,7 +1,7 @@
module MusicBrainz
class Recording < BaseModel
field :id, Integer
field :mbid, Integer
field :id, String
field :mbid, String
field :title, String
field :artist, String
field :releases, String