-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Gabriele Favaretto <[email protected]> Co-authored-by: Renato Cavalcanti <[email protected]> Co-authored-by: Arsene Tochemey GANDOTE <[email protected]>
- Loading branch information
1 parent
8cb9192
commit c56753d
Showing
49 changed files
with
1,631 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
9 changes: 0 additions & 9 deletions
9
migration/src/main/resources/db/migration/postgres/V002__test-2.sql
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
migration/src/main/scala/akka/persistence/jdbc/migration/Main.scala
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
migration/src/main/scala/db/migration/postgres/V003__UpdateUsers.scala
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
78 changes: 0 additions & 78 deletions
78
migration/src/test/scala/akka/persistence/jdbc/migration/PostgresSpec.scala
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
migrator/src/it/scala/akka/persistence/jdbc/migrator/integration/JournalMigratorTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package akka.persistence.jdbc.migrator.integration | ||
|
||
import akka.persistence.jdbc.migrator.MigratorSpec._ | ||
import akka.persistence.jdbc.migrator.JournalMigratorTest | ||
|
||
class PostgresJournalMigratorTest extends JournalMigratorTest("postgres-application.conf") with PostgresCleaner | ||
|
||
class MySQLJournalMigratorTest extends JournalMigratorTest("mysql-application.conf") with MysqlCleaner | ||
|
||
class OracleJournalMigratorTest extends JournalMigratorTest("oracle-application.conf") with OracleCleaner | ||
|
||
class SqlServerJournalMigratorTest extends JournalMigratorTest("sqlserver-application.conf") with SqlServerCleaner |
12 changes: 12 additions & 0 deletions
12
migrator/src/it/scala/akka/persistence/jdbc/migrator/integration/SnapshotMigratorTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package akka.persistence.jdbc.migrator.integration | ||
|
||
import akka.persistence.jdbc.migrator.MigratorSpec._ | ||
import akka.persistence.jdbc.migrator.SnapshotMigratorTest | ||
|
||
class PostgresSnapshotMigratorTest extends SnapshotMigratorTest("postgres-application.conf") with PostgresCleaner | ||
|
||
class MySQLSnapshotMigratorTest extends SnapshotMigratorTest("mysql-application.conf") with MysqlCleaner | ||
|
||
class OracleSnapshotMigratorTest extends SnapshotMigratorTest("oracle-application.conf") with OracleCleaner | ||
|
||
class SqlServerSnapshotMigratorTest extends SnapshotMigratorTest("sqlserver-application.conf") with SqlServerCleaner |
Oops, something went wrong.