Skip to content

Commit

Permalink
Fix issue with MigrateWithDataModification when running locally again…
Browse files Browse the repository at this point in the history
…st sqlite.
  • Loading branch information
jwage committed May 5, 2018
1 parent 5d44aad commit bb942df
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -9,7 +9,9 @@ class MigrateWithDataModification extends AbstractMigration
{
public function up(Schema $schema)
{
$this->addSql('INSERT INTO test_data_migration (test) VALUES (1), (2), (3)');
$this->addSql('INSERT INTO test_data_migration (test) VALUES (1)');
$this->addSql('INSERT INTO test_data_migration (test) VALUES (2)');
$this->addSql('INSERT INTO test_data_migration (test) VALUES (3)');
}

public function down(Schema $schema)
Expand Down

0 comments on commit bb942df

Please sign in to comment.