discourse/db/migrate/20140425172618_add_titleabl...

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]
def change
add_column :badges, :allow_title, :boolean, null: false, default: false
end
end