A
Andy R
Guest
How do I tell the schemaManager to create an index along with a new column?
Example?
PHP:
Continue reading...
Example?
PHP:
Code:
$this->schemaManager()->createTable('some_table', function(Create $table)
{
$table->addColumn('some_id', 'int');
});
Continue reading...