Add indexes for better sql query performance.
This commit is contained in:
parent
7a23ec1cb1
commit
9f60a323ad
2 changed files with 62 additions and 1 deletions
35
db/migrate/20090907120012_add_missing_indexes.rb
Normal file
35
db/migrate/20090907120012_add_missing_indexes.rb
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
class AddMissingIndexes < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_index "article_prices", ["article_id"]
|
||||
|
||||
add_index "articles", ["supplier_id"]
|
||||
add_index "articles", ["article_category_id"]
|
||||
add_index "articles", ["type"]
|
||||
|
||||
add_index "deliveries", ["supplier_id"]
|
||||
|
||||
add_index "financial_transactions", ["ordergroup_id"]
|
||||
|
||||
add_index "group_order_article_quantities", ["group_order_article_id"]
|
||||
add_index "group_orders", ["order_id"]
|
||||
add_index "group_orders", ["ordergroup_id"]
|
||||
|
||||
add_index "invoices", ["supplier_id"]
|
||||
add_index "invoices", ["delivery_id"]
|
||||
|
||||
add_index "order_articles", ["order_id"]
|
||||
|
||||
add_index "order_comments", ["order_id"]
|
||||
|
||||
add_index "orders", ["state"]
|
||||
|
||||
add_index "stock_changes", ["delivery_id"]
|
||||
add_index "stock_changes", ["stock_article_id"]
|
||||
add_index "stock_changes", ["stock_taking_id"]
|
||||
|
||||
add_index "tasks", ["workgroup_id"]
|
||||
end
|
||||
|
||||
def self.down
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue