To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / redmine_bibliography / db / migrate / 007_add_external_url_column_to_publications.rb @ 1056:6b67deb0674b

History | View | Annotate | Download (214 Bytes)

1
class AddExternalUrlColumnToPublications < ActiveRecord::Migration
2
  def self.up
3
    add_column :publications, :external_url, :string
4
  end
5

    
6
  def self.down
7
    remove_column :publications, :external_url
8
  end
9
end