Skip to content

Commit

Permalink
Fix table names on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurnn committed Oct 17, 2013
1 parent 24d32ad commit 8bbeb1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/active_record.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
t.string :name
end

create_table :ar_posts_tags, force: true do |t|
create_table :ar_posts_ar_tags, force: true do |t|
t.references :ar_post, :ar_tag, index: true
end

create_table :ar_comments_tags, force: true do |t|
create_table :ar_comments_ar_tags, force: true do |t|
t.references :ar_comment, :ar_tag, index: true
end
end
Expand Down

0 comments on commit 8bbeb1d

Please sign in to comment.