Commit 02c67027f6eb41de07162f4dd8ba83d5865d7eba
1 parent
62c69722
Exists in
master
and in
28 other branches
Fixed wrong name on db/schema
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
db/schema.rb
@@ -31,8 +31,8 @@ ActiveRecord::Schema.define(:version => 20110228174632) do | @@ -31,8 +31,8 @@ ActiveRecord::Schema.define(:version => 20110228174632) do | ||
31 | t.integer "profile_id" | 31 | t.integer "profile_id" |
32 | end | 32 | end |
33 | 33 | ||
34 | - add_index "action_tracker_notifications", ["action_tracker_id", "profile_id"], :name => "index_action_tracker_notifications_on_profile_id_and_action_tra", :unique => true | ||
35 | add_index "action_tracker_notifications", ["action_tracker_id"], :name => "index_action_tracker_notifications_on_action_tracker_id" | 34 | add_index "action_tracker_notifications", ["action_tracker_id"], :name => "index_action_tracker_notifications_on_action_tracker_id" |
35 | + add_index "action_tracker_notifications", ["profile_id", "action_tracker_id"], :name => "index_action_tracker_notifications_on_profile_id_and_action_tracker_id", :unique => true | ||
36 | add_index "action_tracker_notifications", ["profile_id"], :name => "index_action_tracker_notifications_on_profile_id" | 36 | add_index "action_tracker_notifications", ["profile_id"], :name => "index_action_tracker_notifications_on_profile_id" |
37 | 37 | ||
38 | create_table "article_versions", :force => true do |t| | 38 | create_table "article_versions", :force => true do |t| |