2020-08-07 01:14:14 +02:00
|
|
|
class AddMissingIndexes < ActiveRecord::Migration[4.2]
|
2009-09-07 15:35:19 +02:00
|
|
|
def self.up
|
|
|
|
add_index "article_prices", ["article_id"]
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2009-09-07 15:35:19 +02:00
|
|
|
add_index "articles", ["supplier_id"]
|
|
|
|
add_index "articles", ["article_category_id"]
|
|
|
|
add_index "articles", ["type"]
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2009-09-07 15:35:19 +02:00
|
|
|
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"]
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2009-09-07 15:35:19 +02:00
|
|
|
add_index "order_comments", ["order_id"]
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2009-09-07 15:35:19 +02:00
|
|
|
add_index "orders", ["state"]
|
|
|
|
|
2021-03-01 15:27:26 +01:00
|
|
|
add_index "stock_changes", ["delivery_id"]
|
|
|
|
add_index "stock_changes", ["stock_article_id"]
|
2009-09-07 15:35:19 +02:00
|
|
|
add_index "stock_changes", ["stock_taking_id"]
|
|
|
|
|
2021-03-01 15:27:26 +01:00
|
|
|
add_index "tasks", ["workgroup_id"]
|
2009-09-07 15:35:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
end
|
|
|
|
end
|