Run rubocop --fix-layout and remove encoding comments

This commit is contained in:
Patrick Gansterer 2021-03-01 15:27:26 +01:00
parent fa63e6e81d
commit ea2862fdef
283 changed files with 1164 additions and 1969 deletions

View file

@ -1,11 +1,11 @@
class AddMissingIndexes < ActiveRecord::Migration[4.2]
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"]
@ -18,16 +18,16 @@ class AddMissingIndexes < ActiveRecord::Migration[4.2]
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", ["delivery_id"]
add_index "stock_changes", ["stock_article_id"]
add_index "stock_changes", ["stock_taking_id"]
add_index "tasks", ["workgroup_id"]
add_index "tasks", ["workgroup_id"]
end
def self.down