# HG changeset patch # User luisf # Date 1353351509 0 # Node ID 6b67deb0674bdd19024a08f137ec1b956c2014fc # Parent b6f7225bf9548f68db09f67fd78a953898744653 Migration to add timestamps to Authors table diff -r b6f7225bf954 -r 6b67deb0674b vendor/plugins/redmine_bibliography/db/migrate/009_add_timestamp_columns_to_authors.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_bibliography/db/migrate/009_add_timestamp_columns_to_authors.rb Mon Nov 19 18:58:29 2012 +0000 @@ -0,0 +1,9 @@ +class AddTimestampColumnsToAuthors < ActiveRecord::Migration + def self.up + add_timestamps :authors + end + + def self.down + remove_timestamps :authors + end +end