當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。