mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 05:45:49 +01:00
10 lines
229 B
Ruby
10 lines
229 B
Ruby
|
|
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
|