123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /* For licensing terms, see /license.txt */
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- /**
- * Class Version111
- * Migrate file to updated to Chamilo 1.11
- *
- */
- class Version111 extends AbstractMigrationChamilo
- {
- /**
- * @param Schema $schema
- *
- * @throws \Doctrine\DBAL\Schema\SchemaException
- */
- public function up(Schema $schema)
- {
- //$this->addSql("");
- }
- /**
- * @param Schema $schema
- */
- public function postUp(Schema $schema)
- {
- }
- /**
- * @param Schema $schema
- */
- public function down(Schema $schema)
- {
- }
- }
|