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
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
Fluent dateTimeTz(string $column) Create a new date-time column (with time zone) on the table. Parameters string $column Return Value Fluent
Fluent dateTime(string $column) Create a new date-time column on the table. Parameters string $column Return Value Fluent
Fluent date(string $column) Create a new date column on the table. Parameters string $column Return Value Fluent
Fluent create() Indicate that the table needs to be created. Return Value Fluent
Fluent char(string $column, int $length = 255) Create a new char column on the table. Parameters string $column int $length Return Value Fluent
void build(Connection $connection, Grammar $grammar) Execute the blueprint against the database. Parameters Connection $connection Grammar $grammar Return Value void
Fluent boolean(string $column) Create a new boolean column on the table. Parameters string $column Return Value Fluent
Fluent binary(string $column) Create a new binary column on the table. Parameters string $column Return Value Fluent
Page 922 of 996