blob: ed18b59bae7aee6785dd16e4baa1c02fd51da08d (
plain) (
blame)
1
2
3
4
5
|
class ChangeFeatureSlotOnPdfResource < ActiveRecord::Migration[8.0]
def change_table(table_name, **options)
change_column table_name, :feature_slot, Integer, null: false
end
end
|