	<!-- Declaration of rc_clients table-->
	<db_table id="rc_clients">
		<table_name>rc_clients</table_name>
		<db_url_id>mysql</db_url_id>
		<column><field>id</field><type>DB_INT</type></column>
		<column><field>client_id</field><type>DB_STR</type></column>
		<column><field>wholesale_rate</field><type>DB_INT</type></column>
		<column><field>retail_rate</field><type>DB_INT</type></column>
	</db_table>
	<!-- Declaration of rc_vendors table-->
	<db_table id="rc_vendors">
		<table_name>rc_vendors</table_name>
		<db_url_id>mysql</db_url_id>
		<column><field>id</field><type>DB_INT</type></column>
		<column><field>vendor_id</field><type>DB_STR</type></column>
		<column><field>vendor_rate</field><type>DB_INT</type></column>
	</db_table>
	<!-- Declaration of rc_ratesheets table-->
	<db_table id="rc_ratesheets">
		<table_name>rc_ratesheets</table_name>
		<db_url_id>mysql</db_url_id>
		<column><field>id</field><type>DB_INT</type></column>
		<column><field>ratesheet_table</field><type>DB_STR</type></column>
		<column><field>currency</field><type>DB_STR</type></column>
	</db_table>
	<!-- Declaration of rc_demo_ratesheet table-->
	<db_table id="rc_demo_ratesheet">
		<table_name>rc_demo_ratesheet</table_name>
		<db_url_id>mysql</db_url_id>
		<column><field>id</field><type>DB_INT</type></column>
		<column><field>prefix</field><type>DB_STR</type></column>
		<column><field>destination</field><type>DB_STR</type></column>
		<column><field>price</field><type>DB_DOUBLE</type></column>
		<column><field>minimum</field><type>DB_INT</type></column>
		<column><field>increment</field><type>DB_INT</type></column>
	</db_table>
