Overview
QB ships with a schema builder to help you build your database objects. This provides a few benefits:
The syntax is expressive and fluent, making it easy to understand what is being executed
The syntax is database-agnostic. Specific quirks are isolated in a Grammar file, making it easy to migrate between engines.
You start with a SchemaBuilder
object. The SchemaBuilder
takes the same Grammar that a QueryBuilder
takes.
Note: the
SchemaBuilder
is a transient, and a new one should be created for each operation.
The SchemaBuilder
has four main methods to start your database object creation:
Create a new table in the database.
Argument | Type | Required | Default | Description |
table | string |
| The name of the table to create. | |
callback | function |
| A callback function used to define the table body. It is passed a | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
The majority of the work comes from calling methods on the Blueprint
object. A Blueprint
defines the columns and indexes for your tables.
Example:
SchemaBuilder
SQL (MySQL)
Alter an existing table in the database.
Argument | Type | Required | Default | Description |
table | string |
| The name of the table to alter. | |
callback | function |
| A callback function used to define the changes to the table. It is passed a | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
In addition to using the columns and indexes off of the passed-in Blueprint
object, the Blueprint
contains helpers such as addConstraint
, removeConstraint
, addColumn
, renameColumn
, and dropColumn
to assist in altering existing tables.
Example:
SchemaBuilder
SQL (MySQL)
Drop a table from the database.
Argument | Type | Required | Default | Description |
table | string |
| The name of the table to drop. | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
Example:
SchemaBuilder
SQL (MySQL)
Additionally, there are a few utility methods defined on SchemaBuilder
as well:
SchemaBuilder
as well:rename
rename
Rename a table from an old name to a new name
Argument | Type | Required | Default | Description |
from | string |
| The old table name. | |
to | string |
| The new table name. | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
Example:
SchemaBuilder
SQL (MySQL)
hasTable
hasTable
Check if a table exists in the database.
Argument | Type | Required | Default | Description |
name | string |
| The name of the table to check. | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
Example:
SchemaBuilder
SQL (MySQL)
hasColumn
hasColumn
Check if a column exists in a table in the database.
Argument | Type | Required | Default | Description |
table | string |
| The name of the table to check for the column in. | |
column | string |
| The column to check for in the table. | |
options | struct |
|
| Options to pass to |
execute | boolean |
|
| Run the query immediately after building it. |
Example:
SchemaBuilder
SQL (MySQL)
Last updated