a11yist/db/migrate/20241101013336_change_position_on_elements.rb

6 lines
162 B
Ruby
Raw Normal View History

2024-11-01 03:26:46 +01:00
class ChangePositionOnElements < ActiveRecord::Migration[7.2]
def change
change_column(:elements, :position, :integer, default: nil, null: false)
end
end