LazyRecord\Migration\BaseMigration::alterTable PHP Method

alterTable() public method

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