Updated

db/migrate / 20170614165953_change_archived_petition_title_null.rb

A
9 lines of codes
2 methods
1.0 complexity/method
1 churn
2.0 complexity
0 duplications
class ChangeArchivedPetitionTitleNull < ActiveRecord::Migration
  1. ChangeArchivedPetitionTitleNull has no descriptive comment
def up change_column_null(:archived_petitions, :title, true) end def down change_column_null(:archived_petitions, :title, false) end end