Mercurial > hg > soundsoftware-site
view plugins/redmine_checkout/db/migrate/20100118174556_add_render_link.rb @ 1427:2599a11ef11a biblio_alt_search_auth
Fixes Bug #762 - was replacing the whole content of the span, including the tag itself (which was being used as the "anchor").
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 08 Oct 2013 17:06:37 +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