1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-26 17:58:38 +02:00
redmine/db/migrate/088_add_custom_fields_default_value.rb

10 satır
209 B
Ruby
Ham Normal Görünüm Geçmiş

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