Mercurial > hg > soundsoftware-site
view .svn/pristine/1c/1c96e8748cd2bab0b547b070c39e7264886284c8.svn-base @ 1609:5486a5848ad8 deploy
Load from deploy-source root, not deployed root (consistent with check in prepare.sh)
author | Chris Cannam |
---|---|
date | Tue, 29 Aug 2017 11:52:36 +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