Code Duplication    Length = 11-11 lines in 2 locations

src/Phinx/Db/Adapter/SQLiteAdapter.php 1 location

@@ 375-385 (lines=11) @@
372
    /**
373
     * {@inheritdoc}
374
     */
375
    protected function getAddColumnInstructions(Table $table, Column $column)
376
    {
377
        $alter = sprintf(
378
            'ALTER TABLE %s ADD COLUMN %s %s',
379
            $this->quoteTableName($table->getName()),
380
            $this->quoteColumnName($column->getName()),
381
            $this->getColumnSqlDefinition($column)
382
        );
383
384
        return new AlterInstructions([], [$alter]);
385
    }
386
387
    /**
388
     * Returns the original CREATE statement for the give table

src/Phinx/Db/Adapter/SqlServerAdapter.php 1 location

@@ 487-497 (lines=11) @@
484
    /**
485
     * {@inheritdoc}
486
     */
487
    protected function getAddColumnInstructions(Table $table, Column $column)
488
    {
489
        $alter = sprintf(
490
            'ALTER TABLE %s ADD %s %s',
491
            $table->getName(),
492
            $this->quoteColumnName($column->getName()),
493
            $this->getColumnSqlDefinition($column)
494
        );
495
496
        return new AlterInstructions([], [$alter]);
497
    }
498
499
    /**
500
     * {@inheritdoc}