MySqlGrammar::compileDropIfExists()

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

MySqlGrammar::compileDropForeign()

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

MySqlGrammar::compileDropColumn()

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

MySqlGrammar::compileDrop()

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

MySqlGrammar::compileDisableForeignKeyConstraints()

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

MySqlGrammar::compileDelete()

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

MySqlGrammar::compileCreate()

string compileCreate(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a create table command. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value string

MySqlGrammar::compileColumnExists()

string compileColumnExists() Compile the query to determine the list of columns. Return Value string

MySqlGrammar::compileChange()

array compileChange(Blueprint $blueprint, Fluent $command, Connection $connection) Compile a change column command into a series of SQL statements. Parameters Blueprint $blueprint Fluent $command Connection $connection Return Value array Exceptions RuntimeException

MySqlGrammar::compileAdd()

string compileAdd(Blueprint $blueprint, Fluent $command) Compile an add column command. Parameters Blueprint $blueprint Fluent $command Return Value string