1: <?php
2: /**
3: * CCubridTableSchema class file.
4: *
5: * @author Esen Sagynov <kadismal@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: /**
12: * CCubridTableSchema represents the metadata for a CUBRID database table.
13: *
14: * @author Esen Sagynov <kadismal@gmail.com>
15: * @package system.db.schema.cubrid
16: * @since 1.1.16
17: */
18: class CCubridTableSchema extends CDbTableSchema
19: {
20: /**
21: * @var string name of the schema (database) that this table belongs to.
22: * Defaults to null, meaning no schema (or the current database).
23: */
24: public $schemaName;
25: }
26: