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