1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-07-27 07:37:45 +02:00
redmine/db/migrate/20120127174243_add_custom_fields_multiple.rb

10 lignes
222 B
Ruby

class AddCustomFieldsMultiple < ActiveRecord::Migration[4.2]
def self.up
add_column :custom_fields, :multiple, :boolean, :default => false
end
def self.down
remove_column :custom_fields, :multiple
end
end