fb2b4d8a8a
chore: fix api test conventions chore: rubocop -A spec/ chore: more rubocop -A fix failing test rubocop fixes removes helper methods that are in my opinion dead code more rubocop fixes rubocop -a --auto-gen-config
11 lines
388 B
Ruby
11 lines
388 B
Ruby
class AddDepositDefaults < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
change_column_default :articles, :deposit, 0.0
|
|
change_column_default :order_article_results, :net_price, 0.0
|
|
change_column_default :order_article_results, :deposit, 0.0
|
|
change_column_default :orders, :deposit, 0.0
|
|
change_column_default :orders, :deposit_credit, 0.0
|
|
end
|
|
|
|
def self.down; end
|
|
end
|