K
Kruzya
Guest
As said in title.
Column has a type
PHP:
What i receive:
PHP:
Command just generates a int column without
Continue reading...
Column has a type
\XF\Mvc\Entity\Entity::UINT
, and i expect generating schema like:PHP:
Code:
$this->createTable('table_name', function (\XF\Db\Schema\Create $table)
{
$table->addColumn('my_column', 'int')->unsigned();
});
What i receive:
PHP:
Code:
$this->createTable('table_name', function (\XF\Db\Schema\Create $table)
{
$table->addColumn('my_column', 'int');
});
Command just generates a int column without
unsigned
attribute.Continue reading...