Package play.db.evolutions
Class EvolutionsReader
- Object
-
- play.db.evolutions.EvolutionsReader
-
- All Implemented Interfaces:
play.api.db.evolutions.EvolutionsReader
- Direct Known Subclasses:
SimpleEvolutionsReader
public abstract class EvolutionsReader extends Object implements play.api.db.evolutions.EvolutionsReader
Reads evolutions.
-
-
Constructor Summary
Constructors Constructor Description EvolutionsReader()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description scala.collection.Seq<play.api.db.evolutions.Evolution>
evolutions(String db)
abstract Collection<Evolution>
getEvolutions(String db)
Get the evolutions for the given database name.
-
-
-
Method Detail
-
evolutions
public final scala.collection.Seq<play.api.db.evolutions.Evolution> evolutions(String db)
- Specified by:
evolutions
in interfaceplay.api.db.evolutions.EvolutionsReader
-
getEvolutions
public abstract Collection<Evolution> getEvolutions(String db)
Get the evolutions for the given database name.- Parameters:
db
- The name of the database.- Returns:
- The collection of evolutions.
-
-