Mercurial > hg > soundsoftware-site
view plugins/redmine_checkout/db/migrate/20100118174556_add_render_link.rb @ 1445:0c7b3bb73517 live
Fix underscores in idents (and make regex the same in both places it's used)
author | Chris Cannam |
---|---|
date | Tue, 22 Oct 2013 10:56:02 +0100 |
parents | b4b72f1eb644 |
children |
line wrap: on
line source
class AddRenderLink < ActiveRecord::Migration def self.up add_column :repositories, :render_link, :boolean, :null => true end def self.down remove_column :repositories, :render_link end end