mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +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:
|
||||
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
|
||||
|
@ -35,7 +35,6 @@ Chill\PersonBundle\Entity\Person:
|
||||
email:
|
||||
type: text
|
||||
proxyAccompanyingPeriodOpenState:
|
||||
column: proxyHistoryOpenState
|
||||
type: boolean
|
||||
name: proxy_open
|
||||
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