# HG changeset patch # User luisf # Date 1354200050 0 # Node ID 981cea967d17dd634a00133dd61c652e234c0764 # Parent 8b57fd618c840438e27ed5e4ce34897402ed0bd2 Created migration to add timestamps to the authorships table. diff -r 8b57fd618c84 -r 981cea967d17 vendor/plugins/redmine_bibliography/db/migrate/010_add_timestamp_columns_to_authorships.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_bibliography/db/migrate/010_add_timestamp_columns_to_authorships.rb Thu Nov 29 14:40:50 2012 +0000 @@ -0,0 +1,9 @@ +class AddTimestampColumnsToAuthorships < ActiveRecord::Migration + def self.up + add_timestamps :authorships + end + + def self.down + remove_timestamps :authorships + end +end