本文整理汇总了PHP中Illuminate\Database\Schema\Blueprint::build方法的典型用法代码示例。如果您正苦于以下问题:PHP Blueprint::build方法的具体用法?PHP Blueprint::build怎么用?PHP Blueprint::build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Database\Schema\Blueprint
的用法示例。
在下文中一共展示了Blueprint::build方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: build
/**
* Execute the blueprint to build / modify the table.
*
* @param \Cooperl\Database\DB2\Schema\Blueprint $blueprint
* @return void
*/
protected function build(Blueprint $blueprint)
{
$schemaTable = explode(".", $blueprint->getTable());
if (count($schemaTable) > 1) {
$this->connection->setCurrentSchema($schemaTable[0]);
}
$blueprint->build($this->connection, $this->grammar);
$this->connection->resetCurrentSchema();
}
示例2: build
/**
* Execute the blueprint to build / modify the table.
*
* @param \Illuminate\Database\Schema\Blueprint $blueprint
* @return void
*/
protected function build(Blueprint $blueprint)
{
$blueprint->build($this->connection, $this->grammar);
}
示例3: build
/**
* Overrride build function
*
* @param Connection $connection
* @param Grammar $grammar
*/
public function build(Connection $connection, Grammar $grammar)
{
$command = $this->parseCommand($this->commands[0]->get('name'));
$schema = $connection->getSchemaBuilder();
if ($command === "drop") {
$schema->dropIfExists($this->getI18NTableName());
}
parent::build($connection, $grammar);
if ($command === "create") {
$primary = $this->i18n_primary;
$i18n_columns = $this->i18n_columns;
$table_name = $this->table;
$schema->create($this->getI18NTableName(), function (Blueprint $table) use($table_name, $primary, $i18n_columns) {
foreach ($primary as $name => $col) {
$table->columns[] = $col;
$table->foreign($col->get('name'))->references($col->get('name'))->on($table_name)->onDelete('cascade');
}
foreach ($i18n_columns as $col) {
$table->columns[] = $col;
}
$table->string($this->i18n_code_field, 10);
$table->primary(array_merge(array_keys($primary), [$this->i18n_code_field]));
});
}
}