##// END OF EJS Templates
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.
More unit tests for the plugins. Fixed bug where a plugin's hook method could return nil.

File last commit:

r1077:c65ab7c0f272
r1706:ca8fb4026e0e
Show More
088_add_custom_fields_default_value.rb
9 lines | 209 B | text/x-ruby | RubyLexer
/ db / migrate / 088_add_custom_fields_default_value.rb
Jean-Philippe Lang
Missing migration for r1090....
r1077 class AddCustomFieldsDefaultValue < ActiveRecord::Migration
def self.up
add_column :custom_fields, :default_value, :text
end
def self.down
remove_column :custom_fields, :default_value
end
end