class CreateTableIngestionTable < ActiveRecord::Migration def self.up create_table :ingestion_rules do |t| t.string :bu_id t.string :entity_type t.string :status end end def self.down drop_table :ingestion_rules end end