This column wasn't used in any released Consul version since it was only used during development. For the same reason, the task to migrate the information in the `link` column to the `links` table isn't needed either.
6 lines
144 B
Ruby
6 lines
144 B
Ruby
class RemoveLinkFromDashboardActions < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_column :dashboard_actions, :link, :string
|
|
end
|
|
end
|