PHP Class Yajra\Oci8\Schema\OracleBlueprint

Inheritance: extends Illuminate\Database\Schema\Blueprint
Afficher le fichier Open project: yajra/laravel-oci8 Class Usage Examples

Méthodes publiques

Свойство Type Description
$comment string Table comment.
$commentColumns array Column comments

Protected Properties

Свойство Type Description
$prefix string Database prefix variable.

Méthodes publiques

Méthode Description
nvarchar2 ( string $column, integer $length = 255 ) : Illuminate\Support\Fluent Create a new nvarchar2 column on the table.
setTablePrefix ( string $prefix = '' ) Set table prefix settings.

Méthodes protégées

Méthode Description
createIndexName ( string $type, array $columns ) : string Create a default index name for the table.

Method Details

createIndexName() protected méthode

Create a default index name for the table.
protected createIndexName ( string $type, array $columns ) : string
$type string
$columns array
Résultat string

nvarchar2() public méthode

Create a new nvarchar2 column on the table.
public nvarchar2 ( string $column, integer $length = 255 ) : Illuminate\Support\Fluent
$column string
$length integer
Résultat Illuminate\Support\Fluent

setTablePrefix() public méthode

Set table prefix settings.
public setTablePrefix ( string $prefix = '' )
$prefix string

Property Details

$comment public_oe property

Table comment.
public string $comment
Résultat string

$commentColumns public_oe property

Column comments
public array $commentColumns
Résultat array

$prefix protected_oe property

Database prefix variable.
protected string $prefix
Résultat string