31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Application\Migrations;
|
||
|
|
||
|
use Doctrine\DBAL\Migrations\AbstractMigration,
|
||
|
Doctrine\DBAL\Schema\Schema;
|
||
|
|
||
|
/**
|
||
|
* Auto-generated Migration: Please modify to your need!
|
||
|
*/
|
||
|
class Version20120915132603 extends AbstractMigration
|
||
|
{
|
||
|
public function up(Schema $schema)
|
||
|
{
|
||
|
// this up() migration is autogenerated, please modify it to your needs
|
||
|
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
|
||
|
|
||
|
$this->addSql("CREATE TABLE comments (id INT AUTO_INCREMENT NOT NULL, post_id INT NOT NULL, user_id INT DEFAULT NULL, createdAt DATETIME NOT NULL, subject VARCHAR(150) DEFAULT NULL, hidden TINYINT(1) NOT NULL, content LONGTEXT NOT NULL, INDEX IDX_5F9E962A4B89032C (post_id), INDEX IDX_5F9E962AA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB");
|
||
|
$this->addSql("ALTER TABLE comments ADD CONSTRAINT FK_5F9E962A4B89032C FOREIGN KEY (post_id) REFERENCES blog_posts (id)");
|
||
|
$this->addSql("ALTER TABLE comments ADD CONSTRAINT FK_5F9E962AA76ED395 FOREIGN KEY (user_id) REFERENCES users (id)");
|
||
|
}
|
||
|
|
||
|
public function down(Schema $schema)
|
||
|
{
|
||
|
// this down() migration is autogenerated, please modify it to your needs
|
||
|
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
|
||
|
|
||
|
$this->addSql("DROP TABLE comments");
|
||
|
}
|
||
|
}
|