tabletop-companion/db/migrate/20240617151532_rename_order...

8 lines
175 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class RenameOrderColumn < ActiveRecord::Migration[7.1]
def change
rename_column :character_sheet_features, :order, :order_index
end
end