Methods |
public
|
compileCreateDatabase(string $name): string
Compile a create database command.
Compile a create database command.
|
#
|
public
|
compileDropDatabaseIfExists(string $name): string
Compile a drop database if exists command.
Compile a drop database if exists command.
|
#
|
public
|
compileSchemas(): string
Compile the query to determine the schemas.
Compile the query to determine the schemas.
|
#
|
public
|
compileTableExists(string|null $schema, string $table): string|null
Compile the query to determine if the given table exists.
Compile the query to determine if the given table exists.
|
#
|
public
|
compileTables(string|string[]|null $schema): string
Compile the query to determine the tables.
Compile the query to determine the tables.
Throws
|
#
|
public
|
compileViews(string|string[]|null $schema): string
Compile the query to determine the views.
Compile the query to determine the views.
Throws
|
#
|
public
|
compileTypes(string|string[]|null $schema): string
Compile the query to determine the user-defined types.
Compile the query to determine the user-defined types.
Throws
|
#
|
public
|
compileColumns(string|null $schema, string $table): string
Compile the query to determine the columns.
Compile the query to determine the columns.
Throws
|
#
|
public
|
compileIndexes(string|null $schema, string $table): string
Compile the query to determine the indexes.
Compile the query to determine the indexes.
Throws
|
#
|
public
|
compileForeignKeys(string|null $schema, string $table): string
Compile the query to determine the foreign keys.
Compile the query to determine the foreign keys.
Throws
|
#
|
public
|
compileRenameColumn(Blueprint $blueprint, Fluent $command): array|string
Compile a rename column command.
Compile a rename column command.
|
#
|
public
|
compileChange(Blueprint $blueprint, Fluent $command): array|string
Compile a change column command into a series of SQL statements.
Compile a change column command into a series of SQL statements.
Throws
|
#
|
public
|
compileFulltext(Blueprint $blueprint, Fluent $command): string
Compile a fulltext index key command.
Compile a fulltext index key command.
Throws
|
#
|
public
|
compileDropFullText(Blueprint $blueprint, Fluent $command): string
Compile a drop fulltext index command.
Compile a drop fulltext index command.
Throws
|
#
|
public
|
compileForeign(Blueprint $blueprint, Fluent $command): string
Compile a foreign key command.
Compile a foreign key command.
|
#
|
public
|
compileDropForeign(Blueprint $blueprint, Fluent $command): string
Compile a drop foreign key command.
Compile a drop foreign key command.
|
#
|
protected
|
getColumns(Blueprint $blueprint): array
Compile the blueprint's added column definitions.
Compile the blueprint's added column definitions.
|
#
|
protected
|
getColumn(Blueprint $blueprint, ColumnDefinition $column): string
Compile the column definition.
Compile the column definition.
|
#
|
protected
|
getType(Fluent $column): string
Get the SQL for the column data type.
Get the SQL for the column data type.
|
#
|
protected
|
typeComputed(Fluent $column): void
Create the column definition for a generated, computed column type.
Create the column definition for a generated, computed column type.
Throws
|
#
|
protected
|
typeVector(Fluent $column): string
Create the column definition for a vector type.
Create the column definition for a vector type.
Throws
|
#
|
protected
|
typeRaw(Fluent $column): string
Create the column definition for a raw column type.
Create the column definition for a raw column type.
|
#
|
protected
|
addModifiers(string $sql, Blueprint $blueprint, Fluent $column): string
Add the column modifiers to the definition.
Add the column modifiers to the definition.
|
#
|
protected
|
getCommandByName(Blueprint $blueprint, string $name): Fluent|null
Get the command with a given name if it exists on the blueprint.
Get the command with a given name if it exists on the blueprint.
|
#
|
protected
|
getCommandsByName(Blueprint $blueprint, string $name): array
Get all of the commands with a given name.
Get all of the commands with a given name.
|
#
|
protected
|
hasCommand(Blueprint $blueprint, $name)
|
#
|
public
|
prefixArray(string $prefix, array $values): array
Add a prefix to an array of values.
Add a prefix to an array of values.
|
#
|
public
|
wrapTable(mixed $table, string|null $prefix = null): string
Wrap a table in keyword identifiers.
Wrap a table in keyword identifiers.
Overrides
|
#
|
public
|
wrap(Fluent|Expression|string $value): string
Wrap a value in keyword identifiers.
Wrap a value in keyword identifiers.
Overrides
|
#
|
protected
|
getDefaultValue(mixed $value): string
Format a value so that it can be used in "default" clauses.
Format a value so that it can be used in "default" clauses.
|
#
|
public
|
getFluentCommands(): array
Get the fluent commands for the grammar.
Get the fluent commands for the grammar.
|
#
|
public
|
supportsSchemaTransactions(): bool
Check if this Grammar supports schema changes wrapped in a transaction.
Check if this Grammar supports schema changes wrapped in a transaction.
|
#
|