class CommandsRouterInventories < ActiveRecord::Migration[6.0]
 	def self.up
	  	create_table 'commands_router_inventories', :id => false do |t|
	    	t.column :command_id, :integer
	    	t.column :router_inventory_id, :integer
	  	end
	end
end
