~horux-dev/horux-webcli/thfo

« back to all changes in this revision

Viewing changes to yii/framework/db/schema/mysql/CMysqlTableSchema.php

  • Committer: Thierry Forchelet
  • Date: 2011-02-25 13:30:15 UTC
  • Revision ID: thierry.forchelet@letux.ch-20110225133015-zxyj9w7sqv8ly971
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * CMysqlTableSchema class file.
 
4
 *
 
5
 * @author Qiang Xue <qiang.xue@gmail.com>
 
6
 * @link http://www.yiiframework.com/
 
7
 * @copyright Copyright &copy; 2008-2011 Yii Software LLC
 
8
 * @license http://www.yiiframework.com/license/
 
9
 */
 
10
 
 
11
/**
 
12
 * CMysqlTableSchema represents the metadata for a MySQL table.
 
13
 *
 
14
 * @author Qiang Xue <qiang.xue@gmail.com>
 
15
 * @version $Id: CMysqlTableSchema.php 2799 2011-01-01 19:31:13Z qiang.xue $
 
16
 * @package system.db.schema.mysql
 
17
 * @since 1.0
 
18
 */
 
19
class CMysqlTableSchema extends CDbTableSchema
 
20
{
 
21
        /**
 
22
         * @var string name of the schema (database) that this table belongs to.
 
23
         * Defaults to null, meaning no schema (or the current database).
 
24
         */
 
25
        public $schemaName;
 
26
}