The SQL statements to run
[use case] Append a ReversibleMigration to form either a
ReversibleMigrationSeq if the left side of &
is also a ReversibleMigration;
or else a plain MigrationSeq
Append a ReversibleMigration to form either a
ReversibleMigrationSeq if the left side of &
is also a ReversibleMigration;
or else a plain MigrationSeq
the ReversibleMigration to append
val combined = mig1 & mig2 & mig3
[use case] Append another Migration to form a MigrationSeq
Append another Migration to form a MigrationSeq
the Migration to append
val combined = mig1 & mig2 & mig3
Runs all the SQL statements in a single transaction
Runs all the SQL statements in a single transaction
A Migration defined in terms of SQL commands. This trait implements
apply
and instead defines an abstract sql method.