How to use Evolutions in Play Framework 2.0?

强颜欢笑 提交于 2020-01-01 03:22:08

问题


For play 1.x, we can use play evolutions:apply, How can I do it in play-2.0-beta?


回答1:


Evolution:apply is run automatically upon application start up. What is missing in Play 2.0-rc1 is a way to generate the evolutions scripts, and to manually apply them from the SBT console.

But here is how to create them manually.

Say you have the following definition in application.conf

db.mydb.driver=org.h2.Driver
db.mydb.url=jdbc:h2:mem:play

Play2 will look for evolution in the following folder: application/db/evolutions/mydb/ In this folder, evolutions shall be stored as sql file, using the evolution step as the file name.

For instance:

application/db/evolutions/mydb/1.sql
application/db/evolutions/mydb/2.sql
application/db/evolutions/mydb/3.sql

Now the sql itself has the following structure:

# --- !Ups
create table company (
  id                        bigint not null,
  name                      varchar(255),
  constraint pk_company primary key (id));
# --- !Downs
drop table if exists company;

!Ups are used to upgrade the model to the next evolutions
!Downs are used to revert the !Ups

Like I said in the intro, evolutions will be magically applied upon application startup.



来源:https://stackoverflow.com/questions/8164157/how-to-use-evolutions-in-play-framework-2-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!