CMysqlTableSchema.php 612 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * CMysqlTableSchema class file.
  4. *
  5. * @author Qiang Xue <qiang.xue@gmail.com>
  6. * @link http://www.yiiframework.com/
  7. * @copyright 2008-2013 Yii Software LLC
  8. * @license http://www.yiiframework.com/license/
  9. */
  10. /**
  11. * CMysqlTableSchema represents the metadata for a MySQL table.
  12. *
  13. * @author Qiang Xue <qiang.xue@gmail.com>
  14. * @package system.db.schema.mysql
  15. * @since 1.0
  16. */
  17. class CMysqlTableSchema extends CDbTableSchema
  18. {
  19. /**
  20. * @var string name of the schema (database) that this table belongs to.
  21. * Defaults to null, meaning no schema (or the current database).
  22. */
  23. public $schemaName;
  24. }