Files
discourse/db/migrate/20140425172618_add_titleable_to_badges.rb
T

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

8 lines
188 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTitleableToBadges < ActiveRecord::Migration[4.2]
2014-04-25 23:55:29 +05:30
def change
add_column :badges, :allow_title, :boolean, null: false, default: false
end
end