How do I tell the schemaManager to create an index along with a new column?
Example?
PHP:
Читать далее...
Example?
PHP:
Код:
$this->schemaManager()->createTable('some_table', function(Create $table)
{
$table->addColumn('some_id', 'int');
});
Читать далее...