class CreateConfigMappings < ActiveRecord::Migration[6.0]
  def change
    create_table :config_mappings do |t|
      t.references :configurable, :polymorphic => true
      t.references :resourceable, :polymorphic => true

      t.timestamps
    end
  end
end
