Renaming history -> accompanying_period in db

This commit is contained in:
Marc Ducobu 2015-02-12 19:02:22 +01:00
parent e4b21bc611
commit 0f4e285bd7
3 changed files with 31 additions and 5 deletions

View File

@ -1,6 +1,6 @@
Chill\PersonBundle\Entity\AccompanyingPeriod:
table: accompanying_period
type: entity
table: person_history_file
id:
id:
type: integer
@ -20,9 +20,6 @@ Chill\PersonBundle\Entity\AccompanyingPeriod:
targetEntity: Person
inversedBy: accompanyingPeriods
cascade: [refresh]
joinColumn:
name: person_id
referencedColumnName: id
closingMotive:
targetEntity: Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive
nullable: true

View File

@ -35,7 +35,6 @@ Chill\PersonBundle\Entity\Person:
email:
type: text
proxyAccompanyingPeriodOpenState:
column: proxyHistoryOpenState
type: boolean
name: proxy_open
cFData:

View 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;");
}
}