Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Tomáš Trávníček
doctrine-dbal
Commits
6b87c1fd
Commit
6b87c1fd
authored
Sep 12, 2008
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved schema management
parent
4f380c4e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
FirebirdSchemaManager.php
lib/Doctrine/DBAL/Schema/FirebirdSchemaManager.php
+1
-1
InformixSchemaManager.php
lib/Doctrine/DBAL/Schema/InformixSchemaManager.php
+1
-1
MsSqlSchemaManager.php
lib/Doctrine/DBAL/Schema/MsSqlSchemaManager.php
+1
-1
MySqlSchemaManger.php
lib/Doctrine/DBAL/Schema/MySqlSchemaManger.php
+1
-1
OracleSchemaManager.php
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+1
-1
PostgreSqlSchemaManager.php
lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
+1
-1
SchemaManager.php
lib/Doctrine/DBAL/Schema/SchemaManager.php
+1
-1
SqliteSchemaManager.php
lib/Doctrine/DBAL/Schema/SqliteSchemaManager.php
+1
-1
No files found.
lib/Doctrine/Schema/FirebirdSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/FirebirdSchemaManager.php
View file @
6b87c1fd
...
...
@@ -31,7 +31,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_FirebirdSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_FirebirdSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
public
function
__construct
(
Doctrine_Connection_Firebird
$conn
)
{
...
...
lib/Doctrine/Schema/InformixSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/InformixSchemaManager.php
View file @
6b87c1fd
...
...
@@ -31,7 +31,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_InformixSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_InformixSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
protected
$sql
=
array
(
'listTables'
=>
"SELECT tabname,tabtype FROM systables WHERE tabtype IN ('T','V') AND owner != 'informix'"
,
...
...
lib/Doctrine/Schema/MsSqlSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/MsSqlSchemaManager.php
View file @
6b87c1fd
...
...
@@ -30,7 +30,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_MsSqlSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_MsSqlSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
public
function
__construct
(
Doctrine_Connection_Mssql
$conn
)
{
...
...
lib/Doctrine/Schema/MySqlSchemaManger.php
→
lib/Doctrine/
DBAL/
Schema/MySqlSchemaManger.php
View file @
6b87c1fd
...
...
@@ -30,7 +30,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_MySqlSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_MySqlSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
public
function
__construct
(
Doctrine_Connection
$conn
)
{
...
...
lib/Doctrine/Schema/OracleSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/OracleSchemaManager.php
View file @
6b87c1fd
...
...
@@ -30,7 +30,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_OracleSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_OracleSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
public
function
__construct
(
Doctrine_Connection_Oracle
$conn
)
{
...
...
lib/Doctrine/Schema/PostgreSqlSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/PostgreSqlSchemaManager.php
View file @
6b87c1fd
...
...
@@ -30,7 +30,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_PostgreSqlSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_PostgreSqlSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
/**
* Enter description here...
...
...
lib/Doctrine/Schema/SchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/SchemaManager.php
View file @
6b87c1fd
...
...
@@ -32,7 +32,7 @@
* @since 2.0
* @todo Rename to AbstractSchemaManager
*/
abstract
class
Doctrine_
Schema_
SchemaManager
abstract
class
Doctrine_
DBAL_Schema_Abstract
SchemaManager
{
protected
$_conn
;
...
...
lib/Doctrine/Schema/SqliteSchemaManager.php
→
lib/Doctrine/
DBAL/
Schema/SqliteSchemaManager.php
View file @
6b87c1fd
...
...
@@ -30,7 +30,7 @@
* @version $Revision$
* @since 2.0
*/
class
Doctrine_
Schema_SqliteSchemaManager
extends
Doctrine_Schema_
SchemaManager
class
Doctrine_
DBAL_Schema_SqliteSchemaManager
extends
Doctrine_DBAL_Schema_Abstract
SchemaManager
{
public
function
__construct
(
Doctrine_Connection_Sqlite
$conn
)
{
...
...
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