Ruby on Rails database migration not creating foreign keys in MySQL tables(Ruby on Rails 数据库迁移不在 MySQL 表中创建外键)
问题描述
我正在尝试在 Ruby on Rails 应用程序中修改数据库迁移.我使用 MySQL 作为我的数据库,并希望将外键添加到正在创建的表中.我正在使用以下代码,并且在遵循在适当列上创建空值的规范时,没有应用外键约束.
I am trying to modify a database Migration in a Ruby on Rails application. I am using MySQL as my database and would like to add foreign keys to the table that is being created. I am using the following code and while the specifications for creating null values on appropriate columns is being followed no foreign key constraints are being applied.
class CreateBookCheckOuts < ActiveRecord::Migration
def self.up
create_table :book_check_outs do |t|
t.integer :book_id, :null => false, :options =>
"CONSTRAINT fk_book_check_out_books REFERENCES books(id)"
t.integer :person_id, :null => false, :options =>
"CONSTRAINT fk_book_check_out_people REFERENCES people(id)"
t.datetime :OutDate, :null => false
t.datetime :ReturnDate, :null => true
t.timestamps
end
end
def self.down
drop_table :book_check_outs
end
end
推荐答案
你可以使用 Foreigner宝石.
然后将您的迁移更改为:
Then change your migration to this:
class CreateBookCheckOuts < ActiveRecord::Migration
def self.up
create_table :book_check_outs do |t|
t.integer :book_id, :null => false
t.integer :person_id, :null => false
t.datetime :OutDate, :null => false
t.datetime :ReturnDate, :null => true
t.timestamps
end
add_foreign_key(:book_check_outs, :books)
add_foreign_key(:book_check_outs, :people)
end
def self.down
remove_foreign_key(:book_check_outs, :books)
remove_foreign_key(:book_check_outs, :people)
drop_table :book_check_outs
end
end
这篇关于Ruby on Rails 数据库迁移不在 MySQL 表中创建外键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Ruby on Rails 数据库迁移不在 MySQL 表中创建外键


基础教程推荐
- 从字符串 TSQL 中获取数字 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01