当前位置: 首页>>代码示例>>PHP>>正文


PHP Blueprint::addColumn方法代码示例

本文整理汇总了PHP中Illuminate\Database\Schema\Blueprint::addColumn方法的典型用法代码示例。如果您正苦于以下问题:PHP Blueprint::addColumn方法的具体用法?PHP Blueprint::addColumn怎么用?PHP Blueprint::addColumn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Database\Schema\Blueprint的用法示例。


在下文中一共展示了Blueprint::addColumn方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: addColumn

 /**
  * Add column only if there isn't one.
  * So it will not throw if there already exists.
  */
 public function addColumn($type, $column, array $parameters = array())
 {
     // check against existing
     if (!$this->builder->hasColumn($this->table, $column)) {
         return parent::addColumn($type, $column, $parameters);
     }
     // else probably compare and do some alteration
 }
开发者ID:offworks,项目名称:laraquent,代码行数:12,代码来源:Blueprint.php

示例2: addColumn

 /**
  * Do not allow creating of fields like _id, _score, _version
  */
 protected function addColumn($type, $name, array $parameters = [])
 {
     if (in_array($name, ['_id', '_score', '_version'])) {
         throw new NotImplementedException("Naming column as '{$name}' is not supported.");
     }
     return parent::addColumn($type, $name, $parameters);
 }
开发者ID:ChaosPower,项目名称:laravel-crate.io,代码行数:10,代码来源:Blueprint.php

示例3: addColumn

 public function addColumn($type, $name, array $parameters = [])
 {
     return parent::addColumn($type, $name, $parameters);
 }
开发者ID:jvelo,项目名称:datoum,代码行数:4,代码来源:DataTest.php

示例4: addI18NColumn

 /**
  * @param string $type
  * @param string $name
  * @param array  $parameters
  *
  * @return Fluent
  */
 public function addI18NColumn($type, $name, array $parameters = [])
 {
     $this->i18n_columns[] = $column = parent::addColumn($type, $name, $parameters);
     return $column;
 }
开发者ID:tuanlq11,项目名称:dbi18n,代码行数:12,代码来源:I18NBlueprint.php


注:本文中的Illuminate\Database\Schema\Blueprint::addColumn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。