2b92e662fb
Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
25 lines
516 B
PHP
25 lines
516 B
PHP
<?php
|
|
|
|
namespace Application\Migrations;
|
|
|
|
use Doctrine\DBAL\Migrations\AbstractMigration,
|
|
Doctrine\DBAL\Schema\Schema;
|
|
|
|
/**
|
|
* Auto-generated Migration: Please modify to your need!
|
|
*/
|
|
class Version20120731113533 extends AbstractMigration
|
|
{
|
|
public function up(Schema $schema)
|
|
{
|
|
// this up() migration is autogenerated, please modify it to your needs
|
|
|
|
}
|
|
|
|
public function down(Schema $schema)
|
|
{
|
|
// this down() migration is autogenerated, please modify it to your needs
|
|
|
|
}
|
|
}
|