dawarich/db/migrate/20250823125940_remove_default_from_imports_source.rb
2025-08-23 16:07:15 +02:00

5 lines
153 B
Ruby

class RemoveDefaultFromImportsSource < ActiveRecord::Migration[8.0]
def change
change_column_default :imports, :source, from: 0, to: nil
end
end