Updated

db/migrate / 20150703165930_change_size_of_petition_background.rb

A
9 lines of codes
2 methods
1.3 complexity/method
1 churn
2.6 complexity
0 duplications
class ChangeSizeOfPetitionBackground < ActiveRecord::Migration
  1. ChangeSizeOfPetitionBackground has no descriptive comment
def up change_column :petitions, :background, :string, limit: 300 end def down change_column :petitions, :background, :string, limit: 200 end end