Blueprint::double()

Fluent double(string $column, int|null $total = null, int|null $places = null) Create a new double column on the table. Parameters string $column int|null $total int|null $places 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

Blueprint::dateTimeTz()

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

Blueprint::dateTime()

Fluent dateTime(string $column) Create a new date-time column on the table. Parameters string $column Return Value Fluent

Blueprint::date()

Fluent date(string $column) Create a new date column on the table. Parameters string $column Return Value Fluent

Blueprint::create()

Fluent create() Indicate that the table needs to be created. Return Value Fluent

Blueprint::char()

Fluent char(string $column, int $length = 255) Create a new char column on the table. Parameters string $column int $length Return Value Fluent

Blueprint::build()

void build(Connection $connection, Grammar $grammar) Execute the blueprint against the database. Parameters Connection $connection Grammar $grammar Return Value void

Blueprint::boolean()

Fluent boolean(string $column) Create a new boolean column on the table. Parameters string $column Return Value Fluent

Blueprint::binary()

Fluent binary(string $column) Create a new binary column on the table. Parameters string $column Return Value Fluent