diff options
-rw-r--r-- | app/DoctrineMigrations/Version20160410190541.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/DoctrineMigrations/Version20160410190541.php b/app/DoctrineMigrations/Version20160410190541.php index 80bcd12a..6294d842 100644 --- a/app/DoctrineMigrations/Version20160410190541.php +++ b/app/DoctrineMigrations/Version20160410190541.php | |||
@@ -34,7 +34,7 @@ class Version20160410190541 extends AbstractMigration implements ContainerAwareI | |||
34 | { | 34 | { |
35 | $entryTable = $schema->getTable($this->getTable('entry')); | 35 | $entryTable = $schema->getTable($this->getTable('entry')); |
36 | 36 | ||
37 | $this->skipIf($entryTable->hasColumn('uid'), 'It seems that you already played this migration.'); | 37 | $this->skipIf($entryTable->hasColumn('uid') || $entryTable->hasColumn('uuid'), 'It seems that you already played this migration.'); |
38 | 38 | ||
39 | $entryTable->addColumn('uid', 'string', [ | 39 | $entryTable->addColumn('uid', 'string', [ |
40 | 'notnull' => false, | 40 | 'notnull' => false, |