Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kohinos
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
9
Issues
9
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
cooperatic-mlc
kohinos
Commits
b1db7d92
Commit
b1db7d92
authored
May 21, 2019
by
Sgelberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete Version20190206155738.php
parent
7887c4bb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
49 deletions
+0
-49
Version20190206155738.php
src/Migrations/Version20190206155738.php
+0
-49
No files found.
src/Migrations/Version20190206155738.php
deleted
100644 → 0
View file @
7887c4bb
<?php
declare
(
strict_types
=
1
);
namespace
DoctrineMigrations
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\Migrations\AbstractMigration
;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final
class
Version20190206155738
extends
AbstractMigration
{
public
function
getDescription
()
:
string
{
return
''
;
}
public
function
up
(
Schema
$schema
)
:
void
{
// this up() migration is auto-generated, please modify it to your needs
$this
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE adherent ADD groupe_id INT DEFAULT NULL'
);
$this
->
addSql
(
'ALTER TABLE adherent ADD CONSTRAINT FK_90D3F0607A45358C FOREIGN KEY (groupe_id) REFERENCES groupe (id)'
);
$this
->
addSql
(
'CREATE INDEX IDX_90D3F0607A45358C ON adherent (groupe_id)'
);
$this
->
addSql
(
'ALTER TABLE prestataire DROP FOREIGN KEY FK_60A264803AA0FF34'
);
$this
->
addSql
(
'DROP INDEX IDX_60A264803AA0FF34 ON prestataire'
);
$this
->
addSql
(
'ALTER TABLE prestataire CHANGE prestataire_group_id groupe_id INT DEFAULT NULL'
);
$this
->
addSql
(
'ALTER TABLE prestataire ADD CONSTRAINT FK_60A264807A45358C FOREIGN KEY (groupe_id) REFERENCES groupe (id)'
);
$this
->
addSql
(
'CREATE INDEX IDX_60A264807A45358C ON prestataire (groupe_id)'
);
}
public
function
down
(
Schema
$schema
)
:
void
{
// this down() migration is auto-generated, please modify it to your needs
$this
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE adherent DROP FOREIGN KEY FK_90D3F0607A45358C'
);
$this
->
addSql
(
'DROP INDEX IDX_90D3F0607A45358C ON adherent'
);
$this
->
addSql
(
'ALTER TABLE adherent DROP groupe_id'
);
$this
->
addSql
(
'ALTER TABLE prestataire DROP FOREIGN KEY FK_60A264807A45358C'
);
$this
->
addSql
(
'DROP INDEX IDX_60A264807A45358C ON prestataire'
);
$this
->
addSql
(
'ALTER TABLE prestataire CHANGE groupe_id prestataire_group_id INT DEFAULT NULL'
);
$this
->
addSql
(
'ALTER TABLE prestataire ADD CONSTRAINT FK_60A264803AA0FF34 FOREIGN KEY (prestataire_group_id) REFERENCES groupe (id)'
);
$this
->
addSql
(
'CREATE INDEX IDX_60A264803AA0FF34 ON prestataire (prestataire_group_id)'
);
}
}
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