BootProviders::bootstrap()

void bootstrap(Application $app) Bootstrap the given application. Parameters Application $app Return Value void

Blueprint::unsignedSmallInteger()

Fluent unsignedSmallInteger(string $column, bool $autoIncrement = false) Create a new unsigned small integer (2-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

Blueprint::unsignedTinyInteger()

Fluent unsignedTinyInteger(string $column, bool $autoIncrement = false) Create a new unsigned tiny integer (1-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

Blueprint::unique()

Fluent unique(string|array $columns, string $name = null, string|null $algorithm = null) Specify a unique index for the table. Parameters string|array $columns string $name string|null $algorithm Return Value Fluent

Blueprint::unsignedInteger()

Fluent unsignedInteger(string $column, bool $autoIncrement = false) Create a new unsigned integer (4-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

Blueprint::unsignedBigInteger()

Fluent unsignedBigInteger(string $column, bool $autoIncrement = false) Create a new unsigned big integer (8-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

Blueprint::unsignedMediumInteger()

Fluent unsignedMediumInteger(string $column, bool $autoIncrement = false) Create a new unsigned medium integer (3-byte) column on the table. Parameters string $column bool $autoIncrement Return Value Fluent

Blueprint::tinyInteger()

Fluent tinyInteger(string $column, bool $autoIncrement = false, bool $unsigned = false) Create a new tiny integer (1-byte) column on the table. Parameters string $column bool $autoIncrement bool $unsigned Return Value Fluent

Blueprint::toSql()

array toSql(Connection $connection, Grammar $grammar) Get the raw SQL statements for the blueprint. Parameters Connection $connection Grammar $grammar Return Value array

Blueprint::timeTz()

Fluent timeTz(string $column) Create a new time column (with time zone) on the table. Parameters string $column Return Value Fluent