Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
8976b7cb
Commit
8976b7cb
authored
Sep 05, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved MSSQL specific property to mssql TableSchema
parent
d4995ddc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
7 deletions
+24
-7
TableSchema.php
framework/yii/db/TableSchema.php
+0
-6
Schema.php
framework/yii/db/mssql/Schema.php
+1
-1
TableSchema.php
framework/yii/db/mssql/TableSchema.php
+23
-0
No files found.
framework/yii/db/TableSchema.php
View file @
8976b7cb
...
...
@@ -21,12 +21,6 @@ use yii\base\InvalidParamException;
class
TableSchema
extends
Object
{
/**
* @var string name of the catalog (database) that this table belongs to.
* Defaults to null, meaning no catalog (or the current database).
* This property is only meaningful for MSSQL.
*/
public
$catalogName
;
/**
* @var string name of the schema that this table belongs to.
*/
public
$schemaName
;
...
...
framework/yii/db/mssql/Schema.php
View file @
8976b7cb
...
...
@@ -7,7 +7,7 @@
namespace
yii\db\mssql
;
use
yii\db\TableSchema
;
use
yii\db\
mssql\
TableSchema
;
use
yii\db\ColumnSchema
;
/**
...
...
framework/yii/db/mssql/TableSchema.php
0 → 100644
View file @
8976b7cb
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright © 2008-2011 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\db\mssql
;
/**
* TableSchema represents the metadata of a database table.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
TableSchema
extends
\yii\db\TableSchema
{
/**
* @var string name of the catalog (database) that this table belongs to.
* Defaults to null, meaning no catalog (or the current database).
*/
public
$catalogName
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment