1: <?php
2: /**
3: * CPgsqlTable 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: /**
12: * CPgsqlTable represents the metadata for a PostgreSQL table.
13: *
14: * @author Qiang Xue <qiang.xue@gmail.com>
15: * @package system.db.schema.pgsql
16: * @since 1.0
17: */
18: class CPgsqlTableSchema extends CDbTableSchema
19: {
20: /**
21: * @var string name of the schema that this table belongs to.
22: */
23: public $schemaName;
24: }
25: