Commit 3f54dc4f1c2df94d22bd0be352cbd894dfcf7df4
Committed by
Daniela Feitosa
1 parent
33e08d4f
Exists in
master
and in
29 other branches
Limiting database indexes to 64 chars
Without that is impossible to create a database from scratch on MYSQL, cause it have some limitations about indexes size. http://bugs.mysql.com/bug.php?id=4541
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
db/schema.rb
... | ... | @@ -32,7 +32,7 @@ ActiveRecord::Schema.define(:version => 20110714213405) do |
32 | 32 | end |
33 | 33 | |
34 | 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 | |
35 | + add_index "action_tracker_notifications", ["profile_id", "action_tracker_id"], :name => "index_action_tracker_notifications_on_profile_id_and_action_trac", :unique => true | |
36 | 36 | add_index "action_tracker_notifications", ["profile_id"], :name => "index_action_tracker_notifications_on_profile_id" |
37 | 37 | |
38 | 38 | create_table "article_versions", :force => true do |t| | ... | ... |