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
372831d9
Commit
372831d9
authored
Oct 23, 2007
by
Jonathan.Wage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaks.
parent
34d4f128
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
13 deletions
+13
-13
BuildAll.php
lib/Doctrine/Task/BuildAll.php
+1
-1
GenerateMigrationsFromDb.php
lib/Doctrine/Task/GenerateMigrationsFromDb.php
+3
-3
GenerateMigrationsFromModels.php
lib/Doctrine/Task/GenerateMigrationsFromModels.php
+3
-3
GenerateYamlFromDb.php
lib/Doctrine/Task/GenerateYamlFromDb.php
+3
-3
GenerateYamlFromModels.php
lib/Doctrine/Task/GenerateYamlFromModels.php
+3
-3
No files found.
lib/Doctrine/Task/BuildAll.php
View file @
372831d9
...
...
@@ -43,7 +43,7 @@ class Doctrine_Task_BuildAll extends Doctrine_Task
{
parent
::
__construct
(
$dispatcher
);
$this
->
models
=
new
Doctrine_Task_GenerateModels
From
Yaml
(
$this
->
dispatcher
);
$this
->
models
=
new
Doctrine_Task_GenerateModelsYaml
(
$this
->
dispatcher
);
$this
->
createDb
=
new
Doctrine_Task_CreateDb
(
$this
->
dispatcher
);
$this
->
tables
=
new
Doctrine_Task_CreateTables
(
$this
->
dispatcher
);
...
...
lib/Doctrine/Task/GenerateMigrationsFromDb.php
View file @
372831d9
<?php
/*
* $Id: GenerateMigrations
From
Db.php 2761 2007-10-07 23:42:29Z zYne $
* $Id: GenerateMigrationsDb.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...
...
@@ -20,7 +20,7 @@
*/
/**
* Doctrine_Task_GenerateMigrations
From
Db
* Doctrine_Task_GenerateMigrationsDb
*
* @package Doctrine
* @subpackage Task
...
...
@@ -30,7 +30,7 @@
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Task_GenerateMigrations
From
Db
extends
Doctrine_Task
class
Doctrine_Task_GenerateMigrationsDb
extends
Doctrine_Task
{
public
$description
=
'Generate migration classes for an existing database'
,
$requiredArguments
=
array
(
'migrations_path'
=>
'Specify the complete path to your migration classes folder.'
),
...
...
lib/Doctrine/Task/GenerateMigrationsFromModels.php
View file @
372831d9
<?php
/*
* $Id: GenerateMigrations
From
Models.php 2761 2007-10-07 23:42:29Z zYne $
* $Id: GenerateMigrationsModels.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...
...
@@ -20,7 +20,7 @@
*/
/**
* Doctrine_Task_GenerateMigrations
From
Models
* Doctrine_Task_GenerateMigrationsModels
*
* @package Doctrine
* @subpackage Task
...
...
@@ -30,7 +30,7 @@
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Task_GenerateMigrations
From
Models
extends
Doctrine_Task
class
Doctrine_Task_GenerateMigrationsModels
extends
Doctrine_Task
{
public
$description
=
'Generate migration classes for an existing set of models'
,
$requiredArguments
=
array
(
'migrations_path'
=>
'Specify the path to your migration classes folder.'
,
...
...
lib/Doctrine/Task/GenerateYamlFromDb.php
View file @
372831d9
<?php
/*
* $Id: GenerateYaml
From
Db.php 2761 2007-10-07 23:42:29Z zYne $
* $Id: GenerateYamlDb.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...
...
@@ -20,7 +20,7 @@
*/
/**
* Doctrine_Task_GenerateYaml
From
Db
* Doctrine_Task_GenerateYamlDb
*
* @package Doctrine
* @subpackage Task
...
...
@@ -30,7 +30,7 @@
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Task_GenerateYaml
From
Db
extends
Doctrine_Task
class
Doctrine_Task_GenerateYamlDb
extends
Doctrine_Task
{
public
$description
=
'Generates a Yaml schema file from an existing database'
,
$requiredArguments
=
array
(
'yaml_schema_path'
=>
'Specify the path to your yaml schema files.'
),
...
...
lib/Doctrine/Task/GenerateYamlFromModels.php
View file @
372831d9
<?php
/*
* $Id: GenerateYaml
From
Models.php 2761 2007-10-07 23:42:29Z zYne $
* $Id: GenerateYamlModels.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...
...
@@ -20,7 +20,7 @@
*/
/**
* Doctrine_Task_Generate
Yaml
FromModels
* Doctrine_Task_GenerateFromModels
*
* @package Doctrine
* @subpackage Task
...
...
@@ -30,7 +30,7 @@
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Task_Generate
Yaml
FromModels
extends
Doctrine_Task
class
Doctrine_Task_GenerateFromModels
extends
Doctrine_Task
{
public
$description
=
'Generates a Yaml schema file from existing Doctrine_Record definitions'
,
$requiredArguments
=
array
(
'yaml_schema_path'
=>
'Specify the complete directory path to your yaml schema files.'
,
...
...
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