Add rows_to_skip config for transaction import

This commit is contained in:
kasra
2025-12-27 02:21:28 +03:30
parent 33fdd589e4
commit e8216984a7
5 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddRowsToSkipToImports < ActiveRecord::Migration[7.2]
def change
add_column :imports, :rows_to_skip, :integer, default: 0, null: false
end
end