<?xml version="1.0"?>
<framework>
	<!-- Declare all db connections
		Each db connection MUST have:
		- an "id" to be identified by a tabe
		- a URL pointing to the actual database
	-->
	<db_url id="mysql">mysql://opensips:opensipsrw@localhost/opensips</db_url>
	<!-- Declare all tables
		Each table MUST have:
		 - an 'id' to be identified by a command
		 - a 'table_name' pointing to the actual table name in the database
		 - a 'db_url_id' to identify the db connection
		 - multiple 'column' nodes with 'field', 'type' and 'validation':
			/* type */
		DB_INT,      /**< represents an 32 bit integer number      */
		DB_BIGINT,   /**< represents an 64 bit integer number      */
		DB_DOUBLE,   /**< represents a floating point number       */
		DB_STRING,   /**< represents a zero terminated const char* */
		DB_STR,      /**< represents a string of 'str' type        */
		DB_DATETIME, /**< represents date and time                 */
		DB_BLOB,     /**< represents a large binary object         */
		DB_BITMAP    /**< an one-dimensional array of 32 flags     */
			/* validation */
		P_HOST_PORT  /**< represents [proto:]host[:port]       */
		P_IPV4_PORT  /**< represents [proto:]IPv4[:port]       */
		IPV4         /**< represents an IPv4                   */
		URI          /**< represents a SIP URI                 */
		URI_IPV4HOST /**< represents a SIP URI w/ IPv4 as host */
	-->

