관리-도구
편집 파일: SqlServerBuilder.php
<?php namespace Illuminate\Database\Schema; class SqlServerBuilder extends Builder { /** * Drop all tables from the database. * * @return void */ public function dropAllTables() { $this->connection->statement($this->grammar->compileDropAllForeignKeys()); $this->connection->statement($this->grammar->compileDropAllTables()); } }