29 lines
593 B
PHP
29 lines
593 B
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());
|
|
}
|
|
|
|
/**
|
|
* Drop all views from the database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function dropAllViews()
|
|
{
|
|
$this->connection->statement($this->grammar->compileDropAllViews());
|
|
}
|
|
}
|