mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-30 15:20:36 +00:00
26 lines
719 B
PHP
26 lines
719 B
PHP
<?php
|
|
/**
|
|
* COciTableSchema class file.
|
|
*
|
|
* @author Ricardo Grana <rickgrana@yahoo.com.br>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2009 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
/**
|
|
* COciTableSchema represents the metadata for a Ora table.
|
|
*
|
|
* @author Ricardo Grana <rickgrana@yahoo.com.br>
|
|
* @version $Id: COciTableSchema.php 939 2009-04-15 19:37:34Z qiang.xue@gmail.com $
|
|
* @package system.db.schema.oci
|
|
* @since 1.0.5
|
|
*/
|
|
class COciTableSchema extends CDbTableSchema
|
|
{
|
|
/**
|
|
* @var string name of the schema (database) that this table belongs to.
|
|
* Defaults to null, meaning no schema (or the current database).
|
|
*/
|
|
public $schemaName;
|
|
}
|