SQLiteGrammar::compileForeign()

string compileForeign(Blueprint $blueprint, Fluent $command) Compile a foreign key command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileExists()

string compileExists(Builder $query) Compile an exists statement into SQL. Parameters Builder $query Return Value string

SQLiteGrammar::compileEnableForeignKeyConstraints()

string compileEnableForeignKeyConstraints() Compile the command to enable foreign key constraints. Return Value string

SQLiteGrammar::compileDropUnique()

string compileDropUnique(Blueprint $blueprint, Fluent $command) Compile a drop unique key command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileDropIndex()

string compileDropIndex(Blueprint $blueprint, Fluent $command) Compile a drop index command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileDropIfExists()

string compileDropIfExists(Blueprint $blueprint, Fluent $command) Compile a drop table (if exists) command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileDropColumn()

array compileDropColumn(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a drop column command. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value array

SQLiteGrammar::compileDrop()

string compileDrop(Blueprint $blueprint, Fluent $command) Compile a drop table command. Parameters Blueprint $blueprint Fluent $command Return Value string

SQLiteGrammar::compileDisableForeignKeyConstraints()

string compileDisableForeignKeyConstraints() Compile the command to disable foreign key constraints. Return Value string

SQLiteGrammar::compileDelete()

string compileDelete(Builder $query) Compile a delete statement into SQL. Parameters Builder $query Return Value string