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

11 lines
224 B
Ruby

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