CMssqlTableSchema.php 889 B

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