retrospring/db/migrate/20150112210754_add_banned_to_users.rb

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

6 lines
134 B
Ruby
Raw Normal View History

class AddBannedToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :banned, :boolean, default: false
end
end