Mercurial > hg > soundsoftware-site
view .svn/pristine/e7/e789b49c2d19dabe0b26f8b8d9732b786d1d4c29.svn-base @ 1097:981cea967d17 bibplugin_db_migrations
Created migration to add timestamps to the authorships table.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 29 Nov 2012 14:40:50 +0000 |
parents | cbb26bc654de |
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