1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-08-26 05:57:38 +02:00
redmine/db/migrate/086_add_custom_fields_searchable.rb

10 lignes
223 B
Ruby
Brut Vue normale Historique

class AddCustomFieldsSearchable < ActiveRecord::Migration
def self.up
add_column :custom_fields, :searchable, :boolean, :default => false
end
def self.down
remove_column :custom_fields, :searchable
end
end