class CreateSimRatePlans < ActiveRecord::Migration[6.0]
  def change
    create_table :sim_rate_plans do |t|
      t.string :plan_description
      t.string :amount
      t.string :plan_id
      t.string :plan_type

      t.timestamps
    end
  end
end
