CPgsqlTableSchema.php 527 B

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