之前查看表结构的方式一直都是使用的 annotate 这个 gem,但是将表结构作为注释嵌入在模型里感觉不是很好,而且字段多的时候看起来不太舒服。所以想着能不能在 console 里边打印表结构,然后就有了这个 gem: table_inspector
annotate
大概的用法是:
TableInspector.scan [model_class]
输出结果类似:
更多用法写在 README 里边了: https://github.com/otorain/table_inspector
牛蛙