a11yist/db/migrate/20241031183755_remove_path_from_elements.rb

6 lines
127 B
Ruby
Raw Normal View History

2024-10-31 23:13:18 +01:00
class RemovePathFromElements < ActiveRecord::Migration[7.2]
def change
remove_column :elements, :path, :string
end
end