我使用
ruby和activerecord来
获取有关
mysql表的信息.
我希望我可以直接从我的模型类获取这些信息,这是可能的吗?
说我有我的模型:
class Product < ActiveRecord::Base
end
现在有可能获取有关以下信息:
1. MysqL table
2. columns
3. column types
或者我需要在ActiveRecord模块的更深入的地方找到这个?
> Product.table_name > Product.column_names > Product.columns_hash [‘title’].type
原文链接:https://www.f2er.com/ruby/266929.html