????
Current Path : C:/inetpub/vhost/redmine/db/migrate/ |
Current File : C:/inetpub/vhost/redmine/db/migrate/20210728131544_drop_is_in_chlog_column.rb |
class DropIsInChlogColumn < ActiveRecord::Migration[6.1] def self.up remove_column :trackers, :is_in_chlog end def self.down add_column :trackers, :is_in_chlog, :boolean, :default => true, :null => false end end