TableSchema.php 545 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\db\mssql;
  8. /**
  9. * TableSchema represents the metadata of a database table.
  10. *
  11. * @author Qiang Xue <qiang.xue@gmail.com>
  12. * @since 2.0
  13. */
  14. class TableSchema extends \yii\db\TableSchema
  15. {
  16. /**
  17. * @var string name of the catalog (database) that this table belongs to.
  18. * Defaults to null, meaning no catalog (or the current database).
  19. */
  20. public $catalogName;
  21. }