SQLiteGrammar
Extends
Properties
$modifiers string[]
The possible column modifiers.
$serials string[]
The columns available as serials.
Methods
compileTableExists ( ) : string
Compile the query to determine if a table exists.
compileColumnListing ( $table ) : string
Compile the query to determine the list of columns.
Parameters
- $table string
compileCreate ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a create table command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
addForeignKeys ( Blueprint $blueprint ) : string|null
Get the foreign key syntax for a table creation statement.
Parameters
- $blueprint Blueprint
getForeignKey ( $foreign ) : string
Get the SQL for the foreign key.
Parameters
- $foreign Illuminate\...\Fluent
addPrimaryKeys ( Blueprint $blueprint ) : string|null
Get the primary key syntax for a table creation statement.
Parameters
- $blueprint Blueprint
compileAdd ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : array
Compile alter table commands for adding columns.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileRenameColumn ( Blueprint $blueprint , Illuminate\...\Fluent $command , Connection $connection ) : array|string
Compile a rename column command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
- $connection Connection
compileUnique ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a unique key command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileIndex ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a plain index key command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileSpatialIndex ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : void
Compile a spatial index key command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileForeign ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string|null
Compile a foreign key command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileDrop ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a drop table command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileDropIfExists ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a drop table (if exists) command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileDropAllTables ( ) : string
Compile the SQL needed to drop all tables.
compileDropAllViews ( ) : string
Compile the SQL needed to drop all views.
compileGetAllTables ( ) : string
Compile the SQL needed to retrieve all table names.
compileGetAllViews ( ) : string
Compile the SQL needed to retrieve all view names.
compileRebuild ( ) : string
Compile the SQL needed to rebuild the database.
compileDropColumn ( Blueprint $blueprint , Illuminate\...\Fluent $command , Connection $connection ) : array
Compile a drop column command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
- $connection Connection
compileDropUnique ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a drop unique key command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileDropIndex ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a drop index command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileDropSpatialIndex ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : void
Compile a drop spatial index command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileRename ( Blueprint $blueprint , Illuminate\...\Fluent $command ) : string
Compile a rename table command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
compileRenameIndex ( Blueprint $blueprint , Illuminate\...\Fluent $command , Connection $connection ) : array
Compile a rename index command.
Parameters
- $blueprint Blueprint
- $command Illuminate\...\Fluent
- $connection Connection
compileEnableForeignKeyConstraints ( ) : string
Compile the command to enable foreign key constraints.
compileDisableForeignKeyConstraints ( ) : string
Compile the command to disable foreign key constraints.
compileEnableWriteableSchema ( ) : string
Compile the SQL needed to enable a writable schema.
compileDisableWriteableSchema ( ) : string
Compile the SQL needed to disable a writable schema.
typeChar ( Illuminate\...\Fluent $column ) : string
Create the column definition for a char type.
Parameters
- $column Illuminate\...\Fluent
typeString ( Illuminate\...\Fluent $column ) : string
Create the column definition for a string type.
Parameters
- $column Illuminate\...\Fluent
typeTinyText ( Illuminate\...\Fluent $column ) : string
Create the column definition for a tiny text type.
Parameters
- $column Illuminate\...\Fluent
typeText ( Illuminate\...\Fluent $column ) : string
Create the column definition for a text type.
Parameters
- $column Illuminate\...\Fluent
typeMediumText ( Illuminate\...\Fluent $column ) : string
Create the column definition for a medium text type.
Parameters
- $column Illuminate\...\Fluent
typeLongText ( Illuminate\...\Fluent $column ) : string
Create the column definition for a long text type.
Parameters
- $column Illuminate\...\Fluent
typeInteger ( Illuminate\...\Fluent $column ) : string
Create the column definition for an integer type.
Parameters
- $column Illuminate\...\Fluent
typeBigInteger ( Illuminate\...\Fluent $column ) : string
Create the column definition for a big integer type.
Parameters
- $column Illuminate\...\Fluent
typeMediumInteger ( Illuminate\...\Fluent $column ) : string
Create the column definition for a medium integer type.
Parameters
- $column Illuminate\...\Fluent
typeTinyInteger ( Illuminate\...\Fluent $column ) : string
Create the column definition for a tiny integer type.
Parameters
- $column Illuminate\...\Fluent
typeSmallInteger ( Illuminate\...\Fluent $column ) : string
Create the column definition for a small integer type.
Parameters
- $column Illuminate\...\Fluent
typeFloat ( Illuminate\...\Fluent $column ) : string
Create the column definition for a float type.
Parameters
- $column Illuminate\...\Fluent
typeDouble ( Illuminate\...\Fluent $column ) : string
Create the column definition for a double type.
Parameters
- $column Illuminate\...\Fluent
typeDecimal ( Illuminate\...\Fluent $column ) : string
Create the column definition for a decimal type.
Parameters
- $column Illuminate\...\Fluent
typeBoolean ( Illuminate\...\Fluent $column ) : string
Create the column definition for a boolean type.
Parameters
- $column Illuminate\...\Fluent
typeEnum ( Illuminate\...\Fluent $column ) : string
Create the column definition for an enumeration type.
Parameters
- $column Illuminate\...\Fluent
typeJson ( Illuminate\...\Fluent $column ) : string
Create the column definition for a json type.
Parameters
- $column Illuminate\...\Fluent
typeJsonb ( Illuminate\...\Fluent $column ) : string
Create the column definition for a jsonb type.
Parameters
- $column Illuminate\...\Fluent
typeDate ( Illuminate\...\Fluent $column ) : string
Create the column definition for a date type.
Parameters
- $column Illuminate\...\Fluent
typeDateTime ( Illuminate\...\Fluent $column ) : string
Create the column definition for a date-time type.
Parameters
- $column Illuminate\...\Fluent
typeDateTimeTz ( Illuminate\...\Fluent $column ) : string
Create the column definition for a date-time (with time zone) type.
Parameters
- $column Illuminate\...\Fluent
typeTime ( Illuminate\...\Fluent $column ) : string
Create the column definition for a time type.
Parameters
- $column Illuminate\...\Fluent
typeTimeTz ( Illuminate\...\Fluent $column ) : string
Create the column definition for a time (with time zone) type.
Parameters
- $column Illuminate\...\Fluent
typeTimestamp ( Illuminate\...\Fluent $column ) : string
Create the column definition for a timestamp type.
Parameters
- $column Illuminate\...\Fluent
typeTimestampTz ( Illuminate\...\Fluent $column ) : string
Create the column definition for a timestamp (with time zone) type.
Parameters
- $column Illuminate\...\Fluent
typeYear ( Illuminate\...\Fluent $column ) : string
Create the column definition for a year type.
Parameters
- $column Illuminate\...\Fluent
typeBinary ( Illuminate\...\Fluent $column ) : string
Create the column definition for a binary type.
Parameters
- $column Illuminate\...\Fluent
typeUuid ( Illuminate\...\Fluent $column ) : string
Create the column definition for a uuid type.
Parameters
- $column Illuminate\...\Fluent
typeIpAddress ( Illuminate\...\Fluent $column ) : string
Create the column definition for an IP address type.
Parameters
- $column Illuminate\...\Fluent
typeMacAddress ( Illuminate\...\Fluent $column ) : string
Create the column definition for a MAC address type.
Parameters
- $column Illuminate\...\Fluent
typeGeometry ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial Geometry type.
Parameters
- $column Illuminate\...\Fluent
typePoint ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial Point type.
Parameters
- $column Illuminate\...\Fluent
typeLineString ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial LineString type.
Parameters
- $column Illuminate\...\Fluent
typePolygon ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial Polygon type.
Parameters
- $column Illuminate\...\Fluent
typeGeometryCollection ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial GeometryCollection type.
Parameters
- $column Illuminate\...\Fluent
typeMultiPoint ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial MultiPoint type.
Parameters
- $column Illuminate\...\Fluent
typeMultiLineString ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial MultiLineString type.
Parameters
- $column Illuminate\...\Fluent
typeMultiPolygon ( Illuminate\...\Fluent $column ) : string
Create the column definition for a spatial MultiPolygon type.
Parameters
- $column Illuminate\...\Fluent
typeComputed ( Illuminate\...\Fluent $column ) : void
Create the column definition for a generated, computed column type.
Parameters
- $column Illuminate\...\Fluent
modifyVirtualAs ( Blueprint $blueprint , Illuminate\...\Fluent $column ) : string|null
Get the SQL for a generated virtual column modifier.
Parameters
- $blueprint Blueprint
- $column Illuminate\...\Fluent
modifyStoredAs ( Blueprint $blueprint , Illuminate\...\Fluent $column ) : string|null
Get the SQL for a generated stored column modifier.
Parameters
- $blueprint Blueprint
- $column Illuminate\...\Fluent
modifyNullable ( Blueprint $blueprint , Illuminate\...\Fluent $column ) : string|null
Get the SQL for a nullable column modifier.
Parameters
- $blueprint Blueprint
- $column Illuminate\...\Fluent
modifyDefault ( Blueprint $blueprint , Illuminate\...\Fluent $column ) : string|null
Get the SQL for a default column modifier.
Parameters
- $blueprint Blueprint
- $column Illuminate\...\Fluent
modifyIncrement ( Blueprint $blueprint , Illuminate\...\Fluent $column ) : string|null
Get the SQL for an auto-increment column modifier.
Parameters
- $blueprint Blueprint
- $column Illuminate\...\Fluent
wrapJsonSelector ( $value ) : string
Wrap the given JSON selector.
Parameters
- $value string