Project

General

Profile

Download (206 Bytes) Statistics
| Branch: | Tag: | Revision:
class RemoveHiddenColumnFromUser < ActiveRecord::Migration
def up
remove_column :users, :hidden
end

def down
add_column :users, :hidden, :boolean, :default => false, :null => false
end
end
(46-46/46)