Mercurial > hg > soundsoftware-site
view .svn/pristine/1c/1c96e8748cd2bab0b547b070c39e7264886284c8.svn-base @ 971:b80f97c892bc cannam
Merge from branch "get_statistics"
author | Chris Cannam |
---|---|
date | Fri, 19 Oct 2012 14:47:14 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class AddActiveFieldToEnumerations < ActiveRecord::Migration def self.up add_column :enumerations, :active, :boolean, :default => true, :null => false end def self.down remove_column :enumerations, :active end end