Blueprint::dropUnique()

Fluent dropUnique(string|array $index) Indicate that the given unique key should be dropped. Parameters string|array $index Return Value Fluent

Blueprint::dropSoftDeletesTz()

void dropSoftDeletesTz() Indicate that the soft delete column should be dropped. Return Value void

Blueprint::dropPrimary()

Fluent dropPrimary(string|array $index = null) Indicate that the given primary key should be dropped. Parameters string|array $index Return Value Fluent

Blueprint::dropSoftDeletes()

void dropSoftDeletes() Indicate that the soft delete column should be dropped. Return Value void

Blueprint::dropRememberToken()

void dropRememberToken() Indicate that the remember token column should be dropped. Return Value void

Blueprint::dropForeign()

Fluent dropForeign(string|array $index) Indicate that the given foreign key should be dropped. Parameters string|array $index Return Value Fluent

Blueprint::dropColumn()

Fluent dropColumn(array|mixed $columns) Indicate that the given columns should be dropped. Parameters array|mixed $columns Return Value Fluent

Blueprint::dropIfExists()

Fluent dropIfExists() Indicate that the table should be dropped if it exists. Return Value Fluent

Blueprint::dropIndex()

Fluent dropIndex(string|array $index) Indicate that the given index should be dropped. Parameters string|array $index Return Value Fluent

Blueprint::decimal()

Fluent decimal(string $column, int $total = 8, int $places = 2) Create a new decimal column on the table. Parameters string $column int $total int $places Return Value Fluent