Files
discourse/db/migrate/20141020154935_rename_expansion_to_card.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
187 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RenameExpansionToCard < ActiveRecord::Migration[4.2]
def change
rename_column :user_profiles, :expansion_background, :card_background
end
end