aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-05-05 12:00:24 -0500
committerRafael França <rafaelmfranca@gmail.com>2016-05-05 12:00:24 -0500
commitea3b88b1eff1d242da5e03ca3ae82f737c0cedbe (patch)
tree41cedc551d4a6a55f9607fbd28b35befe72aa2ad /guides
parent19ba522b90f4b3e5daf469fbbccce708a8cc70ce (diff)
parentbeff7d9d8edfc628f64f784c971e99d696fc4c7f (diff)
downloadrails-ea3b88b1eff1d242da5e03ca3ae82f737c0cedbe.tar.gz
rails-ea3b88b1eff1d242da5e03ca3ae82f737c0cedbe.tar.bz2
rails-ea3b88b1eff1d242da5e03ca3ae82f737c0cedbe.zip
Merge pull request #24860 from maclover7/jm-rm-space
Remove extra space [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/bug_report_templates/active_record_master.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/active_record_master.rb b/guides/bug_report_templates/active_record_master.rb
index a86edd9121..6fd401bd50 100644
--- a/guides/bug_report_templates/active_record_master.rb
+++ b/guides/bug_report_templates/active_record_master.rb
@@ -20,10 +20,10 @@ ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:'
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
- create_table :posts, force: true do |t|
+ create_table :posts, force: true do |t|
end
- create_table :comments, force: true do |t|
+ create_table :comments, force: true do |t|
t.integer :post_id
end
end