Files
redux-scraper/db/migrate/20230224065330_add_scan_error_to_users.rb
2025-01-01 03:29:53 +00:00

10 lines
194 B
Ruby

# typed: true
class AddScanErrorToUsers < ActiveRecord::Migration[7.0]
def change
change_table :domain_fa_users do |t|
t.integer :state
t.jsonb :state_detail
end
end
end