mixed pq\Gateway\Table::create([array $data = NULL[, string $returning = "*"]])Create a row in the table.
array $data# = NULLstring $returning# = "*"
<?php
use pq\Gateway\Table;
$accounts = new Table("account");
$mike = $accounts->create(["name" => "mike"])->current();
?>