/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Action
NameSizeModeActions
Action.php6860644editdlrm
AddColumn.php15700644editdlrm
AddForeignKey.php22740644editdlrm
AddIndex.php16750644editdlrm
ChangeColumn.php22940644editdlrm
ChangeComment.php8630644editdlrm
ChangePrimaryKey.php8940644editdlrm
CreateTable.php2020644editdlrm
DropForeignKey.php17440644editdlrm
DropIndex.php17390644editdlrm
DropTable.php2000644editdlrm
RemoveColumn.php13490644editdlrm
RenameColumn.php18220644editdlrm
RenameTable.php8140644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Db/Action/DropIndex.php (1739B)
index = $index; } /** * Creates a new DropIndex object after assembling the passed * arguments. * * @param \Phinx\Db\Table\Table $table The table where the index is * @param string[] $columns the indexed columns * @return static */ public static function build(Table $table, array $columns = []) { $index = new Index(); $index->setColumns($columns); return new static($table, $index); } /** * Creates a new DropIndex when the name of the index to drop * is known. * * @param \Phinx\Db\Table\Table $table The table where the index is * @param string $name The name of the index * @return static */ public static function buildFromName(Table $table, string $name) { $index = new Index(); $index->setName($name); return new static($table, $index); } /** * Returns the index to be dropped * * @return \Phinx\Db\Table\Index */ public function getIndex(): Index { return $this->index; } }