discourse/db/migrate/20140526201939_add_disable_...

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

8 lines
200 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddDisableJumpReplyToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :disable_jump_reply, :boolean, default: false, null: false
end
end