discourse/db/migrate/20130615064344_add_dynamic_...

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

8 lines
204 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddDynamicFaviconPreferenceToUser < ActiveRecord::Migration[4.2]
2013-06-15 02:56:21 -04:00
def change
add_column :users, :dynamic_favicon, :boolean, default: false, null: false
end
end