加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

rails用generate为两个模型创建has_and_belongs_to_many中间表

发布时间:2020-12-17 04:06:21 所属栏目:百科 来源:网络整理
导读:Where: class Teacher ActiveRecord :: Base ?? has_and_belongs_to_many : students end and class Student ActiveRecord :: Base ? has_and_belongs_to_many : teachers end for rails 4: rails generate migration CreateJoinTableStudentTeacher student

Where:

class Teacher < ActiveRecord::Base
??has_and_belongs_to_many :students
end

and

class Student < ActiveRecord::Base
? has_and_belongs_to_many :teachers
end

for rails 4:

rails generate migration CreateJoinTableStudentTeacher student teacher

for rails 3:

rails generate migration students_teachers student_id:integer teacher_id:integer

for rails < 3

script/generate migration students_teachers student_id:integer teacher_id:integer

(note the table name lists both join tables in alphabetical order)

and then for rails 3 and below only,you need to edit your generated migration so an id field is not created:

create_table :students_teachers, :id => false do |t| 


转自:http://stackoverflow.com/questions/4381154/rails-migration-for-has-and-belongs-to-many-join-table

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读