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


PHP Builder::drop方法代码示例

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


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

示例1: dropInstance

 /**
  * instance 내 모든 데이터 삭제
  *
  * @param string $instanceId instance identifier
  * @return void
  */
 public function dropInstance($instanceId)
 {
     if ($this->isEnable($instanceId) === true) {
         if ($this->schema->hasTable($this->getTable($instanceId)) === true) {
             $this->schema->drop($this->getTable($instanceId));
         }
     }
     $this->repo->dropInstance($instanceId);
 }
开发者ID:mint-soft-com,项目名称:xpressengine,代码行数:15,代码来源:DivisionDecorator.php

示例2: drop

 /**
  * Drop a table from the schema.
  *
  * @param string $table
  * @return \Illuminate\Database\Schema\Blueprint 
  * @static 
  */
 public static function drop($table)
 {
     return \Illuminate\Database\Schema\Builder::drop($table);
 }
开发者ID:poovarasanvasudevan,项目名称:voice-app,代码行数:11,代码来源:_ide_helper.php

示例3: down

 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     $this->schema->drop('extras');
 }
开发者ID:SkysoulDesign,项目名称:mirage.dev,代码行数:9,代码来源:2016_03_01_020353_create_extras_table.php

示例4: down

 /**
  * Reverse the migrations.
  */
 public function down()
 {
     $this->schema->drop('password_resets');
 }
开发者ID:codecasts,项目名称:laravel,代码行数:7,代码来源:CreatePasswordResetsTable.php

示例5: drop

 /**
  * Drop a table from the schema.
  *
  * @param  string $table
  *
  * @return \Illuminate\Database\Schema\Blueprint
  */
 public static function drop($table)
 {
     static::$instance = static::$instance ?: new static();
     return static::$schema->drop($table);
 }
开发者ID:formula9,项目名称:framework,代码行数:12,代码来源:Schema.php

示例6: rollbackTestMigrations

 /**
  * Rollback migrations for tables only used for testing purposes.
  *
  * @return void
  */
 protected function rollbackTestMigrations()
 {
     (new \CreateAdjustmentsTable())->down();
     $this->schema->drop('fruits');
 }
开发者ID:mangopixel,项目名称:laravel-adjuster,代码行数:10,代码来源:TestCase.php

示例7: tearDown

 public function tearDown()
 {
     $this->schemaBuilder->drop($this->tableName);
 }
开发者ID:nstapelbroek,项目名称:culpa-laravel-5,代码行数:4,代码来源:SchemaBlueprintTest.php

示例8: rollbackTestMigrations

 /**
  * Rollback migrations for tables only used for testing purposes.
  *
  * @return void
  */
 protected function rollbackTestMigrations()
 {
     $this->schema->drop('fruits');
 }
开发者ID:flugger,项目名称:laravel-responder,代码行数:9,代码来源:TestCase.php

示例9: down

 public function down()
 {
     $this->schema->drop($this->table);
 }
开发者ID:fluxbb,项目名称:core,代码行数:4,代码来源:Migration.php

示例10: drop

 /**
  * Drop a table from the schema.
  *
  * @param  string $table
  * @return \Illuminate\Database\Schema\Blueprint
  */
 public function drop($table)
 {
     $this->helper->dropAutoIncrementObjects($table);
     parent::drop($table);
 }
开发者ID:rafael-renan-pacheco,项目名称:laravel-oci8,代码行数:11,代码来源:OracleBuilder.php


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