PHP 클래스 Yajra\Oci8\Schema\OracleBuilder

상속: extends Illuminate\Database\Schema\Builder
파일 보기 프로젝트 열기: yajra/laravel-oci8

공개 프로퍼티들

프로퍼티 타입 설명
$comment Comment
$helper OracleAutoIncrementHelper

공개 메소드들

메소드 설명
__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.

보호된 메소드들

메소드 설명
createBlueprint ( string $table, Closure $callback = null ) : Illuminate\Database\Schema\Blueprint Create a new command set with a Closure.

메소드 상세

__construct() 공개 메소드

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

create() 공개 메소드

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

createBlueprint() 보호된 메소드

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

drop() 공개 메소드

Drop a table from the schema.
public drop ( string $table ) : Illuminate\Database\Schema\Blueprint
$table string
리턴 Illuminate\Database\Schema\Blueprint

dropIfExists() 공개 메소드

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

getColumnListing() 공개 메소드

Get the column listing for a given table.
public getColumnListing ( string $table ) : array
$table string
리턴 array

hasTable() 공개 메소드

Determine if the given table exists.
public hasTable ( string $table ) : boolean
$table string
리턴 boolean

table() 공개 메소드

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

프로퍼티 상세

$comment 공개적으로 프로퍼티

public Comment,Yajra\Oci8\Schema $comment
리턴 Comment

$helper 공개적으로 프로퍼티

public OracleAutoIncrementHelper,Yajra\Oci8\Schema $helper
리턴 OracleAutoIncrementHelper