summaryrefslogtreecommitdiff
path: root/framework/db/schema/mssql/CMssqlTableSchema.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/db/schema/mssql/CMssqlTableSchema.php')
-rw-r--r--framework/db/schema/mssql/CMssqlTableSchema.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/framework/db/schema/mssql/CMssqlTableSchema.php b/framework/db/schema/mssql/CMssqlTableSchema.php
new file mode 100644
index 0000000..6f0d137
--- /dev/null
+++ b/framework/db/schema/mssql/CMssqlTableSchema.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * CMssqlTableSchema class file.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @author Christophe Boulain <Christophe.Boulain@gmail.com>
+ * @link http://www.yiiframework.com/
+ * @copyright Copyright &copy; 2008-2011 Yii Software LLC
+ * @license http://www.yiiframework.com/license/
+ */
+
+/**
+ * CMssqlTableSchema represents the metadata for a MSSQL table.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @author Christophe Boulain <Christophe.Boulain@gmail.com>
+ * @version $Id: CMssqlTableSchema.php 3515 2011-12-28 12:29:24Z mdomba $
+ * @package system.db.schema.mssql
+ */
+class CMssqlTableSchema extends CDbTableSchema
+{
+ /**
+ * @var string name of the catalog (database) that this table belongs to.
+ * Defaults to null, meaning no schema (or the current database).
+ */
+ public $catalogName;
+ /**
+ * @var string name of the schema that this table belongs to.
+ * Defaults to null, meaning no schema (or the current database owner).
+ */
+ public $schemaName;
+}