. Ben doktrin 2 göçlerle bir tablo değiştiren ile bazı sorunlar yaşıyorum kod ardından hep hata atar: Operation 'Doctrine\DBAL\Platforms\AbstractPlatform::getAlterTableSQL' is not supported by platform.
Alter table sqlite tarafından desteklenen bu garip.
public function up(Schema $schema)
{
$user = $schema->getTable('user');
$user->addColumn('resellerId', 'integer', array(
'length' => '10',
'notnull' => true,
'unsigned' => true,
));
}