transcribable 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/transcribable.rb +1 -1
- data/lib/transcribable/version.rb +1 -1
- metadata +1 -1
data/lib/transcribable.rb
CHANGED
@@ -30,7 +30,7 @@ module Transcribable
|
|
30
30
|
klass.column_names.each do |col|
|
31
31
|
if klass.transcribable?(col)
|
32
32
|
@@table = table
|
33
|
-
@@transcribable_attrs[col] =
|
33
|
+
@@transcribable_attrs[col] = @@table.classify.columns_hash[col].type
|
34
34
|
end
|
35
35
|
end
|
36
36
|
end
|