case class Evolution(revision: Int, sql_up: String = "", sql_down: String = "") extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Evolution
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Evolution(revision: Int, sql_up: String = "", sql_down: String = "")
- revision
revision number
- sql_up
the SQL statements for UP application
- sql_down
the SQL statements for DOWN application
An SQL evolution - database changes associated with a software version.
An evolution includes ‘up’ changes, to upgrade to the next version, as well as ‘down’ changes, to downgrade the database to the previous version.
revision number
the SQL statements for UP application
the SQL statements for DOWN application