connection = DriverManager.getConnection(CONNECTION_STRING,
USERNAME, PASSWORD);
JdbcDataContext dc = new JdbcDataContext(connection);
final Schema schema = dc.getDefaultSchema();
dc.executeUpdate(new UpdateScript() {
@Override
public void run(UpdateCallback cb) {
Table table = cb.createTable(schema, "my_table")
.withColumn("id").ofType(ColumnType.INTEGER)
.ofNativeType("SERIAL").nullable(false)