COciTableSchema.php 606 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * COciTableSchema class file.
  4. *
  5. * @author Ricardo Grana <rickgrana@yahoo.com.br>
  6. * @link http://www.yiiframework.com/
  7. * @copyright 2008-2013 Yii Software LLC
  8. * @license http://www.yiiframework.com/license/
  9. */
  10. /**
  11. * COciTableSchema represents the metadata for an Oracle table.
  12. *
  13. * @author Ricardo Grana <rickgrana@yahoo.com.br>
  14. * @package system.db.schema.oci
  15. */
  16. class COciTableSchema extends CDbTableSchema
  17. {
  18. /**
  19. * @var string name of the schema (database) that this table belongs to.
  20. * Defaults to null, meaning no schema (or the current database).
  21. */
  22. public $schemaName;
  23. }