20160223164502_make_uris_nullable_in_statuses.rb 247 B

1234567891011
  1. # frozen_string_literal: true
  2. class MakeUrisNullableInStatuses < ActiveRecord::Migration[4.2]
  3. def up
  4. change_column :statuses, :uri, :string, null: true, default: nil
  5. end
  6. def down
  7. raise ActiveRecord::IrreversibleMigration
  8. end
  9. end