20160223164502_make_uris_nullable_in_statuses.rb 187 B

1234567
  1. # frozen_string_literal: true
  2. class MakeUrisNullableInStatuses < ActiveRecord::Migration[4.2]
  3. def change
  4. change_column :statuses, :uri, :string, null: true, default: nil
  5. end
  6. end