Version20150519153200.php 652 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. * Username changes
  8. */
  9. class Version20150519153200 extends AbstractMigrationChamilo
  10. {
  11. /**
  12. * @param Schema $schema
  13. */
  14. public function up(Schema $schema)
  15. {
  16. $this->addSql('ALTER TABLE session_rel_user ADD COLUMN registered_at DATETIME NOT NULL');
  17. }
  18. /**
  19. * @param Schema $schema
  20. */
  21. public function down(Schema $schema)
  22. {
  23. $this->addSql('ALTER TABLE session_rel_user DROP COLUMN registered_at');
  24. }
  25. }