Updated

db/migrate / 20170611190354_add_thresholds_to_parliament.rb

A
6 lines of codes
1 methods
2.6 complexity/method
2 churn
2.6 complexity
0 duplications
class AddThresholdsToParliament < ActiveRecord::Migration
  1. AddThresholdsToParliament has no descriptive comment
def change add_column :parliaments, :threshold_for_response, :integer, null: false, default: 10000 add_column :parliaments, :threshold_for_debate, :integer, null: false, default: 100000 end end