Project

General

Profile

Download (192 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddEnabledToHosts < ActiveRecord::Migration
def self.up
add_column :hosts, :enabled, :boolean, :default => true
end

def self.down
remove_column :hosts, :enabled
end
end
(46-46/83)