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
5a380360
Commit
5a380360
authored
Jun 01, 2013
by
Gevik Babakhani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added table based sequence.
parent
cbde22af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
Schema.php
framework/yii/db/pgsql/Schema.php
+15
-1
No files found.
framework/yii/db/pgsql/Schema.php
View file @
5a380360
...
...
@@ -100,6 +100,14 @@ class Schema extends \yii\db\Schema {
);
/**
* Creates a query builder for the MySQL database.
* @return QueryBuilder query builder instance
*/
public
function
createQueryBuilder
()
{
return
new
QueryBuilder
(
$this
->
db
);
}
/**
* Resolves the table name and schema name (if any).
* @param TableSchema $table the table metadata object
* @param string $name the table name
...
...
@@ -146,7 +154,7 @@ class Schema extends \yii\db\Schema {
* @param TableSchema $table the table metadata
*/
protected
function
findConstraints
(
$table
)
{
try
{
$constraints
=
$this
->
db
->
createCommand
(
$sql
)
->
queryAll
();
}
catch
(
\Exception
$e
)
{
...
...
@@ -233,6 +241,12 @@ SQL;
foreach
(
$columns
as
$column
)
{
$column
=
$this
->
loadColumnSchema
(
$column
);
$table
->
columns
[
$column
->
name
]
=
$column
;
if
(
$column
->
isPrimaryKey
===
true
)
{
$table
->
primaryKey
[]
=
$column
->
name
;
if
(
$table
->
sequenceName
===
null
&&
preg_match
(
"/nextval\('\w+'(::regclass)?\)/"
,
$column
->
defaultValue
)
===
1
)
{
$table
->
sequenceName
=
preg_replace
(
array
(
'/nextval/'
,
'/::/'
,
'/regclass/'
,
'/\'\)/'
,
'/\(\'/'
),
''
,
$column
->
defaultValue
);
}
}
}
return
true
;
}
...
...
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