Skip to content

Commit

Permalink
Fixes all specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
russ authored and anykeyh committed Jun 24, 2018
1 parent 0279305 commit a4dcee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/model/multiple_connections_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module MultipleConnectionsSpec
class Post
include Clear::Model

self.table = "models_posts"
self.table = "models_posts_two"

column id : Int32, primary: true, presence: false
column title : String
Expand All @@ -24,7 +24,7 @@ module MultipleConnectionsSpec
include Clear::Migration

def change(dir)
create_table "models_posts" do |t|
create_table "models_posts_two" do |t|
t.string "title", index: true
end
end
Expand Down

0 comments on commit a4dcee4

Please sign in to comment.