Mercurial > hg > soundsoftware-site
view db/migrate/20110224000000_add_repositories_path_encoding.rb @ 702:3eb64cb3c7ac feature_36
Link authorships from publications detail page as well as publications list. Also minor text update
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Mon, 19 Sep 2011 17:00:35 +0100 |
parents | 051f544170fe |
children |
line wrap: on
line source
class AddRepositoriesPathEncoding < ActiveRecord::Migration def self.up add_column :repositories, :path_encoding, :string, :limit => 64, :default => nil end def self.down remove_column :repositories, :path_encoding end end