diff options
Diffstat (limited to 'db/migrate/20241113163104_change_feature_slot_on_pdf_resource.rb')
-rw-r--r-- | db/migrate/20241113163104_change_feature_slot_on_pdf_resource.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20241113163104_change_feature_slot_on_pdf_resource.rb b/db/migrate/20241113163104_change_feature_slot_on_pdf_resource.rb new file mode 100644 index 0000000..ed18b59 --- /dev/null +++ b/db/migrate/20241113163104_change_feature_slot_on_pdf_resource.rb @@ -0,0 +1,5 @@ +class ChangeFeatureSlotOnPdfResource < ActiveRecord::Migration[8.0] + def change_table(table_name, **options) + change_column table_name, :feature_slot, Integer, null: false + end +end |