class CreateGatewayConfigs < ActiveRecord::Migration[6.0]
  def self.up
    create_table :gateway_configs do |t|
      t.integer :organisation_id
      t.string :gateway_type
      t.string :gateway
      t.string :config_hash

      t.timestamps
    end
  end
  def self.down
    drop_table :gateway_configs
  end
end
