Version20150709083710.php 620 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. namespace Application\Migrations\Schema\V110;
  4. use Application\Migrations\AbstractMigrationChamilo;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7. * Agenda
  8. */
  9. class Version20150709083710 extends AbstractMigrationChamilo
  10. {
  11. /**
  12. * @param Schema $schema
  13. */
  14. public function up(Schema $schema)
  15. {
  16. $this->addSql('ALTER TABLE c_calendar_event ADD color VARCHAR(100) DEFAULT NULL');
  17. }
  18. /**
  19. * @param Schema $schema
  20. */
  21. public function down(Schema $schema)
  22. {
  23. $this->addSql('ALTER TABLE c_calendar_event DROP color');
  24. }
  25. }