PHP Class Yajra\Oci8\Schema\OracleBuilder

Inheritance: extends Illuminate\Database\Schema\Builder
Afficher le fichier Open project: yajra/laravel-oci8

Méthodes publiques

Свойство Type Description
$comment Comment
$helper OracleAutoIncrementHelper

Méthodes publiques

Méthode Description
__construct ( Connection $connection )
create ( string $table, Closure $callback ) : Illuminate\Database\Schema\Blueprint Create a new table on the schema.
drop ( string $table ) : Illuminate\Database\Schema\Blueprint Drop a table from the schema.
dropIfExists ( string $table ) : Illuminate\Support\Fluent Indicate that the table should be dropped if it exists.
getColumnListing ( string $table ) : array Get the column listing for a given table.
hasTable ( string $table ) : boolean Determine if the given table exists.
table ( string $table, Closure $callback ) : Illuminate\Database\Schema\Blueprint Changes an existing table on the schema.

Méthodes protégées

Méthode Description
createBlueprint ( string $table, Closure $callback = null ) : Illuminate\Database\Schema\Blueprint Create a new command set with a Closure.

Method Details

__construct() public méthode

public __construct ( Connection $connection )
$connection Illuminate\Database\Connection

create() public méthode

Create a new table on the schema.
public create ( string $table, Closure $callback ) : Illuminate\Database\Schema\Blueprint
$table string
$callback Closure
Résultat Illuminate\Database\Schema\Blueprint

createBlueprint() protected méthode

Create a new command set with a Closure.
protected createBlueprint ( string $table, Closure $callback = null ) : Illuminate\Database\Schema\Blueprint
$table string
$callback Closure
Résultat Illuminate\Database\Schema\Blueprint

drop() public méthode

Drop a table from the schema.
public drop ( string $table ) : Illuminate\Database\Schema\Blueprint
$table string
Résultat Illuminate\Database\Schema\Blueprint

dropIfExists() public méthode

Indicate that the table should be dropped if it exists.
public dropIfExists ( string $table ) : Illuminate\Support\Fluent
$table string
Résultat Illuminate\Support\Fluent

getColumnListing() public méthode

Get the column listing for a given table.
public getColumnListing ( string $table ) : array
$table string
Résultat array

hasTable() public méthode

Determine if the given table exists.
public hasTable ( string $table ) : boolean
$table string
Résultat boolean

table() public méthode

Changes an existing table on the schema.
public table ( string $table, Closure $callback ) : Illuminate\Database\Schema\Blueprint
$table string
$callback Closure
Résultat Illuminate\Database\Schema\Blueprint

Property Details

$comment public_oe property

public Comment,Yajra\Oci8\Schema $comment
Résultat Comment

$helper public_oe property

public OracleAutoIncrementHelper,Yajra\Oci8\Schema $helper
Résultat OracleAutoIncrementHelper