12345678910111213141516171819 |
- <?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());
- }
- }
|