6 lines
127 B
Ruby
6 lines
127 B
Ruby
|
|
class RemovePathFromElements < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
remove_column :elements, :path, :string
|
||
|
|
end
|
||
|
|
end
|