phpmyadmin/libraries/plugins/schema/RelationStats.class.php
Bimal Yashodha dc42693489 Schema export plugins
Signed-off-by: Bimal Yashodha <kb.yashodha@gmail.com>
2014-08-09 21:22:30 +05:30

26 lines
512 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Contains abstract class to hold relation preferences/statistics
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Relations preferences/statistics
*
* This class fetches the table master and foreign fields positions
* and helps in generating the Table references and then connects
* master table's master field to foreign table's foreign key.
*
* @package PhpMyAdmin
* @abstract
*/
abstract class RealtionStats
{
}
?>