Mercurial > hg > soundsoftware-site
view db/migrate/20090318181151_extend_settings_name.rb @ 166:496f1cf46503 cannam-pre-20110113-merge
* Move SoundSoftware-specific scripts from extra/svn to extra/soundsoftware
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 01 Feb 2011 16:41:30 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
class ExtendSettingsName < ActiveRecord::Migration def self.up change_column :settings, :name, :string, :limit => 255, :default => '', :null => false end def self.down raise ActiveRecord::IrreversibleMigration end end