mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Renaming history -> accompanying_period in db
This commit is contained in:
parent
e4b21bc611
commit
0f4e285bd7
@ -1,6 +1,6 @@
|
|||||||
Chill\PersonBundle\Entity\AccompanyingPeriod:
|
Chill\PersonBundle\Entity\AccompanyingPeriod:
|
||||||
|
table: accompanying_period
|
||||||
type: entity
|
type: entity
|
||||||
table: person_history_file
|
|
||||||
id:
|
id:
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
@ -20,9 +20,6 @@ Chill\PersonBundle\Entity\AccompanyingPeriod:
|
|||||||
targetEntity: Person
|
targetEntity: Person
|
||||||
inversedBy: accompanyingPeriods
|
inversedBy: accompanyingPeriods
|
||||||
cascade: [refresh]
|
cascade: [refresh]
|
||||||
joinColumn:
|
|
||||||
name: person_id
|
|
||||||
referencedColumnName: id
|
|
||||||
closingMotive:
|
closingMotive:
|
||||||
targetEntity: Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive
|
targetEntity: Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive
|
||||||
nullable: true
|
nullable: true
|
||||||
|
@ -35,7 +35,6 @@ Chill\PersonBundle\Entity\Person:
|
|||||||
email:
|
email:
|
||||||
type: text
|
type: text
|
||||||
proxyAccompanyingPeriodOpenState:
|
proxyAccompanyingPeriodOpenState:
|
||||||
column: proxyHistoryOpenState
|
|
||||||
type: boolean
|
type: boolean
|
||||||
name: proxy_open
|
name: proxy_open
|
||||||
cFData:
|
cFData:
|
||||||
|
30
Resources/migrations/Version20150212173934.php
Normal file
30
Resources/migrations/Version20150212173934.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Application\Migrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Migrations\AbstractMigration;
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
*/
|
||||||
|
class Version20150212173934 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function up(Schema $schema)
|
||||||
|
{
|
||||||
|
// this up() migration is auto-generated, please modify it to your needs
|
||||||
|
|
||||||
|
$this->addSql("ALTER TABLE person RENAME proxyHistoryOpenState TO proxyAccompanyingPeriodOpenState;");
|
||||||
|
$this->addSql("ALTER TABLE person_history_file RENAME TO accompanying_period;");
|
||||||
|
$this->addSql("ALTER SEQUENCE person_history_file_id_seq RENAME TO accompanying_period_id_seq;");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema)
|
||||||
|
{
|
||||||
|
// this down() migration is auto-generated, please modify it to your needs
|
||||||
|
$this->addSql("ALTER TABLE accompanying_period RENAME TO person_history_file;");
|
||||||
|
$this->addSql("ALTER TABLE person RENAME proxyAccompanyingPeriodOpenState TO proxyHistoryOpenState;");
|
||||||
|
$this->addSql("ALTER SEQUENCE accompanying_period_id_seq RENAME TO person_history_file_id_seq;");
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user