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: /**
13: * CMssqlTableSchema represents the metadata for a MSSQL table.
14: *
15: * @author Qiang Xue <qiang.xue@gmail.com>
16: * @author Christophe Boulain <Christophe.Boulain@gmail.com>
17: * @package system.db.schema.mssql
18: */
19: class CMssqlTableSchema extends CDbTableSchema
20: {
21: /**
22: * @var string name of the catalog (database) that this table belongs to.
23: * Defaults to null, meaning no schema (or the current database).
24: */
25: public $catalogName;
26: /**
27: * @var string name of the schema that this table belongs to.
28: * Defaults to null, meaning no schema (or the current database owner).
29: */
30: public $schemaName;
31: }
32: