提交 1d01d47f 编写于 作者: Y Yves Senn

Merge pull request #18594 from prathamesh-sonpatki/use-force-true-in-templates

 Use force: true options for creating tables in bug templates
......@@ -12,10 +12,10 @@
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
create_table :posts do |t|
create_table :posts, force: true do |t|
end
create_table :comments do |t|
create_table :comments, force: true do |t|
t.integer :post_id
end
end
......
......@@ -21,10 +21,10 @@
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
create_table :posts do |t|
create_table :posts, force: true do |t|
end
create_table :comments do |t|
create_table :comments, force: true do |t|
t.integer :post_id
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册