Remove extra space [ci skip]

This commit is contained in:
Jon Moss 2016-05-05 09:07:31 -04:00
parent 3bed679670
commit beff7d9d8e
1 changed files with 2 additions and 2 deletions

View File

@ -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