10 lines
194 B
Ruby
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
|