diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-05-05 09:07:31 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-05-05 09:07:31 -0400 |
commit | beff7d9d8edfc628f64f784c971e99d696fc4c7f (patch) | |
tree | f2e9722efd9fa179cb6f3215359abeadfe19a3ab /guides | |
parent | 3bed679670dd8348ffc348509a653677c6ecb7f3 (diff) | |
download | rails-beff7d9d8edfc628f64f784c971e99d696fc4c7f.tar.gz rails-beff7d9d8edfc628f64f784c971e99d696fc4c7f.tar.bz2 rails-beff7d9d8edfc628f64f784c971e99d696fc4c7f.zip |
Remove extra space [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/bug_report_templates/active_record_master.rb | 4 |
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 |