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
@@ -1,5 +1,6 @@
package com.avaje.tests.rawsql;
import com.avaje.tests.idkeys.db.AuditLog;
import org.junit.Test;
import com.avaje.ebean.BaseTestCase;
@@ -11,7 +12,7 @@ public class TestInsertSqlLogging extends BaseTestCase {
@Test
public void test() {
// Ebean.getServer(null);
Ebean.delete(AuditLog.class, 10000);
String sql = "insert into audit_log (id, description, modified_description) values (?,?,?)";
SqlUpdate sqlUpdate = Ebean.createSqlUpdate(sql);