Rails有许多没有连接表的through-建议
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rails有许多没有连接表的through-建议相关的知识,希望对你有一定的参考价值。
# acts_as_roleable create_table :users, :force => true do |t| t.string :name # ... end # acts_as_roleable create_table :groups, :force => true do |t| t.string :name # ... end create_table :memberships, :force => true do |t| t.integer :group_id t.integer :user_id end create_table :roles, :force => true do |t| t.string :name t.column :roleable_id, :integer t.column :roleable_type, :string end create_table :permissions, :force => true do |t| t.string :role_id t.string :name # ... end
以上是关于Rails有许多没有连接表的through-建议的主要内容,如果未能解决你的问题,请参考以下文章
Ruby-on-Rails:多个 has_many :通过可能吗?
连接Mysql提示Can’t connect to local MySQL server through socket的解决方法
何时在 Rails 中使用“has_many :through”关系?
连接Mysql提示Can’t connect to local MySQL server through socket的解决方法