Skip to content

Commit

Permalink
Merge pull request #224 from khanalpride/bugfix/migration-stubs
Browse files Browse the repository at this point in the history
fix migrations stubs location
  • Loading branch information
freekmurze authored Jun 10, 2021
2 parents dbf8495 + b7f422f commit 311d59d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected function setUpDatabase()
});

Schema::dropIfExists('stored_events');
include_once __DIR__.'/../stubs/create_stored_events_table.php.stub';
include_once __DIR__.'/../database/migrations/create_stored_events_table.php.stub';
(new CreateStoredEventsTable())->up();

Schema::dropIfExists('snapshots');
include_once __DIR__.'/../stubs/create_snapshots_table.php.stub';
include_once __DIR__.'/../database/migrations/create_snapshots_table.php.stub';
(new CreateSnapshotsTable())->up();

Schema::dropIfExists('other_stored_events');
Expand Down

0 comments on commit 311d59d

Please sign in to comment.