class CreateTableIntegrationTypes < ActiveRecord::Migration[6.0]
  def change
    create_table :integration_types do |t|
      t.string :api_key
      t.integer :organisation_id
      t.string :org_id
      t.string :vendor_name
      t.text :details

      t.timestamps
    end
  end
end
