Update for pg - Internal changes for DB Migration / DDL generation #369

This commit is contained in:
Robin Bygrave
2015-08-05 20:59:09 +12:00
parent 22407506ff
commit 689d201b04
92 changed files with 2976 additions and 661 deletions
@@ -13,7 +13,12 @@ public class TestSelfRefExample extends BaseTestCase {
@Test
public void test() {
if (Ebean.find(SelfRefExample.class).findRowCount() > 0) {
// skip test when running multiple times (non memory only db testing)
return;
}
SelfRefExample e1 = new SelfRefExample("test1", null);
SelfRefExample e2 = new SelfRefExample("test1", e1);
SelfRefExample e3 = new SelfRefExample("test2", e2);