Files
discourse/db/migrate/20141020174120_add_card_image_to_user_profiles.rb
T

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

8 lines
180 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCardImageToUserProfiles < ActiveRecord::Migration[4.2]
def change
add_column :user_profiles, :card_image_badge_id, :integer
end
end