2011-11-26 67 views
0

在我的生活中,無法讓Heroku爲我的Play創建一個框架數據庫!使用引導程序的應用程序。我有一個引導工作,一些YAML加載對象,但我得到: -錯誤嘗試引導玩! Heroku上的應用程序

2011-11-26T15:48:33+00:00 app[web.1]: 15:48:33,451 INFO ~ Starting /app 
2011-11-26T15:48:33+00:00 app[web.1]: 15:48:33,454 INFO ~ Module crud is available (/app/modules/crud) 
2011-11-26T15:48:33+00:00 app[web.1]: 15:48:33,454 INFO ~ Module secure is available (/app/modules/secure) 
2011-11-26T15:48:35+00:00 app[web.1]: 15:48:35,179 INFO ~ Connected to jdbc:postgresql://ec2-107-20-239-110.compute-1.amazonaws.com/qsaljordae 
2011-11-26T15:48:35+00:00 app[web.1]: 15:48:35,789 WARN ~ Defaults messsages file missing 
2011-11-26T15:48:35+00:00 app[web.1]: 15:48:35,804 INFO ~ Application 'Humbug' is now started ! 
2011-11-26T15:48:35+00:00 app[web.1]: 15:48:35,860 WARN ~ Precompiled template /conf/initial-data.yml not found, trying to load it dynamically... 
2011-11-26T15:48:35+00:00 app[web.1]: 15:48:35,989 DEBUG ~ select nextval ('hibernate_sequence') 
2011-11-26T15:48:36+00:00 app[web.1]: 15:48:36,019 WARN ~ SQL Error: 0, SQLState: 42P01 
2011-11-26T15:48:36+00:00 app[web.1]: 15:48:36,019 ERROR ~ ERROR: relation "hibernate_sequence" does not exist 
2011-11-26T15:48:36+00:00 app[web.1]: 15:48:36,036 ERROR ~ 
2011-11-26T15:48:36+00:00 app[web.1]: 
2011-11-26T15:48:36+00:00 app[web.1]: @68gdihi6a 
2011-11-26T15:48:36+00:00 app[web.1]: Error during job execution (Bootstrap) 
2011-11-26T15:48:36+00:00 app[web.1]: 
2011-11-26T15:48:36+00:00 app[web.1]: Execution exception (In /app/Bootstrap.java around line 12) 
2011-11-26T15:48:36+00:00 app[web.1]: RuntimeException occured : Cannot load fixture initial-data.yml: org.hibernate.exception.SQLGrammarException: could not get next sequence value 

什麼是與hibernate_sequence表中的問題?這不是我創建的表/對象。

這個引導過程在我的本地機器上可以正常工作。

回答

1

而答案是,設置JPA = DDL在配置儘管警告不要在生產中做到這一點....

# Specify the ddl generation pattern to use. Set to none to disable it 
# (default to update in DEV mode, and none in PROD mode): 
jpa.ddl=update 
相關問題