dawarich/db/migrate/20240324161800_add_processed_to_imports.rb

6 lines
140 B
Ruby
Raw Normal View History

class AddProcessedToImports < ActiveRecord::Migration[7.1]
def change
add_column :imports, :processed, :integer, default: 0
end
end