Version111.php 698 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. namespace Application\Migrations\Schema\V111;
  4. use Application\Migrations\AbstractMigrationChamilo;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7. * Class Version111
  8. * Migrate file to updated to Chamilo 1.11
  9. *
  10. */
  11. class Version111 extends AbstractMigrationChamilo
  12. {
  13. /**
  14. * @param Schema $schema
  15. *
  16. * @throws \Doctrine\DBAL\Schema\SchemaException
  17. */
  18. public function up(Schema $schema)
  19. {
  20. //$this->addSql("");
  21. }
  22. /**
  23. * @param Schema $schema
  24. */
  25. public function postUp(Schema $schema)
  26. {
  27. }
  28. /**
  29. * @param Schema $schema
  30. */
  31. public function down(Schema $schema)
  32. {
  33. }
  34. }