LazyRecord\Migration\BaseMigration::alterTable PHP Метод

alterTable() публичный Метод

public alterTable ( $arg )
    public function alterTable($arg)
    {
        if ($arg instanceof DeclareSchema) {
            $table = $arg->getTable();
        } else {
            $table = $arg;
        }
        return new AlterTableQuery($arg);
    }