1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-26 17:58:38 +02:00
redmine/db/migrate/088_add_custom_fields_default_value.rb

10 linhas
209 B
Ruby
Original Visão normal Histórico

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