mirror of
https://github.com/redmine/redmine.git
synced 2025-12-15 21:10:27 +01:00
6 lines
148 B
Ruby
6 lines
148 B
Ruby
|
|
class AddTrackersDescription < ActiveRecord::Migration[5.2]
|
||
|
|
def change
|
||
|
|
add_column :trackers, :description, :string, :after => :name
|
||
|
|
end
|
||
|
|
end
|