OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/db/migrate/20110215143010_add_timestam...

10 lines
178 B

class AddTimestampsToCustomFields < ActiveRecord::Migration
def self.up
add_timestamps :custom_fields
end
def self.down
remove_timestamps :custom_fields
end
end