for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @filesource CreateTable.php
* @created 03.06.2017
* @package chillerlan\Database\Query\Dialects\SQLite
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\Database\Query\Dialects\SQLite;
use chillerlan\Database\Query\CreateTableAbstract;
* Class CreateTable
class CreateTable extends CreateTableAbstract{
protected function fieldspec(
string $name,
string $type,
$length = null,
string $attribute = null,
string $collation = null,
bool $isNull = false,
string $defaultType = null,
$defaultValue = null,
string $extra = null
){
// TODO: Implement fieldspec() method.
}