假设我有由“ colA”,“ colB”和“ id”组成的表“ table A”,然后创建由“ colC”,“ colD”和“ id”组成的另一个表“ table B”。然后我添加参考
class AddColToTableA < ActiveRecord::Migration[5.2]
def change
add_reference :TableA, :colC, foreign_key: true
end
end
然后将在表A中创建另一个名为“ table_B_id”的列。 我的问题是