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
monnaies-locales
kohinos
Commits
51f2565f
Commit
51f2565f
authored
Feb 15, 2020
by
Julien Jorry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix migrations
parent
0c3045a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
34 deletions
+34
-34
Version20200212164434.php
src/Migrations/Version20200212164434.php
+4
-4
Version20200212172915.php
src/Migrations/Version20200212172915.php
+27
-27
Version20200213232207.php
src/Migrations/Version20200213232207.php
+3
-3
No files found.
src/Migrations/Version20200212164434.php
View file @
51f2565f
...
@@ -22,8 +22,8 @@ final class Version20200212164434 extends AbstractMigration
...
@@ -22,8 +22,8 @@ final class Version20200212164434 extends AbstractMigration
// this up() migration is auto-generated, please modify it to your needs
// 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
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE adherent CHANGE ecompte ecompte NUMERIC(12, 2) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
adherent CHANGE ecompte ecompte NUMERIC(12, 2) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE prestataire ADD ecompte NUMERIC(12, 2) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
prestataire ADD ecompte NUMERIC(12, 2) NOT NULL'
);
}
}
public
function
down
(
Schema
$schema
)
:
void
public
function
down
(
Schema
$schema
)
:
void
...
@@ -31,7 +31,7 @@ final class Version20200212164434 extends AbstractMigration
...
@@ -31,7 +31,7 @@ final class Version20200212164434 extends AbstractMigration
// this down() migration is auto-generated, please modify it to your needs
// 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
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE adherent CHANGE ecompte ecompte NUMERIC(7, 2) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
adherent CHANGE ecompte ecompte NUMERIC(7, 2) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE prestataire DROP ecompte'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
prestataire DROP ecompte'
);
}
}
}
}
src/Migrations/Version20200212172915.php
View file @
51f2565f
<?php
<?php
declare
(
strict_types
=
1
);
declare
(
strict_types
=
1
);
namespace
DoctrineMigrations
;
namespace
DoctrineMigrations
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\Migrations\AbstractMigration
;
use
Doctrine\Migrations\AbstractMigration
;
/**
/**
* Auto-generated Migration: Please modify to your needs!
* Auto-generated Migration: Please modify to your needs!
*/
*/
final
class
Version20200212172915
extends
AbstractMigration
final
class
Version20200212172915
extends
AbstractMigration
{
public
function
getDescription
()
:
string
{
{
return
''
;
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 '
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'siege ADD compte_nantie NUMERIC(12, 2) NOT NULL'
);
}
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 '
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'siege DROP compte_nantie'
);
}
}
}
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 siege ADD compte_nantie NUMERIC(12, 2) NOT NULL'
);
}
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 siege DROP compte_nantie'
);
}
}
src/Migrations/Version20200213232207.php
View file @
51f2565f
...
@@ -22,8 +22,8 @@ final class Version20200213232207 extends AbstractMigration
...
@@ -22,8 +22,8 @@ final class Version20200213232207 extends AbstractMigration
// this up() migration is auto-generated, please modify it to your needs
// 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
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE user ADD alertemailflux TINYINT(1) NOT NULL'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
user ADD alertemailflux TINYINT(1) NOT NULL'
);
$this
->
addSql
(
'UPDATE user SET alertemailflux = true'
);
$this
->
addSql
(
'UPDATE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
user SET alertemailflux = true'
);
}
}
public
function
down
(
Schema
$schema
)
:
void
public
function
down
(
Schema
$schema
)
:
void
...
@@ -31,6 +31,6 @@ final class Version20200213232207 extends AbstractMigration
...
@@ -31,6 +31,6 @@ final class Version20200213232207 extends AbstractMigration
// this down() migration is auto-generated, please modify it to your needs
// 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
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE user DROP alertemailflux'
);
$this
->
addSql
(
'ALTER TABLE
'
.
$_ENV
[
'DATABASE_PREFIX'
]
.
'
user DROP alertemailflux'
);
}
}
}
}
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